@aws-sdk/client-amp 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -20,10 +20,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
20
20
|
readonly name: "ConflictException";
|
|
21
21
|
readonly $fault: "client";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* Identifier of the resource affected.
|
|
24
25
|
*/
|
|
25
26
|
resourceId: string | undefined;
|
|
26
27
|
/**
|
|
28
|
+
* @public
|
|
27
29
|
* Type of the resource affected.
|
|
28
30
|
*/
|
|
29
31
|
resourceType: string | undefined;
|
|
@@ -38,14 +40,17 @@ export declare class ConflictException extends __BaseException {
|
|
|
38
40
|
*/
|
|
39
41
|
export interface CreateAlertManagerDefinitionRequest {
|
|
40
42
|
/**
|
|
43
|
+
* @public
|
|
41
44
|
* The ID of the workspace in which to create the alert manager definition.
|
|
42
45
|
*/
|
|
43
46
|
workspaceId: string | undefined;
|
|
44
47
|
/**
|
|
48
|
+
* @public
|
|
45
49
|
* The alert manager definition data.
|
|
46
50
|
*/
|
|
47
51
|
data: Uint8Array | undefined;
|
|
48
52
|
/**
|
|
53
|
+
* @public
|
|
49
54
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
50
55
|
*/
|
|
51
56
|
clientToken?: string;
|
|
@@ -90,10 +95,12 @@ export type AlertManagerDefinitionStatusCode = (typeof AlertManagerDefinitionSta
|
|
|
90
95
|
*/
|
|
91
96
|
export interface AlertManagerDefinitionStatus {
|
|
92
97
|
/**
|
|
98
|
+
* @public
|
|
93
99
|
* Status code of this definition.
|
|
94
100
|
*/
|
|
95
101
|
statusCode: AlertManagerDefinitionStatusCode | string | undefined;
|
|
96
102
|
/**
|
|
103
|
+
* @public
|
|
97
104
|
* The reason for failure if any.
|
|
98
105
|
*/
|
|
99
106
|
statusReason?: string;
|
|
@@ -104,6 +111,7 @@ export interface AlertManagerDefinitionStatus {
|
|
|
104
111
|
*/
|
|
105
112
|
export interface CreateAlertManagerDefinitionResponse {
|
|
106
113
|
/**
|
|
114
|
+
* @public
|
|
107
115
|
* The status of alert manager definition.
|
|
108
116
|
*/
|
|
109
117
|
status: AlertManagerDefinitionStatus | undefined;
|
|
@@ -117,6 +125,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
117
125
|
readonly $fault: "server";
|
|
118
126
|
$retryable: {};
|
|
119
127
|
/**
|
|
128
|
+
* @public
|
|
120
129
|
* Advice to clients on when the call can be safely retried.
|
|
121
130
|
*/
|
|
122
131
|
retryAfterSeconds?: number;
|
|
@@ -133,10 +142,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
133
142
|
readonly name: "ResourceNotFoundException";
|
|
134
143
|
readonly $fault: "client";
|
|
135
144
|
/**
|
|
145
|
+
* @public
|
|
136
146
|
* Identifier of the resource affected.
|
|
137
147
|
*/
|
|
138
148
|
resourceId: string | undefined;
|
|
139
149
|
/**
|
|
150
|
+
* @public
|
|
140
151
|
* Type of the resource affected.
|
|
141
152
|
*/
|
|
142
153
|
resourceType: string | undefined;
|
|
@@ -153,18 +164,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
153
164
|
readonly name: "ServiceQuotaExceededException";
|
|
154
165
|
readonly $fault: "client";
|
|
155
166
|
/**
|
|
167
|
+
* @public
|
|
156
168
|
* Identifier of the resource affected.
|
|
157
169
|
*/
|
|
158
170
|
resourceId: string | undefined;
|
|
159
171
|
/**
|
|
172
|
+
* @public
|
|
160
173
|
* Type of the resource affected.
|
|
161
174
|
*/
|
|
162
175
|
resourceType: string | undefined;
|
|
163
176
|
/**
|
|
177
|
+
* @public
|
|
164
178
|
* Service Quotas requirement to identify originating service.
|
|
165
179
|
*/
|
|
166
180
|
serviceCode: string | undefined;
|
|
167
181
|
/**
|
|
182
|
+
* @public
|
|
168
183
|
* Service Quotas requirement to identify originating quota.
|
|
169
184
|
*/
|
|
170
185
|
quotaCode: string | undefined;
|
|
@@ -182,14 +197,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
182
197
|
readonly $fault: "client";
|
|
183
198
|
$retryable: {};
|
|
184
199
|
/**
|
|
200
|
+
* @public
|
|
185
201
|
* Service Quotas requirement to identify originating service.
|
|
186
202
|
*/
|
|
187
203
|
serviceCode?: string;
|
|
188
204
|
/**
|
|
205
|
+
* @public
|
|
189
206
|
* Service Quotas requirement to identify originating quota.
|
|
190
207
|
*/
|
|
191
208
|
quotaCode?: string;
|
|
192
209
|
/**
|
|
210
|
+
* @public
|
|
193
211
|
* Advice to clients on when the call can be safely retried.
|
|
194
212
|
*/
|
|
195
213
|
retryAfterSeconds?: number;
|
|
@@ -204,10 +222,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
204
222
|
*/
|
|
205
223
|
export interface ValidationExceptionField {
|
|
206
224
|
/**
|
|
225
|
+
* @public
|
|
207
226
|
* The field name.
|
|
208
227
|
*/
|
|
209
228
|
name: string | undefined;
|
|
210
229
|
/**
|
|
230
|
+
* @public
|
|
211
231
|
* Message describing why the field failed validation.
|
|
212
232
|
*/
|
|
213
233
|
message: string | undefined;
|
|
@@ -234,10 +254,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
234
254
|
readonly name: "ValidationException";
|
|
235
255
|
readonly $fault: "client";
|
|
236
256
|
/**
|
|
257
|
+
* @public
|
|
237
258
|
* Reason the request failed validation.
|
|
238
259
|
*/
|
|
239
260
|
reason: ValidationExceptionReason | string | undefined;
|
|
240
261
|
/**
|
|
262
|
+
* @public
|
|
241
263
|
* The field that caused the error, if applicable. If more than one field caused the error, pick one and elaborate in the message.
|
|
242
264
|
*/
|
|
243
265
|
fieldList?: ValidationExceptionField[];
|
|
@@ -252,10 +274,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
252
274
|
*/
|
|
253
275
|
export interface DeleteAlertManagerDefinitionRequest {
|
|
254
276
|
/**
|
|
277
|
+
* @public
|
|
255
278
|
* The ID of the workspace in which to delete the alert manager definition.
|
|
256
279
|
*/
|
|
257
280
|
workspaceId: string | undefined;
|
|
258
281
|
/**
|
|
282
|
+
* @public
|
|
259
283
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
260
284
|
*/
|
|
261
285
|
clientToken?: string;
|
|
@@ -266,6 +290,7 @@ export interface DeleteAlertManagerDefinitionRequest {
|
|
|
266
290
|
*/
|
|
267
291
|
export interface DescribeAlertManagerDefinitionRequest {
|
|
268
292
|
/**
|
|
293
|
+
* @public
|
|
269
294
|
* The ID of the workspace to describe.
|
|
270
295
|
*/
|
|
271
296
|
workspaceId: string | undefined;
|
|
@@ -276,18 +301,22 @@ export interface DescribeAlertManagerDefinitionRequest {
|
|
|
276
301
|
*/
|
|
277
302
|
export interface AlertManagerDefinitionDescription {
|
|
278
303
|
/**
|
|
304
|
+
* @public
|
|
279
305
|
* The status of alert manager definition.
|
|
280
306
|
*/
|
|
281
307
|
status: AlertManagerDefinitionStatus | undefined;
|
|
282
308
|
/**
|
|
309
|
+
* @public
|
|
283
310
|
* The alert manager definition.
|
|
284
311
|
*/
|
|
285
312
|
data: Uint8Array | undefined;
|
|
286
313
|
/**
|
|
314
|
+
* @public
|
|
287
315
|
* The time when the alert manager definition was created.
|
|
288
316
|
*/
|
|
289
317
|
createdAt: Date | undefined;
|
|
290
318
|
/**
|
|
319
|
+
* @public
|
|
291
320
|
* The time when the alert manager definition was modified.
|
|
292
321
|
*/
|
|
293
322
|
modifiedAt: Date | undefined;
|
|
@@ -298,6 +327,7 @@ export interface AlertManagerDefinitionDescription {
|
|
|
298
327
|
*/
|
|
299
328
|
export interface DescribeAlertManagerDefinitionResponse {
|
|
300
329
|
/**
|
|
330
|
+
* @public
|
|
301
331
|
* The properties of the selected workspace's alert manager definition.
|
|
302
332
|
*/
|
|
303
333
|
alertManagerDefinition: AlertManagerDefinitionDescription | undefined;
|
|
@@ -308,14 +338,17 @@ export interface DescribeAlertManagerDefinitionResponse {
|
|
|
308
338
|
*/
|
|
309
339
|
export interface PutAlertManagerDefinitionRequest {
|
|
310
340
|
/**
|
|
341
|
+
* @public
|
|
311
342
|
* The ID of the workspace in which to update the alert manager definition.
|
|
312
343
|
*/
|
|
313
344
|
workspaceId: string | undefined;
|
|
314
345
|
/**
|
|
346
|
+
* @public
|
|
315
347
|
* The alert manager definition data.
|
|
316
348
|
*/
|
|
317
349
|
data: Uint8Array | undefined;
|
|
318
350
|
/**
|
|
351
|
+
* @public
|
|
319
352
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
320
353
|
*/
|
|
321
354
|
clientToken?: string;
|
|
@@ -326,6 +359,7 @@ export interface PutAlertManagerDefinitionRequest {
|
|
|
326
359
|
*/
|
|
327
360
|
export interface PutAlertManagerDefinitionResponse {
|
|
328
361
|
/**
|
|
362
|
+
* @public
|
|
329
363
|
* The status of alert manager definition.
|
|
330
364
|
*/
|
|
331
365
|
status: AlertManagerDefinitionStatus | undefined;
|
|
@@ -335,6 +369,7 @@ export interface PutAlertManagerDefinitionResponse {
|
|
|
335
369
|
*/
|
|
336
370
|
export interface ListTagsForResourceRequest {
|
|
337
371
|
/**
|
|
372
|
+
* @public
|
|
338
373
|
* The ARN of the resource.
|
|
339
374
|
*/
|
|
340
375
|
resourceArn: string | undefined;
|
|
@@ -344,6 +379,7 @@ export interface ListTagsForResourceRequest {
|
|
|
344
379
|
*/
|
|
345
380
|
export interface ListTagsForResourceResponse {
|
|
346
381
|
/**
|
|
382
|
+
* @public
|
|
347
383
|
* The list of tags assigned to the resource.
|
|
348
384
|
*/
|
|
349
385
|
tags?: Record<string, string>;
|
|
@@ -353,10 +389,12 @@ export interface ListTagsForResourceResponse {
|
|
|
353
389
|
*/
|
|
354
390
|
export interface TagResourceRequest {
|
|
355
391
|
/**
|
|
392
|
+
* @public
|
|
356
393
|
* The ARN of the resource.
|
|
357
394
|
*/
|
|
358
395
|
resourceArn: string | undefined;
|
|
359
396
|
/**
|
|
397
|
+
* @public
|
|
360
398
|
* The list of tags assigned to the resource.
|
|
361
399
|
*/
|
|
362
400
|
tags: Record<string, string> | undefined;
|
|
@@ -371,10 +409,12 @@ export interface TagResourceResponse {
|
|
|
371
409
|
*/
|
|
372
410
|
export interface UntagResourceRequest {
|
|
373
411
|
/**
|
|
412
|
+
* @public
|
|
374
413
|
* The ARN of the resource.
|
|
375
414
|
*/
|
|
376
415
|
resourceArn: string | undefined;
|
|
377
416
|
/**
|
|
417
|
+
* @public
|
|
378
418
|
* One or more tag keys
|
|
379
419
|
*/
|
|
380
420
|
tagKeys: string[] | undefined;
|
|
@@ -390,14 +430,17 @@ export interface UntagResourceResponse {
|
|
|
390
430
|
*/
|
|
391
431
|
export interface CreateWorkspaceRequest {
|
|
392
432
|
/**
|
|
433
|
+
* @public
|
|
393
434
|
* An optional user-assigned alias for this workspace. This alias is for user reference and does not need to be unique.
|
|
394
435
|
*/
|
|
395
436
|
alias?: string;
|
|
396
437
|
/**
|
|
438
|
+
* @public
|
|
397
439
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
398
440
|
*/
|
|
399
441
|
clientToken?: string;
|
|
400
442
|
/**
|
|
443
|
+
* @public
|
|
401
444
|
* Optional, user-provided tags for this workspace.
|
|
402
445
|
*/
|
|
403
446
|
tags?: Record<string, string>;
|
|
@@ -438,6 +481,7 @@ export type WorkspaceStatusCode = (typeof WorkspaceStatusCode)[keyof typeof Work
|
|
|
438
481
|
*/
|
|
439
482
|
export interface WorkspaceStatus {
|
|
440
483
|
/**
|
|
484
|
+
* @public
|
|
441
485
|
* Status code of this workspace.
|
|
442
486
|
*/
|
|
443
487
|
statusCode: WorkspaceStatusCode | string | undefined;
|
|
@@ -448,18 +492,22 @@ export interface WorkspaceStatus {
|
|
|
448
492
|
*/
|
|
449
493
|
export interface CreateWorkspaceResponse {
|
|
450
494
|
/**
|
|
495
|
+
* @public
|
|
451
496
|
* The generated ID of the workspace that was just created.
|
|
452
497
|
*/
|
|
453
498
|
workspaceId: string | undefined;
|
|
454
499
|
/**
|
|
500
|
+
* @public
|
|
455
501
|
* The ARN of the workspace that was just created.
|
|
456
502
|
*/
|
|
457
503
|
arn: string | undefined;
|
|
458
504
|
/**
|
|
505
|
+
* @public
|
|
459
506
|
* The status of the workspace that was just created (usually CREATING).
|
|
460
507
|
*/
|
|
461
508
|
status: WorkspaceStatus | undefined;
|
|
462
509
|
/**
|
|
510
|
+
* @public
|
|
463
511
|
* The tags of this workspace.
|
|
464
512
|
*/
|
|
465
513
|
tags?: Record<string, string>;
|
|
@@ -470,10 +518,12 @@ export interface CreateWorkspaceResponse {
|
|
|
470
518
|
*/
|
|
471
519
|
export interface DeleteWorkspaceRequest {
|
|
472
520
|
/**
|
|
521
|
+
* @public
|
|
473
522
|
* The ID of the workspace to delete.
|
|
474
523
|
*/
|
|
475
524
|
workspaceId: string | undefined;
|
|
476
525
|
/**
|
|
526
|
+
* @public
|
|
477
527
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
478
528
|
*/
|
|
479
529
|
clientToken?: string;
|
|
@@ -484,6 +534,7 @@ export interface DeleteWorkspaceRequest {
|
|
|
484
534
|
*/
|
|
485
535
|
export interface DescribeWorkspaceRequest {
|
|
486
536
|
/**
|
|
537
|
+
* @public
|
|
487
538
|
* The ID of the workspace to describe.
|
|
488
539
|
*/
|
|
489
540
|
workspaceId: string | undefined;
|
|
@@ -494,30 +545,37 @@ export interface DescribeWorkspaceRequest {
|
|
|
494
545
|
*/
|
|
495
546
|
export interface WorkspaceDescription {
|
|
496
547
|
/**
|
|
548
|
+
* @public
|
|
497
549
|
* Unique string identifying this workspace.
|
|
498
550
|
*/
|
|
499
551
|
workspaceId: string | undefined;
|
|
500
552
|
/**
|
|
553
|
+
* @public
|
|
501
554
|
* Alias of this workspace.
|
|
502
555
|
*/
|
|
503
556
|
alias?: string;
|
|
504
557
|
/**
|
|
558
|
+
* @public
|
|
505
559
|
* The Amazon Resource Name (ARN) of this workspace.
|
|
506
560
|
*/
|
|
507
561
|
arn: string | undefined;
|
|
508
562
|
/**
|
|
563
|
+
* @public
|
|
509
564
|
* The status of this workspace.
|
|
510
565
|
*/
|
|
511
566
|
status: WorkspaceStatus | undefined;
|
|
512
567
|
/**
|
|
568
|
+
* @public
|
|
513
569
|
* Prometheus endpoint URI.
|
|
514
570
|
*/
|
|
515
571
|
prometheusEndpoint?: string;
|
|
516
572
|
/**
|
|
573
|
+
* @public
|
|
517
574
|
* The time when the workspace was created.
|
|
518
575
|
*/
|
|
519
576
|
createdAt: Date | undefined;
|
|
520
577
|
/**
|
|
578
|
+
* @public
|
|
521
579
|
* The tags of this workspace.
|
|
522
580
|
*/
|
|
523
581
|
tags?: Record<string, string>;
|
|
@@ -528,6 +586,7 @@ export interface WorkspaceDescription {
|
|
|
528
586
|
*/
|
|
529
587
|
export interface DescribeWorkspaceResponse {
|
|
530
588
|
/**
|
|
589
|
+
* @public
|
|
531
590
|
* The properties of the selected workspace.
|
|
532
591
|
*/
|
|
533
592
|
workspace: WorkspaceDescription | undefined;
|
|
@@ -538,14 +597,17 @@ export interface DescribeWorkspaceResponse {
|
|
|
538
597
|
*/
|
|
539
598
|
export interface ListWorkspacesRequest {
|
|
540
599
|
/**
|
|
600
|
+
* @public
|
|
541
601
|
* Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListWorkspaces request.
|
|
542
602
|
*/
|
|
543
603
|
nextToken?: string;
|
|
544
604
|
/**
|
|
605
|
+
* @public
|
|
545
606
|
* Optional filter for workspace alias. Only the workspaces with aliases that begin with this value will be returned.
|
|
546
607
|
*/
|
|
547
608
|
alias?: string;
|
|
548
609
|
/**
|
|
610
|
+
* @public
|
|
549
611
|
* Maximum results to return in response (default=100, maximum=1000).
|
|
550
612
|
*/
|
|
551
613
|
maxResults?: number;
|
|
@@ -556,26 +618,32 @@ export interface ListWorkspacesRequest {
|
|
|
556
618
|
*/
|
|
557
619
|
export interface WorkspaceSummary {
|
|
558
620
|
/**
|
|
621
|
+
* @public
|
|
559
622
|
* Unique string identifying this workspace.
|
|
560
623
|
*/
|
|
561
624
|
workspaceId: string | undefined;
|
|
562
625
|
/**
|
|
626
|
+
* @public
|
|
563
627
|
* Alias of this workspace.
|
|
564
628
|
*/
|
|
565
629
|
alias?: string;
|
|
566
630
|
/**
|
|
631
|
+
* @public
|
|
567
632
|
* The AmazonResourceName of this workspace.
|
|
568
633
|
*/
|
|
569
634
|
arn: string | undefined;
|
|
570
635
|
/**
|
|
636
|
+
* @public
|
|
571
637
|
* The status of this workspace.
|
|
572
638
|
*/
|
|
573
639
|
status: WorkspaceStatus | undefined;
|
|
574
640
|
/**
|
|
641
|
+
* @public
|
|
575
642
|
* The time when the workspace was created.
|
|
576
643
|
*/
|
|
577
644
|
createdAt: Date | undefined;
|
|
578
645
|
/**
|
|
646
|
+
* @public
|
|
579
647
|
* The tags of this workspace.
|
|
580
648
|
*/
|
|
581
649
|
tags?: Record<string, string>;
|
|
@@ -586,10 +654,12 @@ export interface WorkspaceSummary {
|
|
|
586
654
|
*/
|
|
587
655
|
export interface ListWorkspacesResponse {
|
|
588
656
|
/**
|
|
657
|
+
* @public
|
|
589
658
|
* The list of existing workspaces, including those undergoing creation or deletion.
|
|
590
659
|
*/
|
|
591
660
|
workspaces: WorkspaceSummary[] | undefined;
|
|
592
661
|
/**
|
|
662
|
+
* @public
|
|
593
663
|
* Pagination token to use when requesting the next page in this list.
|
|
594
664
|
*/
|
|
595
665
|
nextToken?: string;
|
|
@@ -600,14 +670,17 @@ export interface ListWorkspacesResponse {
|
|
|
600
670
|
*/
|
|
601
671
|
export interface CreateLoggingConfigurationRequest {
|
|
602
672
|
/**
|
|
673
|
+
* @public
|
|
603
674
|
* The ID of the workspace to vend logs to.
|
|
604
675
|
*/
|
|
605
676
|
workspaceId: string | undefined;
|
|
606
677
|
/**
|
|
678
|
+
* @public
|
|
607
679
|
* The ARN of the CW log group to which the vended log data will be published.
|
|
608
680
|
*/
|
|
609
681
|
logGroupArn: string | undefined;
|
|
610
682
|
/**
|
|
683
|
+
* @public
|
|
611
684
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
612
685
|
*/
|
|
613
686
|
clientToken?: string;
|
|
@@ -652,10 +725,12 @@ export type LoggingConfigurationStatusCode = (typeof LoggingConfigurationStatusC
|
|
|
652
725
|
*/
|
|
653
726
|
export interface LoggingConfigurationStatus {
|
|
654
727
|
/**
|
|
728
|
+
* @public
|
|
655
729
|
* Status code of the logging configuration.
|
|
656
730
|
*/
|
|
657
731
|
statusCode: LoggingConfigurationStatusCode | string | undefined;
|
|
658
732
|
/**
|
|
733
|
+
* @public
|
|
659
734
|
* The reason for failure if any.
|
|
660
735
|
*/
|
|
661
736
|
statusReason?: string;
|
|
@@ -666,6 +741,7 @@ export interface LoggingConfigurationStatus {
|
|
|
666
741
|
*/
|
|
667
742
|
export interface CreateLoggingConfigurationResponse {
|
|
668
743
|
/**
|
|
744
|
+
* @public
|
|
669
745
|
* The status of the logging configuration.
|
|
670
746
|
*/
|
|
671
747
|
status: LoggingConfigurationStatus | undefined;
|
|
@@ -676,10 +752,12 @@ export interface CreateLoggingConfigurationResponse {
|
|
|
676
752
|
*/
|
|
677
753
|
export interface DeleteLoggingConfigurationRequest {
|
|
678
754
|
/**
|
|
755
|
+
* @public
|
|
679
756
|
* The ID of the workspace to vend logs to.
|
|
680
757
|
*/
|
|
681
758
|
workspaceId: string | undefined;
|
|
682
759
|
/**
|
|
760
|
+
* @public
|
|
683
761
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
684
762
|
*/
|
|
685
763
|
clientToken?: string;
|
|
@@ -690,6 +768,7 @@ export interface DeleteLoggingConfigurationRequest {
|
|
|
690
768
|
*/
|
|
691
769
|
export interface DescribeLoggingConfigurationRequest {
|
|
692
770
|
/**
|
|
771
|
+
* @public
|
|
693
772
|
* The ID of the workspace to vend logs to.
|
|
694
773
|
*/
|
|
695
774
|
workspaceId: string | undefined;
|
|
@@ -700,22 +779,27 @@ export interface DescribeLoggingConfigurationRequest {
|
|
|
700
779
|
*/
|
|
701
780
|
export interface LoggingConfigurationMetadata {
|
|
702
781
|
/**
|
|
782
|
+
* @public
|
|
703
783
|
* The status of the logging configuration.
|
|
704
784
|
*/
|
|
705
785
|
status: LoggingConfigurationStatus | undefined;
|
|
706
786
|
/**
|
|
787
|
+
* @public
|
|
707
788
|
* The workspace where the logging configuration exists.
|
|
708
789
|
*/
|
|
709
790
|
workspace: string | undefined;
|
|
710
791
|
/**
|
|
792
|
+
* @public
|
|
711
793
|
* The ARN of the CW log group to which the vended log data will be published.
|
|
712
794
|
*/
|
|
713
795
|
logGroupArn: string | undefined;
|
|
714
796
|
/**
|
|
797
|
+
* @public
|
|
715
798
|
* The time when the logging configuration was created.
|
|
716
799
|
*/
|
|
717
800
|
createdAt: Date | undefined;
|
|
718
801
|
/**
|
|
802
|
+
* @public
|
|
719
803
|
* The time when the logging configuration was modified.
|
|
720
804
|
*/
|
|
721
805
|
modifiedAt: Date | undefined;
|
|
@@ -726,6 +810,7 @@ export interface LoggingConfigurationMetadata {
|
|
|
726
810
|
*/
|
|
727
811
|
export interface DescribeLoggingConfigurationResponse {
|
|
728
812
|
/**
|
|
813
|
+
* @public
|
|
729
814
|
* Metadata object containing information about the logging configuration of a workspace.
|
|
730
815
|
*/
|
|
731
816
|
loggingConfiguration: LoggingConfigurationMetadata | undefined;
|
|
@@ -736,14 +821,17 @@ export interface DescribeLoggingConfigurationResponse {
|
|
|
736
821
|
*/
|
|
737
822
|
export interface UpdateLoggingConfigurationRequest {
|
|
738
823
|
/**
|
|
824
|
+
* @public
|
|
739
825
|
* The ID of the workspace to vend logs to.
|
|
740
826
|
*/
|
|
741
827
|
workspaceId: string | undefined;
|
|
742
828
|
/**
|
|
829
|
+
* @public
|
|
743
830
|
* The ARN of the CW log group to which the vended log data will be published.
|
|
744
831
|
*/
|
|
745
832
|
logGroupArn: string | undefined;
|
|
746
833
|
/**
|
|
834
|
+
* @public
|
|
747
835
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
748
836
|
*/
|
|
749
837
|
clientToken?: string;
|
|
@@ -754,6 +842,7 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
754
842
|
*/
|
|
755
843
|
export interface UpdateLoggingConfigurationResponse {
|
|
756
844
|
/**
|
|
845
|
+
* @public
|
|
757
846
|
* The status of the logging configuration.
|
|
758
847
|
*/
|
|
759
848
|
status: LoggingConfigurationStatus | undefined;
|
|
@@ -764,22 +853,27 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
764
853
|
*/
|
|
765
854
|
export interface CreateRuleGroupsNamespaceRequest {
|
|
766
855
|
/**
|
|
856
|
+
* @public
|
|
767
857
|
* The ID of the workspace in which to create the rule group namespace.
|
|
768
858
|
*/
|
|
769
859
|
workspaceId: string | undefined;
|
|
770
860
|
/**
|
|
861
|
+
* @public
|
|
771
862
|
* The rule groups namespace name.
|
|
772
863
|
*/
|
|
773
864
|
name: string | undefined;
|
|
774
865
|
/**
|
|
866
|
+
* @public
|
|
775
867
|
* The namespace data that define the rule groups.
|
|
776
868
|
*/
|
|
777
869
|
data: Uint8Array | undefined;
|
|
778
870
|
/**
|
|
871
|
+
* @public
|
|
779
872
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
780
873
|
*/
|
|
781
874
|
clientToken?: string;
|
|
782
875
|
/**
|
|
876
|
+
* @public
|
|
783
877
|
* Optional, user-provided tags for this rule groups namespace.
|
|
784
878
|
*/
|
|
785
879
|
tags?: Record<string, string>;
|
|
@@ -824,10 +918,12 @@ export type RuleGroupsNamespaceStatusCode = (typeof RuleGroupsNamespaceStatusCod
|
|
|
824
918
|
*/
|
|
825
919
|
export interface RuleGroupsNamespaceStatus {
|
|
826
920
|
/**
|
|
921
|
+
* @public
|
|
827
922
|
* Status code of this namespace.
|
|
828
923
|
*/
|
|
829
924
|
statusCode: RuleGroupsNamespaceStatusCode | string | undefined;
|
|
830
925
|
/**
|
|
926
|
+
* @public
|
|
831
927
|
* The reason for failure if any.
|
|
832
928
|
*/
|
|
833
929
|
statusReason?: string;
|
|
@@ -838,18 +934,22 @@ export interface RuleGroupsNamespaceStatus {
|
|
|
838
934
|
*/
|
|
839
935
|
export interface CreateRuleGroupsNamespaceResponse {
|
|
840
936
|
/**
|
|
937
|
+
* @public
|
|
841
938
|
* The rule groups namespace name.
|
|
842
939
|
*/
|
|
843
940
|
name: string | undefined;
|
|
844
941
|
/**
|
|
942
|
+
* @public
|
|
845
943
|
* The Amazon Resource Name (ARN) of this rule groups namespace.
|
|
846
944
|
*/
|
|
847
945
|
arn: string | undefined;
|
|
848
946
|
/**
|
|
947
|
+
* @public
|
|
849
948
|
* The status of rule groups namespace.
|
|
850
949
|
*/
|
|
851
950
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
852
951
|
/**
|
|
952
|
+
* @public
|
|
853
953
|
* The tags of this rule groups namespace.
|
|
854
954
|
*/
|
|
855
955
|
tags?: Record<string, string>;
|
|
@@ -860,14 +960,17 @@ export interface CreateRuleGroupsNamespaceResponse {
|
|
|
860
960
|
*/
|
|
861
961
|
export interface DeleteRuleGroupsNamespaceRequest {
|
|
862
962
|
/**
|
|
963
|
+
* @public
|
|
863
964
|
* The ID of the workspace to delete rule group definition.
|
|
864
965
|
*/
|
|
865
966
|
workspaceId: string | undefined;
|
|
866
967
|
/**
|
|
968
|
+
* @public
|
|
867
969
|
* The rule groups namespace name.
|
|
868
970
|
*/
|
|
869
971
|
name: string | undefined;
|
|
870
972
|
/**
|
|
973
|
+
* @public
|
|
871
974
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
872
975
|
*/
|
|
873
976
|
clientToken?: string;
|
|
@@ -878,10 +981,12 @@ export interface DeleteRuleGroupsNamespaceRequest {
|
|
|
878
981
|
*/
|
|
879
982
|
export interface DescribeRuleGroupsNamespaceRequest {
|
|
880
983
|
/**
|
|
984
|
+
* @public
|
|
881
985
|
* The ID of the workspace to describe.
|
|
882
986
|
*/
|
|
883
987
|
workspaceId: string | undefined;
|
|
884
988
|
/**
|
|
989
|
+
* @public
|
|
885
990
|
* The rule groups namespace.
|
|
886
991
|
*/
|
|
887
992
|
name: string | undefined;
|
|
@@ -892,30 +997,37 @@ export interface DescribeRuleGroupsNamespaceRequest {
|
|
|
892
997
|
*/
|
|
893
998
|
export interface RuleGroupsNamespaceDescription {
|
|
894
999
|
/**
|
|
1000
|
+
* @public
|
|
895
1001
|
* The Amazon Resource Name (ARN) of this rule groups namespace.
|
|
896
1002
|
*/
|
|
897
1003
|
arn: string | undefined;
|
|
898
1004
|
/**
|
|
1005
|
+
* @public
|
|
899
1006
|
* The rule groups namespace name.
|
|
900
1007
|
*/
|
|
901
1008
|
name: string | undefined;
|
|
902
1009
|
/**
|
|
1010
|
+
* @public
|
|
903
1011
|
* The status of rule groups namespace.
|
|
904
1012
|
*/
|
|
905
1013
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
906
1014
|
/**
|
|
1015
|
+
* @public
|
|
907
1016
|
* The rule groups namespace data.
|
|
908
1017
|
*/
|
|
909
1018
|
data: Uint8Array | undefined;
|
|
910
1019
|
/**
|
|
1020
|
+
* @public
|
|
911
1021
|
* The time when the rule groups namespace was created.
|
|
912
1022
|
*/
|
|
913
1023
|
createdAt: Date | undefined;
|
|
914
1024
|
/**
|
|
1025
|
+
* @public
|
|
915
1026
|
* The time when the rule groups namespace was modified.
|
|
916
1027
|
*/
|
|
917
1028
|
modifiedAt: Date | undefined;
|
|
918
1029
|
/**
|
|
1030
|
+
* @public
|
|
919
1031
|
* The tags of this rule groups namespace.
|
|
920
1032
|
*/
|
|
921
1033
|
tags?: Record<string, string>;
|
|
@@ -926,6 +1038,7 @@ export interface RuleGroupsNamespaceDescription {
|
|
|
926
1038
|
*/
|
|
927
1039
|
export interface DescribeRuleGroupsNamespaceResponse {
|
|
928
1040
|
/**
|
|
1041
|
+
* @public
|
|
929
1042
|
* The selected rule groups namespace.
|
|
930
1043
|
*/
|
|
931
1044
|
ruleGroupsNamespace: RuleGroupsNamespaceDescription | undefined;
|
|
@@ -936,18 +1049,22 @@ export interface DescribeRuleGroupsNamespaceResponse {
|
|
|
936
1049
|
*/
|
|
937
1050
|
export interface ListRuleGroupsNamespacesRequest {
|
|
938
1051
|
/**
|
|
1052
|
+
* @public
|
|
939
1053
|
* The ID of the workspace.
|
|
940
1054
|
*/
|
|
941
1055
|
workspaceId: string | undefined;
|
|
942
1056
|
/**
|
|
1057
|
+
* @public
|
|
943
1058
|
* Optional filter for rule groups namespace name. Only the rule groups namespace that begin with this value will be returned.
|
|
944
1059
|
*/
|
|
945
1060
|
name?: string;
|
|
946
1061
|
/**
|
|
1062
|
+
* @public
|
|
947
1063
|
* Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListRuleGroupsNamespaces request.
|
|
948
1064
|
*/
|
|
949
1065
|
nextToken?: string;
|
|
950
1066
|
/**
|
|
1067
|
+
* @public
|
|
951
1068
|
* Maximum results to return in response (default=100, maximum=1000).
|
|
952
1069
|
*/
|
|
953
1070
|
maxResults?: number;
|
|
@@ -958,26 +1075,32 @@ export interface ListRuleGroupsNamespacesRequest {
|
|
|
958
1075
|
*/
|
|
959
1076
|
export interface RuleGroupsNamespaceSummary {
|
|
960
1077
|
/**
|
|
1078
|
+
* @public
|
|
961
1079
|
* The Amazon Resource Name (ARN) of this rule groups namespace.
|
|
962
1080
|
*/
|
|
963
1081
|
arn: string | undefined;
|
|
964
1082
|
/**
|
|
1083
|
+
* @public
|
|
965
1084
|
* The rule groups namespace name.
|
|
966
1085
|
*/
|
|
967
1086
|
name: string | undefined;
|
|
968
1087
|
/**
|
|
1088
|
+
* @public
|
|
969
1089
|
* The status of rule groups namespace.
|
|
970
1090
|
*/
|
|
971
1091
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
972
1092
|
/**
|
|
1093
|
+
* @public
|
|
973
1094
|
* The time when the rule groups namespace was created.
|
|
974
1095
|
*/
|
|
975
1096
|
createdAt: Date | undefined;
|
|
976
1097
|
/**
|
|
1098
|
+
* @public
|
|
977
1099
|
* The time when the rule groups namespace was modified.
|
|
978
1100
|
*/
|
|
979
1101
|
modifiedAt: Date | undefined;
|
|
980
1102
|
/**
|
|
1103
|
+
* @public
|
|
981
1104
|
* The tags of this rule groups namespace.
|
|
982
1105
|
*/
|
|
983
1106
|
tags?: Record<string, string>;
|
|
@@ -988,10 +1111,12 @@ export interface RuleGroupsNamespaceSummary {
|
|
|
988
1111
|
*/
|
|
989
1112
|
export interface ListRuleGroupsNamespacesResponse {
|
|
990
1113
|
/**
|
|
1114
|
+
* @public
|
|
991
1115
|
* The list of the selected rule groups namespaces.
|
|
992
1116
|
*/
|
|
993
1117
|
ruleGroupsNamespaces: RuleGroupsNamespaceSummary[] | undefined;
|
|
994
1118
|
/**
|
|
1119
|
+
* @public
|
|
995
1120
|
* Pagination token to use when requesting the next page in this list.
|
|
996
1121
|
*/
|
|
997
1122
|
nextToken?: string;
|
|
@@ -1002,18 +1127,22 @@ export interface ListRuleGroupsNamespacesResponse {
|
|
|
1002
1127
|
*/
|
|
1003
1128
|
export interface PutRuleGroupsNamespaceRequest {
|
|
1004
1129
|
/**
|
|
1130
|
+
* @public
|
|
1005
1131
|
* The ID of the workspace in which to update the rule group namespace.
|
|
1006
1132
|
*/
|
|
1007
1133
|
workspaceId: string | undefined;
|
|
1008
1134
|
/**
|
|
1135
|
+
* @public
|
|
1009
1136
|
* The rule groups namespace name.
|
|
1010
1137
|
*/
|
|
1011
1138
|
name: string | undefined;
|
|
1012
1139
|
/**
|
|
1140
|
+
* @public
|
|
1013
1141
|
* The namespace data that define the rule groups.
|
|
1014
1142
|
*/
|
|
1015
1143
|
data: Uint8Array | undefined;
|
|
1016
1144
|
/**
|
|
1145
|
+
* @public
|
|
1017
1146
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
1018
1147
|
*/
|
|
1019
1148
|
clientToken?: string;
|
|
@@ -1024,18 +1153,22 @@ export interface PutRuleGroupsNamespaceRequest {
|
|
|
1024
1153
|
*/
|
|
1025
1154
|
export interface PutRuleGroupsNamespaceResponse {
|
|
1026
1155
|
/**
|
|
1156
|
+
* @public
|
|
1027
1157
|
* The rule groups namespace name.
|
|
1028
1158
|
*/
|
|
1029
1159
|
name: string | undefined;
|
|
1030
1160
|
/**
|
|
1161
|
+
* @public
|
|
1031
1162
|
* The Amazon Resource Name (ARN) of this rule groups namespace.
|
|
1032
1163
|
*/
|
|
1033
1164
|
arn: string | undefined;
|
|
1034
1165
|
/**
|
|
1166
|
+
* @public
|
|
1035
1167
|
* The status of rule groups namespace.
|
|
1036
1168
|
*/
|
|
1037
1169
|
status: RuleGroupsNamespaceStatus | undefined;
|
|
1038
1170
|
/**
|
|
1171
|
+
* @public
|
|
1039
1172
|
* The tags of this rule groups namespace.
|
|
1040
1173
|
*/
|
|
1041
1174
|
tags?: Record<string, string>;
|
|
@@ -1046,14 +1179,17 @@ export interface PutRuleGroupsNamespaceResponse {
|
|
|
1046
1179
|
*/
|
|
1047
1180
|
export interface UpdateWorkspaceAliasRequest {
|
|
1048
1181
|
/**
|
|
1182
|
+
* @public
|
|
1049
1183
|
* The ID of the workspace being updated.
|
|
1050
1184
|
*/
|
|
1051
1185
|
workspaceId: string | undefined;
|
|
1052
1186
|
/**
|
|
1187
|
+
* @public
|
|
1053
1188
|
* The new alias of the workspace.
|
|
1054
1189
|
*/
|
|
1055
1190
|
alias?: string;
|
|
1056
1191
|
/**
|
|
1192
|
+
* @public
|
|
1057
1193
|
* Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
|
|
1058
1194
|
*/
|
|
1059
1195
|
clientToken?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amp",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.382.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|