@@ -8,6 +8,11 @@ import {
88 CreateAlertManagerDefinitionCommandInput ,
99 CreateAlertManagerDefinitionCommandOutput ,
1010} from "./commands/CreateAlertManagerDefinitionCommand" ;
11+ import {
12+ CreateAnomalyDetectorCommand ,
13+ CreateAnomalyDetectorCommandInput ,
14+ CreateAnomalyDetectorCommandOutput ,
15+ } from "./commands/CreateAnomalyDetectorCommand" ;
1116import {
1217 CreateLoggingConfigurationCommand ,
1318 CreateLoggingConfigurationCommandInput ,
@@ -38,6 +43,11 @@ import {
3843 DeleteAlertManagerDefinitionCommandInput ,
3944 DeleteAlertManagerDefinitionCommandOutput ,
4045} from "./commands/DeleteAlertManagerDefinitionCommand" ;
46+ import {
47+ DeleteAnomalyDetectorCommand ,
48+ DeleteAnomalyDetectorCommandInput ,
49+ DeleteAnomalyDetectorCommandOutput ,
50+ } from "./commands/DeleteAnomalyDetectorCommand" ;
4151import {
4252 DeleteLoggingConfigurationCommand ,
4353 DeleteLoggingConfigurationCommandInput ,
@@ -78,6 +88,11 @@ import {
7888 DescribeAlertManagerDefinitionCommandInput ,
7989 DescribeAlertManagerDefinitionCommandOutput ,
8090} from "./commands/DescribeAlertManagerDefinitionCommand" ;
91+ import {
92+ DescribeAnomalyDetectorCommand ,
93+ DescribeAnomalyDetectorCommandInput ,
94+ DescribeAnomalyDetectorCommandOutput ,
95+ } from "./commands/DescribeAnomalyDetectorCommand" ;
8196import {
8297 DescribeLoggingConfigurationCommand ,
8398 DescribeLoggingConfigurationCommandInput ,
@@ -123,6 +138,11 @@ import {
123138 GetDefaultScraperConfigurationCommandInput ,
124139 GetDefaultScraperConfigurationCommandOutput ,
125140} from "./commands/GetDefaultScraperConfigurationCommand" ;
141+ import {
142+ ListAnomalyDetectorsCommand ,
143+ ListAnomalyDetectorsCommandInput ,
144+ ListAnomalyDetectorsCommandOutput ,
145+ } from "./commands/ListAnomalyDetectorsCommand" ;
126146import {
127147 ListRuleGroupsNamespacesCommand ,
128148 ListRuleGroupsNamespacesCommandInput ,
@@ -148,6 +168,11 @@ import {
148168 PutAlertManagerDefinitionCommandInput ,
149169 PutAlertManagerDefinitionCommandOutput ,
150170} from "./commands/PutAlertManagerDefinitionCommand" ;
171+ import {
172+ PutAnomalyDetectorCommand ,
173+ PutAnomalyDetectorCommandInput ,
174+ PutAnomalyDetectorCommandOutput ,
175+ } from "./commands/PutAnomalyDetectorCommand" ;
151176import {
152177 PutResourcePolicyCommand ,
153178 PutResourcePolicyCommandInput ,
@@ -197,12 +222,14 @@ import {
197222
198223const commands = {
199224 CreateAlertManagerDefinitionCommand,
225+ CreateAnomalyDetectorCommand,
200226 CreateLoggingConfigurationCommand,
201227 CreateQueryLoggingConfigurationCommand,
202228 CreateRuleGroupsNamespaceCommand,
203229 CreateScraperCommand,
204230 CreateWorkspaceCommand,
205231 DeleteAlertManagerDefinitionCommand,
232+ DeleteAnomalyDetectorCommand,
206233 DeleteLoggingConfigurationCommand,
207234 DeleteQueryLoggingConfigurationCommand,
208235 DeleteResourcePolicyCommand,
@@ -211,6 +238,7 @@ const commands = {
211238 DeleteScraperLoggingConfigurationCommand,
212239 DeleteWorkspaceCommand,
213240 DescribeAlertManagerDefinitionCommand,
241+ DescribeAnomalyDetectorCommand,
214242 DescribeLoggingConfigurationCommand,
215243 DescribeQueryLoggingConfigurationCommand,
216244 DescribeResourcePolicyCommand,
@@ -220,11 +248,13 @@ const commands = {
220248 DescribeWorkspaceCommand,
221249 DescribeWorkspaceConfigurationCommand,
222250 GetDefaultScraperConfigurationCommand,
251+ ListAnomalyDetectorsCommand,
223252 ListRuleGroupsNamespacesCommand,
224253 ListScrapersCommand,
225254 ListTagsForResourceCommand,
226255 ListWorkspacesCommand,
227256 PutAlertManagerDefinitionCommand,
257+ PutAnomalyDetectorCommand,
228258 PutResourcePolicyCommand,
229259 PutRuleGroupsNamespaceCommand,
230260 TagResourceCommand,
@@ -255,6 +285,23 @@ export interface Amp {
255285 cb : ( err : any , data ?: CreateAlertManagerDefinitionCommandOutput ) => void
256286 ) : void ;
257287
288+ /**
289+ * @see {@link CreateAnomalyDetectorCommand }
290+ */
291+ createAnomalyDetector (
292+ args : CreateAnomalyDetectorCommandInput ,
293+ options ?: __HttpHandlerOptions
294+ ) : Promise < CreateAnomalyDetectorCommandOutput > ;
295+ createAnomalyDetector (
296+ args : CreateAnomalyDetectorCommandInput ,
297+ cb : ( err : any , data ?: CreateAnomalyDetectorCommandOutput ) => void
298+ ) : void ;
299+ createAnomalyDetector (
300+ args : CreateAnomalyDetectorCommandInput ,
301+ options : __HttpHandlerOptions ,
302+ cb : ( err : any , data ?: CreateAnomalyDetectorCommandOutput ) => void
303+ ) : void ;
304+
258305 /**
259306 * @see {@link CreateLoggingConfigurationCommand }
260307 */
@@ -349,6 +396,23 @@ export interface Amp {
349396 cb : ( err : any , data ?: DeleteAlertManagerDefinitionCommandOutput ) => void
350397 ) : void ;
351398
399+ /**
400+ * @see {@link DeleteAnomalyDetectorCommand }
401+ */
402+ deleteAnomalyDetector (
403+ args : DeleteAnomalyDetectorCommandInput ,
404+ options ?: __HttpHandlerOptions
405+ ) : Promise < DeleteAnomalyDetectorCommandOutput > ;
406+ deleteAnomalyDetector (
407+ args : DeleteAnomalyDetectorCommandInput ,
408+ cb : ( err : any , data ?: DeleteAnomalyDetectorCommandOutput ) => void
409+ ) : void ;
410+ deleteAnomalyDetector (
411+ args : DeleteAnomalyDetectorCommandInput ,
412+ options : __HttpHandlerOptions ,
413+ cb : ( err : any , data ?: DeleteAnomalyDetectorCommandOutput ) => void
414+ ) : void ;
415+
352416 /**
353417 * @see {@link DeleteLoggingConfigurationCommand }
354418 */
@@ -476,6 +540,23 @@ export interface Amp {
476540 cb : ( err : any , data ?: DescribeAlertManagerDefinitionCommandOutput ) => void
477541 ) : void ;
478542
543+ /**
544+ * @see {@link DescribeAnomalyDetectorCommand }
545+ */
546+ describeAnomalyDetector (
547+ args : DescribeAnomalyDetectorCommandInput ,
548+ options ?: __HttpHandlerOptions
549+ ) : Promise < DescribeAnomalyDetectorCommandOutput > ;
550+ describeAnomalyDetector (
551+ args : DescribeAnomalyDetectorCommandInput ,
552+ cb : ( err : any , data ?: DescribeAnomalyDetectorCommandOutput ) => void
553+ ) : void ;
554+ describeAnomalyDetector (
555+ args : DescribeAnomalyDetectorCommandInput ,
556+ options : __HttpHandlerOptions ,
557+ cb : ( err : any , data ?: DescribeAnomalyDetectorCommandOutput ) => void
558+ ) : void ;
559+
479560 /**
480561 * @see {@link DescribeLoggingConfigurationCommand }
481562 */
@@ -627,6 +708,23 @@ export interface Amp {
627708 cb : ( err : any , data ?: GetDefaultScraperConfigurationCommandOutput ) => void
628709 ) : void ;
629710
711+ /**
712+ * @see {@link ListAnomalyDetectorsCommand }
713+ */
714+ listAnomalyDetectors (
715+ args : ListAnomalyDetectorsCommandInput ,
716+ options ?: __HttpHandlerOptions
717+ ) : Promise < ListAnomalyDetectorsCommandOutput > ;
718+ listAnomalyDetectors (
719+ args : ListAnomalyDetectorsCommandInput ,
720+ cb : ( err : any , data ?: ListAnomalyDetectorsCommandOutput ) => void
721+ ) : void ;
722+ listAnomalyDetectors (
723+ args : ListAnomalyDetectorsCommandInput ,
724+ options : __HttpHandlerOptions ,
725+ cb : ( err : any , data ?: ListAnomalyDetectorsCommandOutput ) => void
726+ ) : void ;
727+
630728 /**
631729 * @see {@link ListRuleGroupsNamespacesCommand }
632730 */
@@ -705,6 +803,23 @@ export interface Amp {
705803 cb : ( err : any , data ?: PutAlertManagerDefinitionCommandOutput ) => void
706804 ) : void ;
707805
806+ /**
807+ * @see {@link PutAnomalyDetectorCommand }
808+ */
809+ putAnomalyDetector (
810+ args : PutAnomalyDetectorCommandInput ,
811+ options ?: __HttpHandlerOptions
812+ ) : Promise < PutAnomalyDetectorCommandOutput > ;
813+ putAnomalyDetector (
814+ args : PutAnomalyDetectorCommandInput ,
815+ cb : ( err : any , data ?: PutAnomalyDetectorCommandOutput ) => void
816+ ) : void ;
817+ putAnomalyDetector (
818+ args : PutAnomalyDetectorCommandInput ,
819+ options : __HttpHandlerOptions ,
820+ cb : ( err : any , data ?: PutAnomalyDetectorCommandOutput ) => void
821+ ) : void ;
822+
708823 /**
709824 * @see {@link PutResourcePolicyCommand }
710825 */
0 commit comments