@aws-sdk/client-amp 3.296.0 → 3.298.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/dist-cjs/commands/CreateAlertManagerDefinitionCommand.js +2 -3
- package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/CreateRuleGroupsNamespaceCommand.js +2 -3
- package/dist-cjs/commands/CreateWorkspaceCommand.js +2 -3
- package/dist-cjs/commands/DeleteAlertManagerDefinitionCommand.js +2 -3
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DeleteRuleGroupsNamespaceCommand.js +2 -3
- package/dist-cjs/commands/DeleteWorkspaceCommand.js +2 -3
- package/dist-cjs/commands/DescribeAlertManagerDefinitionCommand.js +2 -3
- package/dist-cjs/commands/DescribeLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DescribeRuleGroupsNamespaceCommand.js +2 -3
- package/dist-cjs/commands/DescribeWorkspaceCommand.js +2 -3
- package/dist-cjs/commands/ListRuleGroupsNamespacesCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListWorkspacesCommand.js +2 -3
- package/dist-cjs/commands/PutAlertManagerDefinitionCommand.js +2 -3
- package/dist-cjs/commands/PutRuleGroupsNamespaceCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/UpdateWorkspaceAliasCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -194
- package/dist-es/commands/CreateAlertManagerDefinitionCommand.js +2 -3
- package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/CreateRuleGroupsNamespaceCommand.js +2 -3
- package/dist-es/commands/CreateWorkspaceCommand.js +2 -3
- package/dist-es/commands/DeleteAlertManagerDefinitionCommand.js +2 -3
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/DeleteRuleGroupsNamespaceCommand.js +2 -3
- package/dist-es/commands/DeleteWorkspaceCommand.js +2 -3
- package/dist-es/commands/DescribeAlertManagerDefinitionCommand.js +2 -3
- package/dist-es/commands/DescribeLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/DescribeRuleGroupsNamespaceCommand.js +2 -3
- package/dist-es/commands/DescribeWorkspaceCommand.js +2 -3
- package/dist-es/commands/ListRuleGroupsNamespacesCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListWorkspacesCommand.js +2 -3
- package/dist-es/commands/PutAlertManagerDefinitionCommand.js +2 -3
- package/dist-es/commands/PutRuleGroupsNamespaceCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/UpdateWorkspaceAliasCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -144
- package/dist-types/Amp.d.ts +22 -0
- package/dist-types/AmpClient.d.ts +24 -4
- package/dist-types/commands/CreateAlertManagerDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleGroupsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAlertManagerDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleGroupsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAlertManagerDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleGroupsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/ListRuleGroupsNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +16 -0
- package/dist-types/commands/PutAlertManagerDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/PutRuleGroupsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceAliasCommand.d.ts +16 -0
- package/dist-types/models/AmpServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +82 -192
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListRuleGroupsNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -144
- package/package.json +4 -3
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from Amp service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class AmpServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AmpServiceException as __BaseException } from "./AmpServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* User does not have sufficient access to perform this action.
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* Updating or deleting a resource can cause an inconsistent state.
|
|
16
18
|
*/
|
|
17
19
|
export declare class ConflictException extends __BaseException {
|
|
@@ -31,6 +33,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
31
33
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
32
34
|
}
|
|
33
35
|
/**
|
|
36
|
+
* @public
|
|
34
37
|
* Represents the input of a CreateAlertManagerDefinition operation.
|
|
35
38
|
*/
|
|
36
39
|
export interface CreateAlertManagerDefinitionRequest {
|
|
@@ -47,6 +50,9 @@ export interface CreateAlertManagerDefinitionRequest {
|
|
|
47
50
|
*/
|
|
48
51
|
clientToken?: string;
|
|
49
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
50
56
|
export declare enum AlertManagerDefinitionStatusCode {
|
|
51
57
|
/**
|
|
52
58
|
* Definition has been created/updated. Update/Deletion is disallowed until definition is ACTIVE and workspace status is ACTIVE.
|
|
@@ -74,6 +80,7 @@ export declare enum AlertManagerDefinitionStatusCode {
|
|
|
74
80
|
UPDATING = "UPDATING"
|
|
75
81
|
}
|
|
76
82
|
/**
|
|
83
|
+
* @public
|
|
77
84
|
* Represents the status of a definition.
|
|
78
85
|
*/
|
|
79
86
|
export interface AlertManagerDefinitionStatus {
|
|
@@ -87,6 +94,7 @@ export interface AlertManagerDefinitionStatus {
|
|
|
87
94
|
statusReason?: string;
|
|
88
95
|
}
|
|
89
96
|
/**
|
|
97
|
+
* @public
|
|
90
98
|
* Represents the output of a CreateAlertManagerDefinition operation.
|
|
91
99
|
*/
|
|
92
100
|
export interface CreateAlertManagerDefinitionResponse {
|
|
@@ -96,6 +104,7 @@ export interface CreateAlertManagerDefinitionResponse {
|
|
|
96
104
|
status: AlertManagerDefinitionStatus | undefined;
|
|
97
105
|
}
|
|
98
106
|
/**
|
|
107
|
+
* @public
|
|
99
108
|
* Unexpected error during processing of request.
|
|
100
109
|
*/
|
|
101
110
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -112,6 +121,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
112
121
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
113
122
|
}
|
|
114
123
|
/**
|
|
124
|
+
* @public
|
|
115
125
|
* Request references a resource which does not exist.
|
|
116
126
|
*/
|
|
117
127
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -131,6 +141,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
131
141
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
132
142
|
}
|
|
133
143
|
/**
|
|
144
|
+
* @public
|
|
134
145
|
* Request would cause a service quota to be exceeded.
|
|
135
146
|
*/
|
|
136
147
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -158,6 +169,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
158
169
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
159
170
|
}
|
|
160
171
|
/**
|
|
172
|
+
* @public
|
|
161
173
|
* Request was denied due to request throttling.
|
|
162
174
|
*/
|
|
163
175
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -182,6 +194,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
182
194
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
183
195
|
}
|
|
184
196
|
/**
|
|
197
|
+
* @public
|
|
185
198
|
* Stores information about a field passed inside a request that resulted in an exception.
|
|
186
199
|
*/
|
|
187
200
|
export interface ValidationExceptionField {
|
|
@@ -194,6 +207,9 @@ export interface ValidationExceptionField {
|
|
|
194
207
|
*/
|
|
195
208
|
message: string | undefined;
|
|
196
209
|
}
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
197
213
|
export declare enum ValidationExceptionReason {
|
|
198
214
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
199
215
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
@@ -201,6 +217,7 @@ export declare enum ValidationExceptionReason {
|
|
|
201
217
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
|
|
202
218
|
}
|
|
203
219
|
/**
|
|
220
|
+
* @public
|
|
204
221
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
205
222
|
*/
|
|
206
223
|
export declare class ValidationException extends __BaseException {
|
|
@@ -220,6 +237,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
220
237
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
221
238
|
}
|
|
222
239
|
/**
|
|
240
|
+
* @public
|
|
223
241
|
* Represents the input of a DeleteAlertManagerDefinition operation.
|
|
224
242
|
*/
|
|
225
243
|
export interface DeleteAlertManagerDefinitionRequest {
|
|
@@ -233,6 +251,7 @@ export interface DeleteAlertManagerDefinitionRequest {
|
|
|
233
251
|
clientToken?: string;
|
|
234
252
|
}
|
|
235
253
|
/**
|
|
254
|
+
* @public
|
|
236
255
|
* Represents the input of a DescribeAlertManagerDefinition operation.
|
|
237
256
|
*/
|
|
238
257
|
export interface DescribeAlertManagerDefinitionRequest {
|
|
@@ -242,6 +261,7 @@ export interface DescribeAlertManagerDefinitionRequest {
|
|
|
242
261
|
workspaceId: string | undefined;
|
|
243
262
|
}
|
|
244
263
|
/**
|
|
264
|
+
* @public
|
|
245
265
|
* Represents the properties of an alert manager definition.
|
|
246
266
|
*/
|
|
247
267
|
export interface AlertManagerDefinitionDescription {
|
|
@@ -263,6 +283,7 @@ export interface AlertManagerDefinitionDescription {
|
|
|
263
283
|
modifiedAt: Date | undefined;
|
|
264
284
|
}
|
|
265
285
|
/**
|
|
286
|
+
* @public
|
|
266
287
|
* Represents the output of a DescribeAlertManagerDefinition operation.
|
|
267
288
|
*/
|
|
268
289
|
export interface DescribeAlertManagerDefinitionResponse {
|
|
@@ -272,6 +293,7 @@ export interface DescribeAlertManagerDefinitionResponse {
|
|
|
272
293
|
alertManagerDefinition: AlertManagerDefinitionDescription | undefined;
|
|
273
294
|
}
|
|
274
295
|
/**
|
|
296
|
+
* @public
|
|
275
297
|
* Represents the input of a PutAlertManagerDefinition operation.
|
|
276
298
|
*/
|
|
277
299
|
export interface PutAlertManagerDefinitionRequest {
|
|
@@ -289,6 +311,7 @@ export interface PutAlertManagerDefinitionRequest {
|
|
|
289
311
|
clientToken?: string;
|
|
290
312
|
}
|
|
291
313
|
/**
|
|
314
|
+
* @public
|
|
292
315
|
* Represents the output of a PutAlertManagerDefinition operation.
|
|
293
316
|
*/
|
|
294
317
|
export interface PutAlertManagerDefinitionResponse {
|
|
@@ -297,18 +320,27 @@ export interface PutAlertManagerDefinitionResponse {
|
|
|
297
320
|
*/
|
|
298
321
|
status: AlertManagerDefinitionStatus | undefined;
|
|
299
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
300
326
|
export interface ListTagsForResourceRequest {
|
|
301
327
|
/**
|
|
302
328
|
* The ARN of the resource.
|
|
303
329
|
*/
|
|
304
330
|
resourceArn: string | undefined;
|
|
305
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
306
335
|
export interface ListTagsForResourceResponse {
|
|
307
336
|
/**
|
|
308
337
|
* The list of tags assigned to the resource.
|
|
309
338
|
*/
|
|
310
339
|
tags?: Record<string, string>;
|
|
311
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
312
344
|
export interface TagResourceRequest {
|
|
313
345
|
/**
|
|
314
346
|
* The ARN of the resource.
|
|
@@ -319,8 +351,14 @@ export interface TagResourceRequest {
|
|
|
319
351
|
*/
|
|
320
352
|
tags: Record<string, string> | undefined;
|
|
321
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
322
357
|
export interface TagResourceResponse {
|
|
323
358
|
}
|
|
359
|
+
/**
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
324
362
|
export interface UntagResourceRequest {
|
|
325
363
|
/**
|
|
326
364
|
* The ARN of the resource.
|
|
@@ -331,9 +369,13 @@ export interface UntagResourceRequest {
|
|
|
331
369
|
*/
|
|
332
370
|
tagKeys: string[] | undefined;
|
|
333
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
334
375
|
export interface UntagResourceResponse {
|
|
335
376
|
}
|
|
336
377
|
/**
|
|
378
|
+
* @public
|
|
337
379
|
* Represents the input of a CreateWorkspace operation.
|
|
338
380
|
*/
|
|
339
381
|
export interface CreateWorkspaceRequest {
|
|
@@ -350,6 +392,9 @@ export interface CreateWorkspaceRequest {
|
|
|
350
392
|
*/
|
|
351
393
|
tags?: Record<string, string>;
|
|
352
394
|
}
|
|
395
|
+
/**
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
353
398
|
export declare enum WorkspaceStatusCode {
|
|
354
399
|
/**
|
|
355
400
|
* Workspace has been created and is usable.
|
|
@@ -373,6 +418,7 @@ export declare enum WorkspaceStatusCode {
|
|
|
373
418
|
UPDATING = "UPDATING"
|
|
374
419
|
}
|
|
375
420
|
/**
|
|
421
|
+
* @public
|
|
376
422
|
* Represents the status of a workspace.
|
|
377
423
|
*/
|
|
378
424
|
export interface WorkspaceStatus {
|
|
@@ -382,6 +428,7 @@ export interface WorkspaceStatus {
|
|
|
382
428
|
statusCode: WorkspaceStatusCode | string | undefined;
|
|
383
429
|
}
|
|
384
430
|
/**
|
|
431
|
+
* @public
|
|
385
432
|
* Represents the output of a CreateWorkspace operation.
|
|
386
433
|
*/
|
|
387
434
|
export interface CreateWorkspaceResponse {
|
|
@@ -403,6 +450,7 @@ export interface CreateWorkspaceResponse {
|
|
|
403
450
|
tags?: Record<string, string>;
|
|
404
451
|
}
|
|
405
452
|
/**
|
|
453
|
+
* @public
|
|
406
454
|
* Represents the input of a DeleteWorkspace operation.
|
|
407
455
|
*/
|
|
408
456
|
export interface DeleteWorkspaceRequest {
|
|
@@ -416,6 +464,7 @@ export interface DeleteWorkspaceRequest {
|
|
|
416
464
|
clientToken?: string;
|
|
417
465
|
}
|
|
418
466
|
/**
|
|
467
|
+
* @public
|
|
419
468
|
* Represents the input of a DescribeWorkspace operation.
|
|
420
469
|
*/
|
|
421
470
|
export interface DescribeWorkspaceRequest {
|
|
@@ -425,6 +474,7 @@ export interface DescribeWorkspaceRequest {
|
|
|
425
474
|
workspaceId: string | undefined;
|
|
426
475
|
}
|
|
427
476
|
/**
|
|
477
|
+
* @public
|
|
428
478
|
* Represents the properties of a workspace.
|
|
429
479
|
*/
|
|
430
480
|
export interface WorkspaceDescription {
|
|
@@ -458,6 +508,7 @@ export interface WorkspaceDescription {
|
|
|
458
508
|
tags?: Record<string, string>;
|
|
459
509
|
}
|
|
460
510
|
/**
|
|
511
|
+
* @public
|
|
461
512
|
* Represents the output of a DescribeWorkspace operation.
|
|
462
513
|
*/
|
|
463
514
|
export interface DescribeWorkspaceResponse {
|
|
@@ -467,6 +518,7 @@ export interface DescribeWorkspaceResponse {
|
|
|
467
518
|
workspace: WorkspaceDescription | undefined;
|
|
468
519
|
}
|
|
469
520
|
/**
|
|
521
|
+
* @public
|
|
470
522
|
* Represents the input of a ListWorkspaces operation.
|
|
471
523
|
*/
|
|
472
524
|
export interface ListWorkspacesRequest {
|
|
@@ -484,6 +536,7 @@ export interface ListWorkspacesRequest {
|
|
|
484
536
|
maxResults?: number;
|
|
485
537
|
}
|
|
486
538
|
/**
|
|
539
|
+
* @public
|
|
487
540
|
* Represents a summary of the properties of a workspace.
|
|
488
541
|
*/
|
|
489
542
|
export interface WorkspaceSummary {
|
|
@@ -513,6 +566,7 @@ export interface WorkspaceSummary {
|
|
|
513
566
|
tags?: Record<string, string>;
|
|
514
567
|
}
|
|
515
568
|
/**
|
|
569
|
+
* @public
|
|
516
570
|
* Represents the output of a ListWorkspaces operation.
|
|
517
571
|
*/
|
|
518
572
|
export interface ListWorkspacesResponse {
|
|
@@ -526,6 +580,7 @@ export interface ListWorkspacesResponse {
|
|
|
526
580
|
nextToken?: string;
|
|
527
581
|
}
|
|
528
582
|
/**
|
|
583
|
+
* @public
|
|
529
584
|
* Represents the input of a CreateLoggingConfiguration operation.
|
|
530
585
|
*/
|
|
531
586
|
export interface CreateLoggingConfigurationRequest {
|
|
@@ -542,6 +597,9 @@ export interface CreateLoggingConfigurationRequest {
|
|
|
542
597
|
*/
|
|
543
598
|
clientToken?: string;
|
|
544
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* @public
|
|
602
|
+
*/
|
|
545
603
|
export declare enum LoggingConfigurationStatusCode {
|
|
546
604
|
/**
|
|
547
605
|
* Logging configuration has been created/updated. Update/Deletion is disallowed until logging configuration is ACTIVE and workspace status is ACTIVE.
|
|
@@ -569,6 +627,7 @@ export declare enum LoggingConfigurationStatusCode {
|
|
|
569
627
|
UPDATING = "UPDATING"
|
|
570
628
|
}
|
|
571
629
|
/**
|
|
630
|
+
* @public
|
|
572
631
|
* Represents the status of a logging configuration.
|
|
573
632
|
*/
|
|
574
633
|
export interface LoggingConfigurationStatus {
|
|
@@ -582,6 +641,7 @@ export interface LoggingConfigurationStatus {
|
|
|
582
641
|
statusReason?: string;
|
|
583
642
|
}
|
|
584
643
|
/**
|
|
644
|
+
* @public
|
|
585
645
|
* Represents the output of a CreateLoggingConfiguration operation.
|
|
586
646
|
*/
|
|
587
647
|
export interface CreateLoggingConfigurationResponse {
|
|
@@ -591,6 +651,7 @@ export interface CreateLoggingConfigurationResponse {
|
|
|
591
651
|
status: LoggingConfigurationStatus | undefined;
|
|
592
652
|
}
|
|
593
653
|
/**
|
|
654
|
+
* @public
|
|
594
655
|
* Represents the input of a DeleteLoggingConfiguration operation.
|
|
595
656
|
*/
|
|
596
657
|
export interface DeleteLoggingConfigurationRequest {
|
|
@@ -604,6 +665,7 @@ export interface DeleteLoggingConfigurationRequest {
|
|
|
604
665
|
clientToken?: string;
|
|
605
666
|
}
|
|
606
667
|
/**
|
|
668
|
+
* @public
|
|
607
669
|
* Represents the input of a DescribeLoggingConfiguration operation.
|
|
608
670
|
*/
|
|
609
671
|
export interface DescribeLoggingConfigurationRequest {
|
|
@@ -613,6 +675,7 @@ export interface DescribeLoggingConfigurationRequest {
|
|
|
613
675
|
workspaceId: string | undefined;
|
|
614
676
|
}
|
|
615
677
|
/**
|
|
678
|
+
* @public
|
|
616
679
|
* Represents the properties of a logging configuration metadata.
|
|
617
680
|
*/
|
|
618
681
|
export interface LoggingConfigurationMetadata {
|
|
@@ -638,6 +701,7 @@ export interface LoggingConfigurationMetadata {
|
|
|
638
701
|
modifiedAt: Date | undefined;
|
|
639
702
|
}
|
|
640
703
|
/**
|
|
704
|
+
* @public
|
|
641
705
|
* Represents the output of a DescribeLoggingConfiguration operation.
|
|
642
706
|
*/
|
|
643
707
|
export interface DescribeLoggingConfigurationResponse {
|
|
@@ -647,6 +711,7 @@ export interface DescribeLoggingConfigurationResponse {
|
|
|
647
711
|
loggingConfiguration: LoggingConfigurationMetadata | undefined;
|
|
648
712
|
}
|
|
649
713
|
/**
|
|
714
|
+
* @public
|
|
650
715
|
* Represents the input of an UpdateLoggingConfiguration operation.
|
|
651
716
|
*/
|
|
652
717
|
export interface UpdateLoggingConfigurationRequest {
|
|
@@ -664,6 +729,7 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
664
729
|
clientToken?: string;
|
|
665
730
|
}
|
|
666
731
|
/**
|
|
732
|
+
* @public
|
|
667
733
|
* Represents the output of an UpdateLoggingConfiguration operation.
|
|
668
734
|
*/
|
|
669
735
|
export interface UpdateLoggingConfigurationResponse {
|
|
@@ -673,6 +739,7 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
673
739
|
status: LoggingConfigurationStatus | undefined;
|
|
674
740
|
}
|
|
675
741
|
/**
|
|
742
|
+
* @public
|
|
676
743
|
* Represents the input of a CreateRuleGroupsNamespace operation.
|
|
677
744
|
*/
|
|
678
745
|
export interface CreateRuleGroupsNamespaceRequest {
|
|
@@ -697,6 +764,9 @@ export interface CreateRuleGroupsNamespaceRequest {
|
|
|
697
764
|
*/
|
|
698
765
|
tags?: Record<string, string>;
|
|
699
766
|
}
|
|
767
|
+
/**
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
700
770
|
export declare enum RuleGroupsNamespaceStatusCode {
|
|
701
771
|
/**
|
|
702
772
|
* Namespace has been created/updated. Update/Deletion is disallowed until namespace is ACTIVE and workspace status is ACTIVE.
|
|
@@ -724,6 +794,7 @@ export declare enum RuleGroupsNamespaceStatusCode {
|
|
|
724
794
|
UPDATING = "UPDATING"
|
|
725
795
|
}
|
|
726
796
|
/**
|
|
797
|
+
* @public
|
|
727
798
|
* Represents the status of a namespace.
|
|
728
799
|
*/
|
|
729
800
|
export interface RuleGroupsNamespaceStatus {
|
|
@@ -737,6 +808,7 @@ export interface RuleGroupsNamespaceStatus {
|
|
|
737
808
|
statusReason?: string;
|
|
738
809
|
}
|
|
739
810
|
/**
|
|
811
|
+
* @public
|
|
740
812
|
* Represents the output of a CreateRuleGroupsNamespace operation.
|
|
741
813
|
*/
|
|
742
814
|
export interface CreateRuleGroupsNamespaceResponse {
|
|
@@ -758,6 +830,7 @@ export interface CreateRuleGroupsNamespaceResponse {
|
|
|
758
830
|
tags?: Record<string, string>;
|
|
759
831
|
}
|
|
760
832
|
/**
|
|
833
|
+
* @public
|
|
761
834
|
* Represents the input of a DeleteRuleGroupsNamespace operation.
|
|
762
835
|
*/
|
|
763
836
|
export interface DeleteRuleGroupsNamespaceRequest {
|
|
@@ -775,6 +848,7 @@ export interface DeleteRuleGroupsNamespaceRequest {
|
|
|
775
848
|
clientToken?: string;
|
|
776
849
|
}
|
|
777
850
|
/**
|
|
851
|
+
* @public
|
|
778
852
|
* Represents the input of a DescribeRuleGroupsNamespace operation.
|
|
779
853
|
*/
|
|
780
854
|
export interface DescribeRuleGroupsNamespaceRequest {
|
|
@@ -788,6 +862,7 @@ export interface DescribeRuleGroupsNamespaceRequest {
|
|
|
788
862
|
name: string | undefined;
|
|
789
863
|
}
|
|
790
864
|
/**
|
|
865
|
+
* @public
|
|
791
866
|
* Represents a description of the rule groups namespace.
|
|
792
867
|
*/
|
|
793
868
|
export interface RuleGroupsNamespaceDescription {
|
|
@@ -821,6 +896,7 @@ export interface RuleGroupsNamespaceDescription {
|
|
|
821
896
|
tags?: Record<string, string>;
|
|
822
897
|
}
|
|
823
898
|
/**
|
|
899
|
+
* @public
|
|
824
900
|
* Represents the output of a DescribeRuleGroupsNamespace operation.
|
|
825
901
|
*/
|
|
826
902
|
export interface DescribeRuleGroupsNamespaceResponse {
|
|
@@ -830,6 +906,7 @@ export interface DescribeRuleGroupsNamespaceResponse {
|
|
|
830
906
|
ruleGroupsNamespace: RuleGroupsNamespaceDescription | undefined;
|
|
831
907
|
}
|
|
832
908
|
/**
|
|
909
|
+
* @public
|
|
833
910
|
* Represents the input of a ListRuleGroupsNamespaces operation.
|
|
834
911
|
*/
|
|
835
912
|
export interface ListRuleGroupsNamespacesRequest {
|
|
@@ -851,6 +928,7 @@ export interface ListRuleGroupsNamespacesRequest {
|
|
|
851
928
|
maxResults?: number;
|
|
852
929
|
}
|
|
853
930
|
/**
|
|
931
|
+
* @public
|
|
854
932
|
* Represents a summary of the rule groups namespace.
|
|
855
933
|
*/
|
|
856
934
|
export interface RuleGroupsNamespaceSummary {
|
|
@@ -880,6 +958,7 @@ export interface RuleGroupsNamespaceSummary {
|
|
|
880
958
|
tags?: Record<string, string>;
|
|
881
959
|
}
|
|
882
960
|
/**
|
|
961
|
+
* @public
|
|
883
962
|
* Represents the output of a ListRuleGroupsNamespaces operation.
|
|
884
963
|
*/
|
|
885
964
|
export interface ListRuleGroupsNamespacesResponse {
|
|
@@ -893,6 +972,7 @@ export interface ListRuleGroupsNamespacesResponse {
|
|
|
893
972
|
nextToken?: string;
|
|
894
973
|
}
|
|
895
974
|
/**
|
|
975
|
+
* @public
|
|
896
976
|
* Represents the input of a PutRuleGroupsNamespace operation.
|
|
897
977
|
*/
|
|
898
978
|
export interface PutRuleGroupsNamespaceRequest {
|
|
@@ -914,6 +994,7 @@ export interface PutRuleGroupsNamespaceRequest {
|
|
|
914
994
|
clientToken?: string;
|
|
915
995
|
}
|
|
916
996
|
/**
|
|
997
|
+
* @public
|
|
917
998
|
* Represents the output of a PutRuleGroupsNamespace operation.
|
|
918
999
|
*/
|
|
919
1000
|
export interface PutRuleGroupsNamespaceResponse {
|
|
@@ -935,6 +1016,7 @@ export interface PutRuleGroupsNamespaceResponse {
|
|
|
935
1016
|
tags?: Record<string, string>;
|
|
936
1017
|
}
|
|
937
1018
|
/**
|
|
1019
|
+
* @public
|
|
938
1020
|
* Represents the input of an UpdateWorkspaceAlias operation.
|
|
939
1021
|
*/
|
|
940
1022
|
export interface UpdateWorkspaceAliasRequest {
|
|
@@ -951,195 +1033,3 @@ export interface UpdateWorkspaceAliasRequest {
|
|
|
951
1033
|
*/
|
|
952
1034
|
clientToken?: string;
|
|
953
1035
|
}
|
|
954
|
-
/**
|
|
955
|
-
* @internal
|
|
956
|
-
*/
|
|
957
|
-
export declare const CreateAlertManagerDefinitionRequestFilterSensitiveLog: (obj: CreateAlertManagerDefinitionRequest) => any;
|
|
958
|
-
/**
|
|
959
|
-
* @internal
|
|
960
|
-
*/
|
|
961
|
-
export declare const AlertManagerDefinitionStatusFilterSensitiveLog: (obj: AlertManagerDefinitionStatus) => any;
|
|
962
|
-
/**
|
|
963
|
-
* @internal
|
|
964
|
-
*/
|
|
965
|
-
export declare const CreateAlertManagerDefinitionResponseFilterSensitiveLog: (obj: CreateAlertManagerDefinitionResponse) => any;
|
|
966
|
-
/**
|
|
967
|
-
* @internal
|
|
968
|
-
*/
|
|
969
|
-
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
970
|
-
/**
|
|
971
|
-
* @internal
|
|
972
|
-
*/
|
|
973
|
-
export declare const DeleteAlertManagerDefinitionRequestFilterSensitiveLog: (obj: DeleteAlertManagerDefinitionRequest) => any;
|
|
974
|
-
/**
|
|
975
|
-
* @internal
|
|
976
|
-
*/
|
|
977
|
-
export declare const DescribeAlertManagerDefinitionRequestFilterSensitiveLog: (obj: DescribeAlertManagerDefinitionRequest) => any;
|
|
978
|
-
/**
|
|
979
|
-
* @internal
|
|
980
|
-
*/
|
|
981
|
-
export declare const AlertManagerDefinitionDescriptionFilterSensitiveLog: (obj: AlertManagerDefinitionDescription) => any;
|
|
982
|
-
/**
|
|
983
|
-
* @internal
|
|
984
|
-
*/
|
|
985
|
-
export declare const DescribeAlertManagerDefinitionResponseFilterSensitiveLog: (obj: DescribeAlertManagerDefinitionResponse) => any;
|
|
986
|
-
/**
|
|
987
|
-
* @internal
|
|
988
|
-
*/
|
|
989
|
-
export declare const PutAlertManagerDefinitionRequestFilterSensitiveLog: (obj: PutAlertManagerDefinitionRequest) => any;
|
|
990
|
-
/**
|
|
991
|
-
* @internal
|
|
992
|
-
*/
|
|
993
|
-
export declare const PutAlertManagerDefinitionResponseFilterSensitiveLog: (obj: PutAlertManagerDefinitionResponse) => any;
|
|
994
|
-
/**
|
|
995
|
-
* @internal
|
|
996
|
-
*/
|
|
997
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
998
|
-
/**
|
|
999
|
-
* @internal
|
|
1000
|
-
*/
|
|
1001
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1002
|
-
/**
|
|
1003
|
-
* @internal
|
|
1004
|
-
*/
|
|
1005
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1006
|
-
/**
|
|
1007
|
-
* @internal
|
|
1008
|
-
*/
|
|
1009
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1010
|
-
/**
|
|
1011
|
-
* @internal
|
|
1012
|
-
*/
|
|
1013
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1014
|
-
/**
|
|
1015
|
-
* @internal
|
|
1016
|
-
*/
|
|
1017
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1018
|
-
/**
|
|
1019
|
-
* @internal
|
|
1020
|
-
*/
|
|
1021
|
-
export declare const CreateWorkspaceRequestFilterSensitiveLog: (obj: CreateWorkspaceRequest) => any;
|
|
1022
|
-
/**
|
|
1023
|
-
* @internal
|
|
1024
|
-
*/
|
|
1025
|
-
export declare const WorkspaceStatusFilterSensitiveLog: (obj: WorkspaceStatus) => any;
|
|
1026
|
-
/**
|
|
1027
|
-
* @internal
|
|
1028
|
-
*/
|
|
1029
|
-
export declare const CreateWorkspaceResponseFilterSensitiveLog: (obj: CreateWorkspaceResponse) => any;
|
|
1030
|
-
/**
|
|
1031
|
-
* @internal
|
|
1032
|
-
*/
|
|
1033
|
-
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (obj: DeleteWorkspaceRequest) => any;
|
|
1034
|
-
/**
|
|
1035
|
-
* @internal
|
|
1036
|
-
*/
|
|
1037
|
-
export declare const DescribeWorkspaceRequestFilterSensitiveLog: (obj: DescribeWorkspaceRequest) => any;
|
|
1038
|
-
/**
|
|
1039
|
-
* @internal
|
|
1040
|
-
*/
|
|
1041
|
-
export declare const WorkspaceDescriptionFilterSensitiveLog: (obj: WorkspaceDescription) => any;
|
|
1042
|
-
/**
|
|
1043
|
-
* @internal
|
|
1044
|
-
*/
|
|
1045
|
-
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (obj: DescribeWorkspaceResponse) => any;
|
|
1046
|
-
/**
|
|
1047
|
-
* @internal
|
|
1048
|
-
*/
|
|
1049
|
-
export declare const ListWorkspacesRequestFilterSensitiveLog: (obj: ListWorkspacesRequest) => any;
|
|
1050
|
-
/**
|
|
1051
|
-
* @internal
|
|
1052
|
-
*/
|
|
1053
|
-
export declare const WorkspaceSummaryFilterSensitiveLog: (obj: WorkspaceSummary) => any;
|
|
1054
|
-
/**
|
|
1055
|
-
* @internal
|
|
1056
|
-
*/
|
|
1057
|
-
export declare const ListWorkspacesResponseFilterSensitiveLog: (obj: ListWorkspacesResponse) => any;
|
|
1058
|
-
/**
|
|
1059
|
-
* @internal
|
|
1060
|
-
*/
|
|
1061
|
-
export declare const CreateLoggingConfigurationRequestFilterSensitiveLog: (obj: CreateLoggingConfigurationRequest) => any;
|
|
1062
|
-
/**
|
|
1063
|
-
* @internal
|
|
1064
|
-
*/
|
|
1065
|
-
export declare const LoggingConfigurationStatusFilterSensitiveLog: (obj: LoggingConfigurationStatus) => any;
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
export declare const CreateLoggingConfigurationResponseFilterSensitiveLog: (obj: CreateLoggingConfigurationResponse) => any;
|
|
1070
|
-
/**
|
|
1071
|
-
* @internal
|
|
1072
|
-
*/
|
|
1073
|
-
export declare const DeleteLoggingConfigurationRequestFilterSensitiveLog: (obj: DeleteLoggingConfigurationRequest) => any;
|
|
1074
|
-
/**
|
|
1075
|
-
* @internal
|
|
1076
|
-
*/
|
|
1077
|
-
export declare const DescribeLoggingConfigurationRequestFilterSensitiveLog: (obj: DescribeLoggingConfigurationRequest) => any;
|
|
1078
|
-
/**
|
|
1079
|
-
* @internal
|
|
1080
|
-
*/
|
|
1081
|
-
export declare const LoggingConfigurationMetadataFilterSensitiveLog: (obj: LoggingConfigurationMetadata) => any;
|
|
1082
|
-
/**
|
|
1083
|
-
* @internal
|
|
1084
|
-
*/
|
|
1085
|
-
export declare const DescribeLoggingConfigurationResponseFilterSensitiveLog: (obj: DescribeLoggingConfigurationResponse) => any;
|
|
1086
|
-
/**
|
|
1087
|
-
* @internal
|
|
1088
|
-
*/
|
|
1089
|
-
export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
|
|
1090
|
-
/**
|
|
1091
|
-
* @internal
|
|
1092
|
-
*/
|
|
1093
|
-
export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
|
|
1094
|
-
/**
|
|
1095
|
-
* @internal
|
|
1096
|
-
*/
|
|
1097
|
-
export declare const CreateRuleGroupsNamespaceRequestFilterSensitiveLog: (obj: CreateRuleGroupsNamespaceRequest) => any;
|
|
1098
|
-
/**
|
|
1099
|
-
* @internal
|
|
1100
|
-
*/
|
|
1101
|
-
export declare const RuleGroupsNamespaceStatusFilterSensitiveLog: (obj: RuleGroupsNamespaceStatus) => any;
|
|
1102
|
-
/**
|
|
1103
|
-
* @internal
|
|
1104
|
-
*/
|
|
1105
|
-
export declare const CreateRuleGroupsNamespaceResponseFilterSensitiveLog: (obj: CreateRuleGroupsNamespaceResponse) => any;
|
|
1106
|
-
/**
|
|
1107
|
-
* @internal
|
|
1108
|
-
*/
|
|
1109
|
-
export declare const DeleteRuleGroupsNamespaceRequestFilterSensitiveLog: (obj: DeleteRuleGroupsNamespaceRequest) => any;
|
|
1110
|
-
/**
|
|
1111
|
-
* @internal
|
|
1112
|
-
*/
|
|
1113
|
-
export declare const DescribeRuleGroupsNamespaceRequestFilterSensitiveLog: (obj: DescribeRuleGroupsNamespaceRequest) => any;
|
|
1114
|
-
/**
|
|
1115
|
-
* @internal
|
|
1116
|
-
*/
|
|
1117
|
-
export declare const RuleGroupsNamespaceDescriptionFilterSensitiveLog: (obj: RuleGroupsNamespaceDescription) => any;
|
|
1118
|
-
/**
|
|
1119
|
-
* @internal
|
|
1120
|
-
*/
|
|
1121
|
-
export declare const DescribeRuleGroupsNamespaceResponseFilterSensitiveLog: (obj: DescribeRuleGroupsNamespaceResponse) => any;
|
|
1122
|
-
/**
|
|
1123
|
-
* @internal
|
|
1124
|
-
*/
|
|
1125
|
-
export declare const ListRuleGroupsNamespacesRequestFilterSensitiveLog: (obj: ListRuleGroupsNamespacesRequest) => any;
|
|
1126
|
-
/**
|
|
1127
|
-
* @internal
|
|
1128
|
-
*/
|
|
1129
|
-
export declare const RuleGroupsNamespaceSummaryFilterSensitiveLog: (obj: RuleGroupsNamespaceSummary) => any;
|
|
1130
|
-
/**
|
|
1131
|
-
* @internal
|
|
1132
|
-
*/
|
|
1133
|
-
export declare const ListRuleGroupsNamespacesResponseFilterSensitiveLog: (obj: ListRuleGroupsNamespacesResponse) => any;
|
|
1134
|
-
/**
|
|
1135
|
-
* @internal
|
|
1136
|
-
*/
|
|
1137
|
-
export declare const PutRuleGroupsNamespaceRequestFilterSensitiveLog: (obj: PutRuleGroupsNamespaceRequest) => any;
|
|
1138
|
-
/**
|
|
1139
|
-
* @internal
|
|
1140
|
-
*/
|
|
1141
|
-
export declare const PutRuleGroupsNamespaceResponseFilterSensitiveLog: (obj: PutRuleGroupsNamespaceResponse) => any;
|
|
1142
|
-
/**
|
|
1143
|
-
* @internal
|
|
1144
|
-
*/
|
|
1145
|
-
export declare const UpdateWorkspaceAliasRequestFilterSensitiveLog: (obj: UpdateWorkspaceAliasRequest) => any;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListRuleGroupsNamespacesCommandInput, ListRuleGroupsNamespacesCommandOutput } from "../commands/ListRuleGroupsNamespacesCommand";
|
|
3
3
|
import { AmpPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListRuleGroupsNamespaces(config: AmpPaginationConfiguration, input: ListRuleGroupsNamespacesCommandInput, ...additionalArguments: any): Paginator<ListRuleGroupsNamespacesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
|
|
3
3
|
import { AmpPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListWorkspaces(config: AmpPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
|