@aws-sdk/client-amp 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Amp.d.ts +0 -21
- package/dist-types/ts3.4/AmpClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateAlertManagerDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateRuleGroupsNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAlertManagerDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRuleGroupsNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAlertManagerDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeRuleGroupsNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRuleGroupsNamespacesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutAlertManagerDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutRuleGroupsNamespaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateWorkspaceAliasCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/AmpServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -213
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForWorkspaceActive.d.ts +0 -2
- package/dist-types/ts3.4/waiters/waitForWorkspaceDeleted.d.ts +0 -2
- package/package.json +27 -27
|
@@ -1,118 +1,81 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AmpServiceException as __BaseException } from "./AmpServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export declare class ConflictException extends __BaseException {
|
|
14
11
|
readonly name: "ConflictException";
|
|
15
12
|
readonly $fault: "client";
|
|
16
|
-
|
|
17
13
|
resourceId: string | undefined;
|
|
18
|
-
|
|
19
14
|
resourceType: string | undefined;
|
|
20
|
-
|
|
21
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export interface CreateAlertManagerDefinitionRequest {
|
|
25
18
|
workspaceId: string | undefined;
|
|
26
|
-
|
|
27
19
|
data: Uint8Array | undefined;
|
|
28
|
-
|
|
29
20
|
clientToken?: string;
|
|
30
21
|
}
|
|
31
22
|
export declare enum AlertManagerDefinitionStatusCode {
|
|
32
23
|
ACTIVE = "ACTIVE",
|
|
33
|
-
|
|
34
24
|
CREATING = "CREATING",
|
|
35
|
-
|
|
36
25
|
CREATION_FAILED = "CREATION_FAILED",
|
|
37
|
-
|
|
38
26
|
DELETING = "DELETING",
|
|
39
|
-
|
|
40
27
|
UPDATE_FAILED = "UPDATE_FAILED",
|
|
41
|
-
|
|
42
28
|
UPDATING = "UPDATING",
|
|
43
29
|
}
|
|
44
|
-
|
|
45
30
|
export interface AlertManagerDefinitionStatus {
|
|
46
31
|
statusCode: AlertManagerDefinitionStatusCode | string | undefined;
|
|
47
|
-
|
|
48
32
|
statusReason?: string;
|
|
49
33
|
}
|
|
50
|
-
|
|
51
34
|
export interface CreateAlertManagerDefinitionResponse {
|
|
52
35
|
status: AlertManagerDefinitionStatus | undefined;
|
|
53
36
|
}
|
|
54
|
-
|
|
55
37
|
export declare class InternalServerException extends __BaseException {
|
|
56
38
|
readonly name: "InternalServerException";
|
|
57
39
|
readonly $fault: "server";
|
|
58
40
|
$retryable: {};
|
|
59
|
-
|
|
60
41
|
retryAfterSeconds?: number;
|
|
61
|
-
|
|
62
42
|
constructor(
|
|
63
43
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
64
44
|
);
|
|
65
45
|
}
|
|
66
|
-
|
|
67
46
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
68
47
|
readonly name: "ResourceNotFoundException";
|
|
69
48
|
readonly $fault: "client";
|
|
70
|
-
|
|
71
49
|
resourceId: string | undefined;
|
|
72
|
-
|
|
73
50
|
resourceType: string | undefined;
|
|
74
|
-
|
|
75
51
|
constructor(
|
|
76
52
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
77
53
|
);
|
|
78
54
|
}
|
|
79
|
-
|
|
80
55
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
81
56
|
readonly name: "ServiceQuotaExceededException";
|
|
82
57
|
readonly $fault: "client";
|
|
83
|
-
|
|
84
58
|
resourceId: string | undefined;
|
|
85
|
-
|
|
86
59
|
resourceType: string | undefined;
|
|
87
|
-
|
|
88
60
|
serviceCode: string | undefined;
|
|
89
|
-
|
|
90
61
|
quotaCode: string | undefined;
|
|
91
|
-
|
|
92
62
|
constructor(
|
|
93
63
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
94
64
|
);
|
|
95
65
|
}
|
|
96
|
-
|
|
97
66
|
export declare class ThrottlingException extends __BaseException {
|
|
98
67
|
readonly name: "ThrottlingException";
|
|
99
68
|
readonly $fault: "client";
|
|
100
69
|
$retryable: {};
|
|
101
|
-
|
|
102
70
|
serviceCode?: string;
|
|
103
|
-
|
|
104
71
|
quotaCode?: string;
|
|
105
|
-
|
|
106
72
|
retryAfterSeconds?: number;
|
|
107
|
-
|
|
108
73
|
constructor(
|
|
109
74
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
110
75
|
);
|
|
111
76
|
}
|
|
112
|
-
|
|
113
77
|
export interface ValidationExceptionField {
|
|
114
78
|
name: string | undefined;
|
|
115
|
-
|
|
116
79
|
message: string | undefined;
|
|
117
80
|
}
|
|
118
81
|
export declare enum ValidationExceptionReason {
|
|
@@ -121,52 +84,36 @@ export declare enum ValidationExceptionReason {
|
|
|
121
84
|
OTHER = "OTHER",
|
|
122
85
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
|
|
123
86
|
}
|
|
124
|
-
|
|
125
87
|
export declare class ValidationException extends __BaseException {
|
|
126
88
|
readonly name: "ValidationException";
|
|
127
89
|
readonly $fault: "client";
|
|
128
|
-
|
|
129
90
|
reason: ValidationExceptionReason | string | undefined;
|
|
130
|
-
|
|
131
91
|
fieldList?: ValidationExceptionField[];
|
|
132
|
-
|
|
133
92
|
constructor(
|
|
134
93
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
135
94
|
);
|
|
136
95
|
}
|
|
137
|
-
|
|
138
96
|
export interface DeleteAlertManagerDefinitionRequest {
|
|
139
97
|
workspaceId: string | undefined;
|
|
140
|
-
|
|
141
98
|
clientToken?: string;
|
|
142
99
|
}
|
|
143
|
-
|
|
144
100
|
export interface DescribeAlertManagerDefinitionRequest {
|
|
145
101
|
workspaceId: string | undefined;
|
|
146
102
|
}
|
|
147
|
-
|
|
148
103
|
export interface AlertManagerDefinitionDescription {
|
|
149
104
|
status: AlertManagerDefinitionStatus | undefined;
|
|
150
|
-
|
|
151
105
|
data: Uint8Array | undefined;
|
|
152
|
-
|
|
153
106
|
createdAt: Date | undefined;
|
|
154
|
-
|
|
155
107
|
modifiedAt: Date | undefined;
|
|
156
108
|
}
|
|
157
|
-
|
|
158
109
|
export interface DescribeAlertManagerDefinitionResponse {
|
|
159
110
|
alertManagerDefinition: AlertManagerDefinitionDescription | undefined;
|
|
160
111
|
}
|
|
161
|
-
|
|
162
112
|
export interface PutAlertManagerDefinitionRequest {
|
|
163
113
|
workspaceId: string | undefined;
|
|
164
|
-
|
|
165
114
|
data: Uint8Array | undefined;
|
|
166
|
-
|
|
167
115
|
clientToken?: string;
|
|
168
116
|
}
|
|
169
|
-
|
|
170
117
|
export interface PutAlertManagerDefinitionResponse {
|
|
171
118
|
status: AlertManagerDefinitionStatus | undefined;
|
|
172
119
|
}
|
|
@@ -178,498 +125,338 @@ export interface ListTagsForResourceResponse {
|
|
|
178
125
|
}
|
|
179
126
|
export interface TagResourceRequest {
|
|
180
127
|
resourceArn: string | undefined;
|
|
181
|
-
|
|
182
128
|
tags: Record<string, string> | undefined;
|
|
183
129
|
}
|
|
184
130
|
export interface TagResourceResponse {}
|
|
185
131
|
export interface UntagResourceRequest {
|
|
186
132
|
resourceArn: string | undefined;
|
|
187
|
-
|
|
188
133
|
tagKeys: string[] | undefined;
|
|
189
134
|
}
|
|
190
135
|
export interface UntagResourceResponse {}
|
|
191
|
-
|
|
192
136
|
export interface CreateWorkspaceRequest {
|
|
193
137
|
alias?: string;
|
|
194
|
-
|
|
195
138
|
clientToken?: string;
|
|
196
|
-
|
|
197
139
|
tags?: Record<string, string>;
|
|
198
140
|
}
|
|
199
141
|
export declare enum WorkspaceStatusCode {
|
|
200
142
|
ACTIVE = "ACTIVE",
|
|
201
|
-
|
|
202
143
|
CREATING = "CREATING",
|
|
203
|
-
|
|
204
144
|
CREATION_FAILED = "CREATION_FAILED",
|
|
205
|
-
|
|
206
145
|
DELETING = "DELETING",
|
|
207
|
-
|
|
208
146
|
UPDATING = "UPDATING",
|
|
209
147
|
}
|
|
210
|
-
|
|
211
148
|
export interface WorkspaceStatus {
|
|
212
149
|
statusCode: WorkspaceStatusCode | string | undefined;
|
|
213
150
|
}
|
|
214
|
-
|
|
215
151
|
export interface CreateWorkspaceResponse {
|
|
216
152
|
workspaceId: string | undefined;
|
|
217
|
-
|
|
218
153
|
arn: string | undefined;
|
|
219
|
-
|
|
220
154
|
status: WorkspaceStatus | undefined;
|
|
221
|
-
|
|
222
155
|
tags?: Record<string, string>;
|
|
223
156
|
}
|
|
224
|
-
|
|
225
157
|
export interface DeleteWorkspaceRequest {
|
|
226
158
|
workspaceId: string | undefined;
|
|
227
|
-
|
|
228
159
|
clientToken?: string;
|
|
229
160
|
}
|
|
230
|
-
|
|
231
161
|
export interface DescribeWorkspaceRequest {
|
|
232
162
|
workspaceId: string | undefined;
|
|
233
163
|
}
|
|
234
|
-
|
|
235
164
|
export interface WorkspaceDescription {
|
|
236
165
|
workspaceId: string | undefined;
|
|
237
|
-
|
|
238
166
|
alias?: string;
|
|
239
|
-
|
|
240
167
|
arn: string | undefined;
|
|
241
|
-
|
|
242
168
|
status: WorkspaceStatus | undefined;
|
|
243
|
-
|
|
244
169
|
prometheusEndpoint?: string;
|
|
245
|
-
|
|
246
170
|
createdAt: Date | undefined;
|
|
247
|
-
|
|
248
171
|
tags?: Record<string, string>;
|
|
249
172
|
}
|
|
250
|
-
|
|
251
173
|
export interface DescribeWorkspaceResponse {
|
|
252
174
|
workspace: WorkspaceDescription | undefined;
|
|
253
175
|
}
|
|
254
|
-
|
|
255
176
|
export interface ListWorkspacesRequest {
|
|
256
177
|
nextToken?: string;
|
|
257
|
-
|
|
258
178
|
alias?: string;
|
|
259
|
-
|
|
260
179
|
maxResults?: number;
|
|
261
180
|
}
|
|
262
|
-
|
|
263
181
|
export interface WorkspaceSummary {
|
|
264
182
|
workspaceId: string | undefined;
|
|
265
|
-
|
|
266
183
|
alias?: string;
|
|
267
|
-
|
|
268
184
|
arn: string | undefined;
|
|
269
|
-
|
|
270
185
|
status: WorkspaceStatus | undefined;
|
|
271
|
-
|
|
272
186
|
createdAt: Date | undefined;
|
|
273
|
-
|
|
274
187
|
tags?: Record<string, string>;
|
|
275
188
|
}
|
|
276
|
-
|
|
277
189
|
export interface ListWorkspacesResponse {
|
|
278
190
|
workspaces: WorkspaceSummary[] | undefined;
|
|
279
|
-
|
|
280
191
|
nextToken?: string;
|
|
281
192
|
}
|
|
282
|
-
|
|
283
193
|
export interface CreateLoggingConfigurationRequest {
|
|
284
194
|
workspaceId: string | undefined;
|
|
285
|
-
|
|
286
195
|
logGroupArn: string | undefined;
|
|
287
|
-
|
|
288
196
|
clientToken?: string;
|
|
289
197
|
}
|
|
290
198
|
export declare enum LoggingConfigurationStatusCode {
|
|
291
199
|
ACTIVE = "ACTIVE",
|
|
292
|
-
|
|
293
200
|
CREATING = "CREATING",
|
|
294
|
-
|
|
295
201
|
CREATION_FAILED = "CREATION_FAILED",
|
|
296
|
-
|
|
297
202
|
DELETING = "DELETING",
|
|
298
|
-
|
|
299
203
|
UPDATE_FAILED = "UPDATE_FAILED",
|
|
300
|
-
|
|
301
204
|
UPDATING = "UPDATING",
|
|
302
205
|
}
|
|
303
|
-
|
|
304
206
|
export interface LoggingConfigurationStatus {
|
|
305
207
|
statusCode: LoggingConfigurationStatusCode | string | undefined;
|
|
306
|
-
|
|
307
208
|
statusReason?: string;
|
|
308
209
|
}
|
|
309
|
-
|
|
310
210
|
export interface CreateLoggingConfigurationResponse {
|
|
311
211
|
status: LoggingConfigurationStatus | undefined;
|
|
312
212
|
}
|
|
313
|
-
|
|
314
213
|
export interface DeleteLoggingConfigurationRequest {
|
|
315
214
|
workspaceId: string | undefined;
|
|
316
|
-
|
|
317
215
|
clientToken?: string;
|
|
318
216
|
}
|
|
319
|
-
|
|
320
217
|
export interface DescribeLoggingConfigurationRequest {
|
|
321
218
|
workspaceId: string | undefined;
|
|
322
219
|
}
|
|
323
|
-
|
|
324
220
|
export interface LoggingConfigurationMetadata {
|
|
325
221
|
status: LoggingConfigurationStatus | undefined;
|
|
326
|
-
|
|
327
222
|
workspace: string | undefined;
|
|
328
|
-
|
|
329
223
|
logGroupArn: string | undefined;
|
|
330
|
-
|
|
331
224
|
createdAt: Date | undefined;
|
|
332
|
-
|
|
333
225
|
modifiedAt: Date | undefined;
|
|
334
226
|
}
|
|
335
|
-
|
|
336
227
|
export interface DescribeLoggingConfigurationResponse {
|
|
337
228
|
loggingConfiguration: LoggingConfigurationMetadata | undefined;
|
|
338
229
|
}
|
|
339
|
-
|
|
340
230
|
export interface UpdateLoggingConfigurationRequest {
|
|
341
231
|
workspaceId: string | undefined;
|
|
342
|
-
|
|
343
232
|
logGroupArn: string | undefined;
|
|
344
|
-
|
|
345
233
|
clientToken?: string;
|
|
346
234
|
}
|
|
347
|
-
|
|
348
235
|
export interface UpdateLoggingConfigurationResponse {
|
|
349
236
|
status: LoggingConfigurationStatus | undefined;
|
|
350
237
|
}
|
|
351
|
-
|
|
352
238
|
export interface CreateRuleGroupsNamespaceRequest {
|
|
353
239
|
workspaceId: string | undefined;
|
|
354
|
-
|
|
355
240
|
name: string | undefined;
|
|
356
|
-
|
|
357
241
|
data: Uint8Array | undefined;
|
|
358
|
-
|
|
359
242
|
clientToken?: string;
|
|
360
|
-
|
|
361
243
|
tags?: Record<string, string>;
|
|
362
244
|
}
|
|
363
245
|
export declare enum RuleGroupsNamespaceStatusCode {
|
|
364
246
|
ACTIVE = "ACTIVE",
|
|
365
|
-
|
|
366
247
|
CREATING = "CREATING",
|
|
367
|
-
|
|
368
248
|
CREATION_FAILED = "CREATION_FAILED",
|
|
369
|
-
|
|
370
249
|
DELETING = "DELETING",
|
|
371
|
-
|
|
372
250
|
UPDATE_FAILED = "UPDATE_FAILED",
|
|
373
|
-
|
|
374
251
|
UPDATING = "UPDATING",
|
|
375
252
|
}
|
|
376
|
-
|
|
377
253
|
export interface RuleGroupsNamespaceStatus {
|
|
378
254
|
statusCode: RuleGroupsNamespaceStatusCode | string | undefined;
|
|
379
|
-
|
|
380
255
|
statusReason?: string;
|
|
381
256
|
}
|
|
382
|
-
|
|
383
257
|
export interface CreateRuleGroupsNamespaceResponse {
|
|
384
258
|
name: string | undefined;
|
|
385
|
-
|
|
386
259
|
arn: string | undefined;
|
|
387
|
-
|
|
388
260
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
389
|
-
|
|
390
261
|
tags?: Record<string, string>;
|
|
391
262
|
}
|
|
392
|
-
|
|
393
263
|
export interface DeleteRuleGroupsNamespaceRequest {
|
|
394
264
|
workspaceId: string | undefined;
|
|
395
|
-
|
|
396
265
|
name: string | undefined;
|
|
397
|
-
|
|
398
266
|
clientToken?: string;
|
|
399
267
|
}
|
|
400
|
-
|
|
401
268
|
export interface DescribeRuleGroupsNamespaceRequest {
|
|
402
269
|
workspaceId: string | undefined;
|
|
403
|
-
|
|
404
270
|
name: string | undefined;
|
|
405
271
|
}
|
|
406
|
-
|
|
407
272
|
export interface RuleGroupsNamespaceDescription {
|
|
408
273
|
arn: string | undefined;
|
|
409
|
-
|
|
410
274
|
name: string | undefined;
|
|
411
|
-
|
|
412
275
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
413
|
-
|
|
414
276
|
data: Uint8Array | undefined;
|
|
415
|
-
|
|
416
277
|
createdAt: Date | undefined;
|
|
417
|
-
|
|
418
278
|
modifiedAt: Date | undefined;
|
|
419
|
-
|
|
420
279
|
tags?: Record<string, string>;
|
|
421
280
|
}
|
|
422
|
-
|
|
423
281
|
export interface DescribeRuleGroupsNamespaceResponse {
|
|
424
282
|
ruleGroupsNamespace: RuleGroupsNamespaceDescription | undefined;
|
|
425
283
|
}
|
|
426
|
-
|
|
427
284
|
export interface ListRuleGroupsNamespacesRequest {
|
|
428
285
|
workspaceId: string | undefined;
|
|
429
|
-
|
|
430
286
|
name?: string;
|
|
431
|
-
|
|
432
287
|
nextToken?: string;
|
|
433
|
-
|
|
434
288
|
maxResults?: number;
|
|
435
289
|
}
|
|
436
|
-
|
|
437
290
|
export interface RuleGroupsNamespaceSummary {
|
|
438
291
|
arn: string | undefined;
|
|
439
|
-
|
|
440
292
|
name: string | undefined;
|
|
441
|
-
|
|
442
293
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
443
|
-
|
|
444
294
|
createdAt: Date | undefined;
|
|
445
|
-
|
|
446
295
|
modifiedAt: Date | undefined;
|
|
447
|
-
|
|
448
296
|
tags?: Record<string, string>;
|
|
449
297
|
}
|
|
450
|
-
|
|
451
298
|
export interface ListRuleGroupsNamespacesResponse {
|
|
452
299
|
ruleGroupsNamespaces: RuleGroupsNamespaceSummary[] | undefined;
|
|
453
|
-
|
|
454
300
|
nextToken?: string;
|
|
455
301
|
}
|
|
456
|
-
|
|
457
302
|
export interface PutRuleGroupsNamespaceRequest {
|
|
458
303
|
workspaceId: string | undefined;
|
|
459
|
-
|
|
460
304
|
name: string | undefined;
|
|
461
|
-
|
|
462
305
|
data: Uint8Array | undefined;
|
|
463
|
-
|
|
464
306
|
clientToken?: string;
|
|
465
307
|
}
|
|
466
|
-
|
|
467
308
|
export interface PutRuleGroupsNamespaceResponse {
|
|
468
309
|
name: string | undefined;
|
|
469
|
-
|
|
470
310
|
arn: string | undefined;
|
|
471
|
-
|
|
472
311
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
473
|
-
|
|
474
312
|
tags?: Record<string, string>;
|
|
475
313
|
}
|
|
476
|
-
|
|
477
314
|
export interface UpdateWorkspaceAliasRequest {
|
|
478
315
|
workspaceId: string | undefined;
|
|
479
|
-
|
|
480
316
|
alias?: string;
|
|
481
|
-
|
|
482
317
|
clientToken?: string;
|
|
483
318
|
}
|
|
484
|
-
|
|
485
319
|
export declare const CreateAlertManagerDefinitionRequestFilterSensitiveLog: (
|
|
486
320
|
obj: CreateAlertManagerDefinitionRequest
|
|
487
321
|
) => any;
|
|
488
|
-
|
|
489
322
|
export declare const AlertManagerDefinitionStatusFilterSensitiveLog: (
|
|
490
323
|
obj: AlertManagerDefinitionStatus
|
|
491
324
|
) => any;
|
|
492
|
-
|
|
493
325
|
export declare const CreateAlertManagerDefinitionResponseFilterSensitiveLog: (
|
|
494
326
|
obj: CreateAlertManagerDefinitionResponse
|
|
495
327
|
) => any;
|
|
496
|
-
|
|
497
328
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
498
329
|
obj: ValidationExceptionField
|
|
499
330
|
) => any;
|
|
500
|
-
|
|
501
331
|
export declare const DeleteAlertManagerDefinitionRequestFilterSensitiveLog: (
|
|
502
332
|
obj: DeleteAlertManagerDefinitionRequest
|
|
503
333
|
) => any;
|
|
504
|
-
|
|
505
334
|
export declare const DescribeAlertManagerDefinitionRequestFilterSensitiveLog: (
|
|
506
335
|
obj: DescribeAlertManagerDefinitionRequest
|
|
507
336
|
) => any;
|
|
508
|
-
|
|
509
337
|
export declare const AlertManagerDefinitionDescriptionFilterSensitiveLog: (
|
|
510
338
|
obj: AlertManagerDefinitionDescription
|
|
511
339
|
) => any;
|
|
512
|
-
|
|
513
340
|
export declare const DescribeAlertManagerDefinitionResponseFilterSensitiveLog: (
|
|
514
341
|
obj: DescribeAlertManagerDefinitionResponse
|
|
515
342
|
) => any;
|
|
516
|
-
|
|
517
343
|
export declare const PutAlertManagerDefinitionRequestFilterSensitiveLog: (
|
|
518
344
|
obj: PutAlertManagerDefinitionRequest
|
|
519
345
|
) => any;
|
|
520
|
-
|
|
521
346
|
export declare const PutAlertManagerDefinitionResponseFilterSensitiveLog: (
|
|
522
347
|
obj: PutAlertManagerDefinitionResponse
|
|
523
348
|
) => any;
|
|
524
|
-
|
|
525
349
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
526
350
|
obj: ListTagsForResourceRequest
|
|
527
351
|
) => any;
|
|
528
|
-
|
|
529
352
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
530
353
|
obj: ListTagsForResourceResponse
|
|
531
354
|
) => any;
|
|
532
|
-
|
|
533
355
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
534
356
|
obj: TagResourceRequest
|
|
535
357
|
) => any;
|
|
536
|
-
|
|
537
358
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
538
359
|
obj: TagResourceResponse
|
|
539
360
|
) => any;
|
|
540
|
-
|
|
541
361
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
542
362
|
obj: UntagResourceRequest
|
|
543
363
|
) => any;
|
|
544
|
-
|
|
545
364
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
546
365
|
obj: UntagResourceResponse
|
|
547
366
|
) => any;
|
|
548
|
-
|
|
549
367
|
export declare const CreateWorkspaceRequestFilterSensitiveLog: (
|
|
550
368
|
obj: CreateWorkspaceRequest
|
|
551
369
|
) => any;
|
|
552
|
-
|
|
553
370
|
export declare const WorkspaceStatusFilterSensitiveLog: (
|
|
554
371
|
obj: WorkspaceStatus
|
|
555
372
|
) => any;
|
|
556
|
-
|
|
557
373
|
export declare const CreateWorkspaceResponseFilterSensitiveLog: (
|
|
558
374
|
obj: CreateWorkspaceResponse
|
|
559
375
|
) => any;
|
|
560
|
-
|
|
561
376
|
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
|
|
562
377
|
obj: DeleteWorkspaceRequest
|
|
563
378
|
) => any;
|
|
564
|
-
|
|
565
379
|
export declare const DescribeWorkspaceRequestFilterSensitiveLog: (
|
|
566
380
|
obj: DescribeWorkspaceRequest
|
|
567
381
|
) => any;
|
|
568
|
-
|
|
569
382
|
export declare const WorkspaceDescriptionFilterSensitiveLog: (
|
|
570
383
|
obj: WorkspaceDescription
|
|
571
384
|
) => any;
|
|
572
|
-
|
|
573
385
|
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (
|
|
574
386
|
obj: DescribeWorkspaceResponse
|
|
575
387
|
) => any;
|
|
576
|
-
|
|
577
388
|
export declare const ListWorkspacesRequestFilterSensitiveLog: (
|
|
578
389
|
obj: ListWorkspacesRequest
|
|
579
390
|
) => any;
|
|
580
|
-
|
|
581
391
|
export declare const WorkspaceSummaryFilterSensitiveLog: (
|
|
582
392
|
obj: WorkspaceSummary
|
|
583
393
|
) => any;
|
|
584
|
-
|
|
585
394
|
export declare const ListWorkspacesResponseFilterSensitiveLog: (
|
|
586
395
|
obj: ListWorkspacesResponse
|
|
587
396
|
) => any;
|
|
588
|
-
|
|
589
397
|
export declare const CreateLoggingConfigurationRequestFilterSensitiveLog: (
|
|
590
398
|
obj: CreateLoggingConfigurationRequest
|
|
591
399
|
) => any;
|
|
592
|
-
|
|
593
400
|
export declare const LoggingConfigurationStatusFilterSensitiveLog: (
|
|
594
401
|
obj: LoggingConfigurationStatus
|
|
595
402
|
) => any;
|
|
596
|
-
|
|
597
403
|
export declare const CreateLoggingConfigurationResponseFilterSensitiveLog: (
|
|
598
404
|
obj: CreateLoggingConfigurationResponse
|
|
599
405
|
) => any;
|
|
600
|
-
|
|
601
406
|
export declare const DeleteLoggingConfigurationRequestFilterSensitiveLog: (
|
|
602
407
|
obj: DeleteLoggingConfigurationRequest
|
|
603
408
|
) => any;
|
|
604
|
-
|
|
605
409
|
export declare const DescribeLoggingConfigurationRequestFilterSensitiveLog: (
|
|
606
410
|
obj: DescribeLoggingConfigurationRequest
|
|
607
411
|
) => any;
|
|
608
|
-
|
|
609
412
|
export declare const LoggingConfigurationMetadataFilterSensitiveLog: (
|
|
610
413
|
obj: LoggingConfigurationMetadata
|
|
611
414
|
) => any;
|
|
612
|
-
|
|
613
415
|
export declare const DescribeLoggingConfigurationResponseFilterSensitiveLog: (
|
|
614
416
|
obj: DescribeLoggingConfigurationResponse
|
|
615
417
|
) => any;
|
|
616
|
-
|
|
617
418
|
export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (
|
|
618
419
|
obj: UpdateLoggingConfigurationRequest
|
|
619
420
|
) => any;
|
|
620
|
-
|
|
621
421
|
export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (
|
|
622
422
|
obj: UpdateLoggingConfigurationResponse
|
|
623
423
|
) => any;
|
|
624
|
-
|
|
625
424
|
export declare const CreateRuleGroupsNamespaceRequestFilterSensitiveLog: (
|
|
626
425
|
obj: CreateRuleGroupsNamespaceRequest
|
|
627
426
|
) => any;
|
|
628
|
-
|
|
629
427
|
export declare const RuleGroupsNamespaceStatusFilterSensitiveLog: (
|
|
630
428
|
obj: RuleGroupsNamespaceStatus
|
|
631
429
|
) => any;
|
|
632
|
-
|
|
633
430
|
export declare const CreateRuleGroupsNamespaceResponseFilterSensitiveLog: (
|
|
634
431
|
obj: CreateRuleGroupsNamespaceResponse
|
|
635
432
|
) => any;
|
|
636
|
-
|
|
637
433
|
export declare const DeleteRuleGroupsNamespaceRequestFilterSensitiveLog: (
|
|
638
434
|
obj: DeleteRuleGroupsNamespaceRequest
|
|
639
435
|
) => any;
|
|
640
|
-
|
|
641
436
|
export declare const DescribeRuleGroupsNamespaceRequestFilterSensitiveLog: (
|
|
642
437
|
obj: DescribeRuleGroupsNamespaceRequest
|
|
643
438
|
) => any;
|
|
644
|
-
|
|
645
439
|
export declare const RuleGroupsNamespaceDescriptionFilterSensitiveLog: (
|
|
646
440
|
obj: RuleGroupsNamespaceDescription
|
|
647
441
|
) => any;
|
|
648
|
-
|
|
649
442
|
export declare const DescribeRuleGroupsNamespaceResponseFilterSensitiveLog: (
|
|
650
443
|
obj: DescribeRuleGroupsNamespaceResponse
|
|
651
444
|
) => any;
|
|
652
|
-
|
|
653
445
|
export declare const ListRuleGroupsNamespacesRequestFilterSensitiveLog: (
|
|
654
446
|
obj: ListRuleGroupsNamespacesRequest
|
|
655
447
|
) => any;
|
|
656
|
-
|
|
657
448
|
export declare const RuleGroupsNamespaceSummaryFilterSensitiveLog: (
|
|
658
449
|
obj: RuleGroupsNamespaceSummary
|
|
659
450
|
) => any;
|
|
660
|
-
|
|
661
451
|
export declare const ListRuleGroupsNamespacesResponseFilterSensitiveLog: (
|
|
662
452
|
obj: ListRuleGroupsNamespacesResponse
|
|
663
453
|
) => any;
|
|
664
|
-
|
|
665
454
|
export declare const PutRuleGroupsNamespaceRequestFilterSensitiveLog: (
|
|
666
455
|
obj: PutRuleGroupsNamespaceRequest
|
|
667
456
|
) => any;
|
|
668
|
-
|
|
669
457
|
export declare const PutRuleGroupsNamespaceResponseFilterSensitiveLog: (
|
|
670
458
|
obj: PutRuleGroupsNamespaceResponse
|
|
671
459
|
) => any;
|
|
672
|
-
|
|
673
460
|
export declare const UpdateWorkspaceAliasRequestFilterSensitiveLog: (
|
|
674
461
|
obj: UpdateWorkspaceAliasRequest
|
|
675
462
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: AmpClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: AmpClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
2
|
import { AmpClient } from "../AmpClient";
|
|
3
3
|
import { DescribeWorkspaceCommandInput } from "../commands/DescribeWorkspaceCommand";
|
|
4
|
-
|
|
5
4
|
export declare const waitForWorkspaceActive: (
|
|
6
5
|
params: WaiterConfiguration<AmpClient>,
|
|
7
6
|
input: DescribeWorkspaceCommandInput
|
|
8
7
|
) => Promise<WaiterResult>;
|
|
9
|
-
|
|
10
8
|
export declare const waitUntilWorkspaceActive: (
|
|
11
9
|
params: WaiterConfiguration<AmpClient>,
|
|
12
10
|
input: DescribeWorkspaceCommandInput
|