@aws-sdk/client-amp 3.920.0 → 3.922.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +452 -0
- package/dist-es/Amp.js +10 -0
- package/dist-es/commands/CreateAnomalyDetectorCommand.js +22 -0
- package/dist-es/commands/DeleteAnomalyDetectorCommand.js +22 -0
- package/dist-es/commands/DescribeAnomalyDetectorCommand.js +22 -0
- package/dist-es/commands/ListAnomalyDetectorsCommand.js +22 -0
- package/dist-es/commands/PutAnomalyDetectorCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +37 -0
- package/dist-es/pagination/ListAnomalyDetectorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +233 -2
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForAnomalyDetectorActive.js +49 -0
- package/dist-es/waiters/waitForAnomalyDetectorDeleted.js +34 -0
- package/dist-types/Amp.d.ts +35 -0
- package/dist-types/AmpClient.d.ts +7 -2
- package/dist-types/commands/CreateAnomalyDetectorCommand.d.ts +128 -0
- package/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +92 -0
- package/dist-types/commands/DescribeAnomalyDetectorCommand.d.ts +126 -0
- package/dist-types/commands/ListAnomalyDetectorsCommand.d.ts +108 -0
- package/dist-types/commands/PutAnomalyDetectorCommand.d.ts +125 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +500 -0
- package/dist-types/pagination/ListAnomalyDetectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Amp.d.ts +85 -0
- package/dist-types/ts3.4/AmpClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateAnomalyDetectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DescribeAnomalyDetectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAnomalyDetectorsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +175 -0
- package/dist-types/ts3.4/pagination/ListAnomalyDetectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForAnomalyDetectorActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForAnomalyDetectorDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForAnomalyDetectorActive.d.ts +14 -0
- package/dist-types/waiters/waitForAnomalyDetectorDeleted.d.ts +14 -0
- package/package.json +34 -34
|
@@ -4,6 +4,10 @@ import {
|
|
|
4
4
|
CreateAlertManagerDefinitionCommandInput,
|
|
5
5
|
CreateAlertManagerDefinitionCommandOutput,
|
|
6
6
|
} from "./commands/CreateAlertManagerDefinitionCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateAnomalyDetectorCommandInput,
|
|
9
|
+
CreateAnomalyDetectorCommandOutput,
|
|
10
|
+
} from "./commands/CreateAnomalyDetectorCommand";
|
|
7
11
|
import {
|
|
8
12
|
CreateLoggingConfigurationCommandInput,
|
|
9
13
|
CreateLoggingConfigurationCommandOutput,
|
|
@@ -28,6 +32,10 @@ import {
|
|
|
28
32
|
DeleteAlertManagerDefinitionCommandInput,
|
|
29
33
|
DeleteAlertManagerDefinitionCommandOutput,
|
|
30
34
|
} from "./commands/DeleteAlertManagerDefinitionCommand";
|
|
35
|
+
import {
|
|
36
|
+
DeleteAnomalyDetectorCommandInput,
|
|
37
|
+
DeleteAnomalyDetectorCommandOutput,
|
|
38
|
+
} from "./commands/DeleteAnomalyDetectorCommand";
|
|
31
39
|
import {
|
|
32
40
|
DeleteLoggingConfigurationCommandInput,
|
|
33
41
|
DeleteLoggingConfigurationCommandOutput,
|
|
@@ -60,6 +68,10 @@ import {
|
|
|
60
68
|
DescribeAlertManagerDefinitionCommandInput,
|
|
61
69
|
DescribeAlertManagerDefinitionCommandOutput,
|
|
62
70
|
} from "./commands/DescribeAlertManagerDefinitionCommand";
|
|
71
|
+
import {
|
|
72
|
+
DescribeAnomalyDetectorCommandInput,
|
|
73
|
+
DescribeAnomalyDetectorCommandOutput,
|
|
74
|
+
} from "./commands/DescribeAnomalyDetectorCommand";
|
|
63
75
|
import {
|
|
64
76
|
DescribeLoggingConfigurationCommandInput,
|
|
65
77
|
DescribeLoggingConfigurationCommandOutput,
|
|
@@ -96,6 +108,10 @@ import {
|
|
|
96
108
|
GetDefaultScraperConfigurationCommandInput,
|
|
97
109
|
GetDefaultScraperConfigurationCommandOutput,
|
|
98
110
|
} from "./commands/GetDefaultScraperConfigurationCommand";
|
|
111
|
+
import {
|
|
112
|
+
ListAnomalyDetectorsCommandInput,
|
|
113
|
+
ListAnomalyDetectorsCommandOutput,
|
|
114
|
+
} from "./commands/ListAnomalyDetectorsCommand";
|
|
99
115
|
import {
|
|
100
116
|
ListRuleGroupsNamespacesCommandInput,
|
|
101
117
|
ListRuleGroupsNamespacesCommandOutput,
|
|
@@ -116,6 +132,10 @@ import {
|
|
|
116
132
|
PutAlertManagerDefinitionCommandInput,
|
|
117
133
|
PutAlertManagerDefinitionCommandOutput,
|
|
118
134
|
} from "./commands/PutAlertManagerDefinitionCommand";
|
|
135
|
+
import {
|
|
136
|
+
PutAnomalyDetectorCommandInput,
|
|
137
|
+
PutAnomalyDetectorCommandOutput,
|
|
138
|
+
} from "./commands/PutAnomalyDetectorCommand";
|
|
119
139
|
import {
|
|
120
140
|
PutResourcePolicyCommandInput,
|
|
121
141
|
PutResourcePolicyCommandOutput,
|
|
@@ -170,6 +190,19 @@ export interface Amp {
|
|
|
170
190
|
options: __HttpHandlerOptions,
|
|
171
191
|
cb: (err: any, data?: CreateAlertManagerDefinitionCommandOutput) => void
|
|
172
192
|
): void;
|
|
193
|
+
createAnomalyDetector(
|
|
194
|
+
args: CreateAnomalyDetectorCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<CreateAnomalyDetectorCommandOutput>;
|
|
197
|
+
createAnomalyDetector(
|
|
198
|
+
args: CreateAnomalyDetectorCommandInput,
|
|
199
|
+
cb: (err: any, data?: CreateAnomalyDetectorCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
createAnomalyDetector(
|
|
202
|
+
args: CreateAnomalyDetectorCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: CreateAnomalyDetectorCommandOutput) => void
|
|
205
|
+
): void;
|
|
173
206
|
createLoggingConfiguration(
|
|
174
207
|
args: CreateLoggingConfigurationCommandInput,
|
|
175
208
|
options?: __HttpHandlerOptions
|
|
@@ -249,6 +282,19 @@ export interface Amp {
|
|
|
249
282
|
options: __HttpHandlerOptions,
|
|
250
283
|
cb: (err: any, data?: DeleteAlertManagerDefinitionCommandOutput) => void
|
|
251
284
|
): void;
|
|
285
|
+
deleteAnomalyDetector(
|
|
286
|
+
args: DeleteAnomalyDetectorCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<DeleteAnomalyDetectorCommandOutput>;
|
|
289
|
+
deleteAnomalyDetector(
|
|
290
|
+
args: DeleteAnomalyDetectorCommandInput,
|
|
291
|
+
cb: (err: any, data?: DeleteAnomalyDetectorCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
deleteAnomalyDetector(
|
|
294
|
+
args: DeleteAnomalyDetectorCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: DeleteAnomalyDetectorCommandOutput) => void
|
|
297
|
+
): void;
|
|
252
298
|
deleteLoggingConfiguration(
|
|
253
299
|
args: DeleteLoggingConfigurationCommandInput,
|
|
254
300
|
options?: __HttpHandlerOptions
|
|
@@ -359,6 +405,19 @@ export interface Amp {
|
|
|
359
405
|
options: __HttpHandlerOptions,
|
|
360
406
|
cb: (err: any, data?: DescribeAlertManagerDefinitionCommandOutput) => void
|
|
361
407
|
): void;
|
|
408
|
+
describeAnomalyDetector(
|
|
409
|
+
args: DescribeAnomalyDetectorCommandInput,
|
|
410
|
+
options?: __HttpHandlerOptions
|
|
411
|
+
): Promise<DescribeAnomalyDetectorCommandOutput>;
|
|
412
|
+
describeAnomalyDetector(
|
|
413
|
+
args: DescribeAnomalyDetectorCommandInput,
|
|
414
|
+
cb: (err: any, data?: DescribeAnomalyDetectorCommandOutput) => void
|
|
415
|
+
): void;
|
|
416
|
+
describeAnomalyDetector(
|
|
417
|
+
args: DescribeAnomalyDetectorCommandInput,
|
|
418
|
+
options: __HttpHandlerOptions,
|
|
419
|
+
cb: (err: any, data?: DescribeAnomalyDetectorCommandOutput) => void
|
|
420
|
+
): void;
|
|
362
421
|
describeLoggingConfiguration(
|
|
363
422
|
args: DescribeLoggingConfigurationCommandInput,
|
|
364
423
|
options?: __HttpHandlerOptions
|
|
@@ -489,6 +548,19 @@ export interface Amp {
|
|
|
489
548
|
options: __HttpHandlerOptions,
|
|
490
549
|
cb: (err: any, data?: GetDefaultScraperConfigurationCommandOutput) => void
|
|
491
550
|
): void;
|
|
551
|
+
listAnomalyDetectors(
|
|
552
|
+
args: ListAnomalyDetectorsCommandInput,
|
|
553
|
+
options?: __HttpHandlerOptions
|
|
554
|
+
): Promise<ListAnomalyDetectorsCommandOutput>;
|
|
555
|
+
listAnomalyDetectors(
|
|
556
|
+
args: ListAnomalyDetectorsCommandInput,
|
|
557
|
+
cb: (err: any, data?: ListAnomalyDetectorsCommandOutput) => void
|
|
558
|
+
): void;
|
|
559
|
+
listAnomalyDetectors(
|
|
560
|
+
args: ListAnomalyDetectorsCommandInput,
|
|
561
|
+
options: __HttpHandlerOptions,
|
|
562
|
+
cb: (err: any, data?: ListAnomalyDetectorsCommandOutput) => void
|
|
563
|
+
): void;
|
|
492
564
|
listRuleGroupsNamespaces(
|
|
493
565
|
args: ListRuleGroupsNamespacesCommandInput,
|
|
494
566
|
options?: __HttpHandlerOptions
|
|
@@ -556,6 +628,19 @@ export interface Amp {
|
|
|
556
628
|
options: __HttpHandlerOptions,
|
|
557
629
|
cb: (err: any, data?: PutAlertManagerDefinitionCommandOutput) => void
|
|
558
630
|
): void;
|
|
631
|
+
putAnomalyDetector(
|
|
632
|
+
args: PutAnomalyDetectorCommandInput,
|
|
633
|
+
options?: __HttpHandlerOptions
|
|
634
|
+
): Promise<PutAnomalyDetectorCommandOutput>;
|
|
635
|
+
putAnomalyDetector(
|
|
636
|
+
args: PutAnomalyDetectorCommandInput,
|
|
637
|
+
cb: (err: any, data?: PutAnomalyDetectorCommandOutput) => void
|
|
638
|
+
): void;
|
|
639
|
+
putAnomalyDetector(
|
|
640
|
+
args: PutAnomalyDetectorCommandInput,
|
|
641
|
+
options: __HttpHandlerOptions,
|
|
642
|
+
cb: (err: any, data?: PutAnomalyDetectorCommandOutput) => void
|
|
643
|
+
): void;
|
|
559
644
|
putResourcePolicy(
|
|
560
645
|
args: PutResourcePolicyCommandInput,
|
|
561
646
|
options?: __HttpHandlerOptions
|
|
@@ -49,6 +49,10 @@ import {
|
|
|
49
49
|
CreateAlertManagerDefinitionCommandInput,
|
|
50
50
|
CreateAlertManagerDefinitionCommandOutput,
|
|
51
51
|
} from "./commands/CreateAlertManagerDefinitionCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateAnomalyDetectorCommandInput,
|
|
54
|
+
CreateAnomalyDetectorCommandOutput,
|
|
55
|
+
} from "./commands/CreateAnomalyDetectorCommand";
|
|
52
56
|
import {
|
|
53
57
|
CreateLoggingConfigurationCommandInput,
|
|
54
58
|
CreateLoggingConfigurationCommandOutput,
|
|
@@ -73,6 +77,10 @@ import {
|
|
|
73
77
|
DeleteAlertManagerDefinitionCommandInput,
|
|
74
78
|
DeleteAlertManagerDefinitionCommandOutput,
|
|
75
79
|
} from "./commands/DeleteAlertManagerDefinitionCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteAnomalyDetectorCommandInput,
|
|
82
|
+
DeleteAnomalyDetectorCommandOutput,
|
|
83
|
+
} from "./commands/DeleteAnomalyDetectorCommand";
|
|
76
84
|
import {
|
|
77
85
|
DeleteLoggingConfigurationCommandInput,
|
|
78
86
|
DeleteLoggingConfigurationCommandOutput,
|
|
@@ -105,6 +113,10 @@ import {
|
|
|
105
113
|
DescribeAlertManagerDefinitionCommandInput,
|
|
106
114
|
DescribeAlertManagerDefinitionCommandOutput,
|
|
107
115
|
} from "./commands/DescribeAlertManagerDefinitionCommand";
|
|
116
|
+
import {
|
|
117
|
+
DescribeAnomalyDetectorCommandInput,
|
|
118
|
+
DescribeAnomalyDetectorCommandOutput,
|
|
119
|
+
} from "./commands/DescribeAnomalyDetectorCommand";
|
|
108
120
|
import {
|
|
109
121
|
DescribeLoggingConfigurationCommandInput,
|
|
110
122
|
DescribeLoggingConfigurationCommandOutput,
|
|
@@ -141,6 +153,10 @@ import {
|
|
|
141
153
|
GetDefaultScraperConfigurationCommandInput,
|
|
142
154
|
GetDefaultScraperConfigurationCommandOutput,
|
|
143
155
|
} from "./commands/GetDefaultScraperConfigurationCommand";
|
|
156
|
+
import {
|
|
157
|
+
ListAnomalyDetectorsCommandInput,
|
|
158
|
+
ListAnomalyDetectorsCommandOutput,
|
|
159
|
+
} from "./commands/ListAnomalyDetectorsCommand";
|
|
144
160
|
import {
|
|
145
161
|
ListRuleGroupsNamespacesCommandInput,
|
|
146
162
|
ListRuleGroupsNamespacesCommandOutput,
|
|
@@ -161,6 +177,10 @@ import {
|
|
|
161
177
|
PutAlertManagerDefinitionCommandInput,
|
|
162
178
|
PutAlertManagerDefinitionCommandOutput,
|
|
163
179
|
} from "./commands/PutAlertManagerDefinitionCommand";
|
|
180
|
+
import {
|
|
181
|
+
PutAnomalyDetectorCommandInput,
|
|
182
|
+
PutAnomalyDetectorCommandOutput,
|
|
183
|
+
} from "./commands/PutAnomalyDetectorCommand";
|
|
164
184
|
import {
|
|
165
185
|
PutResourcePolicyCommandInput,
|
|
166
186
|
PutResourcePolicyCommandOutput,
|
|
@@ -210,12 +230,14 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
210
230
|
export { __Client };
|
|
211
231
|
export type ServiceInputTypes =
|
|
212
232
|
| CreateAlertManagerDefinitionCommandInput
|
|
233
|
+
| CreateAnomalyDetectorCommandInput
|
|
213
234
|
| CreateLoggingConfigurationCommandInput
|
|
214
235
|
| CreateQueryLoggingConfigurationCommandInput
|
|
215
236
|
| CreateRuleGroupsNamespaceCommandInput
|
|
216
237
|
| CreateScraperCommandInput
|
|
217
238
|
| CreateWorkspaceCommandInput
|
|
218
239
|
| DeleteAlertManagerDefinitionCommandInput
|
|
240
|
+
| DeleteAnomalyDetectorCommandInput
|
|
219
241
|
| DeleteLoggingConfigurationCommandInput
|
|
220
242
|
| DeleteQueryLoggingConfigurationCommandInput
|
|
221
243
|
| DeleteResourcePolicyCommandInput
|
|
@@ -224,6 +246,7 @@ export type ServiceInputTypes =
|
|
|
224
246
|
| DeleteScraperLoggingConfigurationCommandInput
|
|
225
247
|
| DeleteWorkspaceCommandInput
|
|
226
248
|
| DescribeAlertManagerDefinitionCommandInput
|
|
249
|
+
| DescribeAnomalyDetectorCommandInput
|
|
227
250
|
| DescribeLoggingConfigurationCommandInput
|
|
228
251
|
| DescribeQueryLoggingConfigurationCommandInput
|
|
229
252
|
| DescribeResourcePolicyCommandInput
|
|
@@ -233,11 +256,13 @@ export type ServiceInputTypes =
|
|
|
233
256
|
| DescribeWorkspaceCommandInput
|
|
234
257
|
| DescribeWorkspaceConfigurationCommandInput
|
|
235
258
|
| GetDefaultScraperConfigurationCommandInput
|
|
259
|
+
| ListAnomalyDetectorsCommandInput
|
|
236
260
|
| ListRuleGroupsNamespacesCommandInput
|
|
237
261
|
| ListScrapersCommandInput
|
|
238
262
|
| ListTagsForResourceCommandInput
|
|
239
263
|
| ListWorkspacesCommandInput
|
|
240
264
|
| PutAlertManagerDefinitionCommandInput
|
|
265
|
+
| PutAnomalyDetectorCommandInput
|
|
241
266
|
| PutResourcePolicyCommandInput
|
|
242
267
|
| PutRuleGroupsNamespaceCommandInput
|
|
243
268
|
| TagResourceCommandInput
|
|
@@ -250,12 +275,14 @@ export type ServiceInputTypes =
|
|
|
250
275
|
| UpdateWorkspaceConfigurationCommandInput;
|
|
251
276
|
export type ServiceOutputTypes =
|
|
252
277
|
| CreateAlertManagerDefinitionCommandOutput
|
|
278
|
+
| CreateAnomalyDetectorCommandOutput
|
|
253
279
|
| CreateLoggingConfigurationCommandOutput
|
|
254
280
|
| CreateQueryLoggingConfigurationCommandOutput
|
|
255
281
|
| CreateRuleGroupsNamespaceCommandOutput
|
|
256
282
|
| CreateScraperCommandOutput
|
|
257
283
|
| CreateWorkspaceCommandOutput
|
|
258
284
|
| DeleteAlertManagerDefinitionCommandOutput
|
|
285
|
+
| DeleteAnomalyDetectorCommandOutput
|
|
259
286
|
| DeleteLoggingConfigurationCommandOutput
|
|
260
287
|
| DeleteQueryLoggingConfigurationCommandOutput
|
|
261
288
|
| DeleteResourcePolicyCommandOutput
|
|
@@ -264,6 +291,7 @@ export type ServiceOutputTypes =
|
|
|
264
291
|
| DeleteScraperLoggingConfigurationCommandOutput
|
|
265
292
|
| DeleteWorkspaceCommandOutput
|
|
266
293
|
| DescribeAlertManagerDefinitionCommandOutput
|
|
294
|
+
| DescribeAnomalyDetectorCommandOutput
|
|
267
295
|
| DescribeLoggingConfigurationCommandOutput
|
|
268
296
|
| DescribeQueryLoggingConfigurationCommandOutput
|
|
269
297
|
| DescribeResourcePolicyCommandOutput
|
|
@@ -273,11 +301,13 @@ export type ServiceOutputTypes =
|
|
|
273
301
|
| DescribeWorkspaceCommandOutput
|
|
274
302
|
| DescribeWorkspaceConfigurationCommandOutput
|
|
275
303
|
| GetDefaultScraperConfigurationCommandOutput
|
|
304
|
+
| ListAnomalyDetectorsCommandOutput
|
|
276
305
|
| ListRuleGroupsNamespacesCommandOutput
|
|
277
306
|
| ListScrapersCommandOutput
|
|
278
307
|
| ListTagsForResourceCommandOutput
|
|
279
308
|
| ListWorkspacesCommandOutput
|
|
280
309
|
| PutAlertManagerDefinitionCommandOutput
|
|
310
|
+
| PutAnomalyDetectorCommandOutput
|
|
281
311
|
| PutResourcePolicyCommandOutput
|
|
282
312
|
| PutRuleGroupsNamespaceCommandOutput
|
|
283
313
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AmpClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AmpClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAnomalyDetectorRequest,
|
|
10
|
+
CreateAnomalyDetectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAnomalyDetectorCommandInput
|
|
15
|
+
extends CreateAnomalyDetectorRequest {}
|
|
16
|
+
export interface CreateAnomalyDetectorCommandOutput
|
|
17
|
+
extends CreateAnomalyDetectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAnomalyDetectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAnomalyDetectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAnomalyDetectorCommandInput,
|
|
24
|
+
CreateAnomalyDetectorCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateAnomalyDetectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAnomalyDetectorCommandInput,
|
|
33
|
+
CreateAnomalyDetectorCommandOutput,
|
|
34
|
+
AmpClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAnomalyDetectorCommand extends CreateAnomalyDetectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAnomalyDetectorRequest;
|
|
44
|
+
output: CreateAnomalyDetectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAnomalyDetectorCommandInput;
|
|
48
|
+
output: CreateAnomalyDetectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AmpClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AmpClient";
|
|
8
|
+
import { DeleteAnomalyDetectorRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteAnomalyDetectorCommandInput
|
|
12
|
+
extends DeleteAnomalyDetectorRequest {}
|
|
13
|
+
export interface DeleteAnomalyDetectorCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteAnomalyDetectorCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteAnomalyDetectorCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteAnomalyDetectorCommandInput,
|
|
19
|
+
DeleteAnomalyDetectorCommandOutput,
|
|
20
|
+
AmpClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
input: DeleteAnomalyDetectorCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteAnomalyDetectorCommandInput,
|
|
28
|
+
DeleteAnomalyDetectorCommandOutput,
|
|
29
|
+
AmpClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteAnomalyDetectorCommand extends DeleteAnomalyDetectorCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteAnomalyDetectorRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteAnomalyDetectorCommandInput;
|
|
43
|
+
output: DeleteAnomalyDetectorCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AmpClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AmpClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeAnomalyDetectorRequest,
|
|
10
|
+
DescribeAnomalyDetectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeAnomalyDetectorCommandInput
|
|
15
|
+
extends DescribeAnomalyDetectorRequest {}
|
|
16
|
+
export interface DescribeAnomalyDetectorCommandOutput
|
|
17
|
+
extends DescribeAnomalyDetectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeAnomalyDetectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeAnomalyDetectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeAnomalyDetectorCommandInput,
|
|
24
|
+
DescribeAnomalyDetectorCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeAnomalyDetectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeAnomalyDetectorCommandInput,
|
|
33
|
+
DescribeAnomalyDetectorCommandOutput,
|
|
34
|
+
AmpClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeAnomalyDetectorCommand extends DescribeAnomalyDetectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeAnomalyDetectorRequest;
|
|
44
|
+
output: DescribeAnomalyDetectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeAnomalyDetectorCommandInput;
|
|
48
|
+
output: DescribeAnomalyDetectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AmpClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AmpClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAnomalyDetectorsRequest,
|
|
10
|
+
ListAnomalyDetectorsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAnomalyDetectorsCommandInput
|
|
15
|
+
extends ListAnomalyDetectorsRequest {}
|
|
16
|
+
export interface ListAnomalyDetectorsCommandOutput
|
|
17
|
+
extends ListAnomalyDetectorsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAnomalyDetectorsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAnomalyDetectorsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAnomalyDetectorsCommandInput,
|
|
24
|
+
ListAnomalyDetectorsCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListAnomalyDetectorsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAnomalyDetectorsCommandInput,
|
|
33
|
+
ListAnomalyDetectorsCommandOutput,
|
|
34
|
+
AmpClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAnomalyDetectorsCommand extends ListAnomalyDetectorsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAnomalyDetectorsRequest;
|
|
44
|
+
output: ListAnomalyDetectorsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAnomalyDetectorsCommandInput;
|
|
48
|
+
output: ListAnomalyDetectorsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AmpClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AmpClient";
|
|
8
|
+
import {
|
|
9
|
+
PutAnomalyDetectorRequest,
|
|
10
|
+
PutAnomalyDetectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutAnomalyDetectorCommandInput
|
|
15
|
+
extends PutAnomalyDetectorRequest {}
|
|
16
|
+
export interface PutAnomalyDetectorCommandOutput
|
|
17
|
+
extends PutAnomalyDetectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutAnomalyDetectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutAnomalyDetectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutAnomalyDetectorCommandInput,
|
|
24
|
+
PutAnomalyDetectorCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutAnomalyDetectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutAnomalyDetectorCommandInput,
|
|
33
|
+
PutAnomalyDetectorCommandOutput,
|
|
34
|
+
AmpClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutAnomalyDetectorCommand extends PutAnomalyDetectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutAnomalyDetectorRequest;
|
|
44
|
+
output: PutAnomalyDetectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutAnomalyDetectorCommandInput;
|
|
48
|
+
output: PutAnomalyDetectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./CreateAlertManagerDefinitionCommand";
|
|
2
|
+
export * from "./CreateAnomalyDetectorCommand";
|
|
2
3
|
export * from "./CreateLoggingConfigurationCommand";
|
|
3
4
|
export * from "./CreateQueryLoggingConfigurationCommand";
|
|
4
5
|
export * from "./CreateRuleGroupsNamespaceCommand";
|
|
5
6
|
export * from "./CreateScraperCommand";
|
|
6
7
|
export * from "./CreateWorkspaceCommand";
|
|
7
8
|
export * from "./DeleteAlertManagerDefinitionCommand";
|
|
9
|
+
export * from "./DeleteAnomalyDetectorCommand";
|
|
8
10
|
export * from "./DeleteLoggingConfigurationCommand";
|
|
9
11
|
export * from "./DeleteQueryLoggingConfigurationCommand";
|
|
10
12
|
export * from "./DeleteResourcePolicyCommand";
|
|
@@ -13,6 +15,7 @@ export * from "./DeleteScraperCommand";
|
|
|
13
15
|
export * from "./DeleteScraperLoggingConfigurationCommand";
|
|
14
16
|
export * from "./DeleteWorkspaceCommand";
|
|
15
17
|
export * from "./DescribeAlertManagerDefinitionCommand";
|
|
18
|
+
export * from "./DescribeAnomalyDetectorCommand";
|
|
16
19
|
export * from "./DescribeLoggingConfigurationCommand";
|
|
17
20
|
export * from "./DescribeQueryLoggingConfigurationCommand";
|
|
18
21
|
export * from "./DescribeResourcePolicyCommand";
|
|
@@ -22,11 +25,13 @@ export * from "./DescribeScraperLoggingConfigurationCommand";
|
|
|
22
25
|
export * from "./DescribeWorkspaceCommand";
|
|
23
26
|
export * from "./DescribeWorkspaceConfigurationCommand";
|
|
24
27
|
export * from "./GetDefaultScraperConfigurationCommand";
|
|
28
|
+
export * from "./ListAnomalyDetectorsCommand";
|
|
25
29
|
export * from "./ListRuleGroupsNamespacesCommand";
|
|
26
30
|
export * from "./ListScrapersCommand";
|
|
27
31
|
export * from "./ListTagsForResourceCommand";
|
|
28
32
|
export * from "./ListWorkspacesCommand";
|
|
29
33
|
export * from "./PutAlertManagerDefinitionCommand";
|
|
34
|
+
export * from "./PutAnomalyDetectorCommand";
|
|
30
35
|
export * from "./PutResourcePolicyCommand";
|
|
31
36
|
export * from "./PutRuleGroupsNamespaceCommand";
|
|
32
37
|
export * from "./TagResourceCommand";
|