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