@aws-sdk/client-resource-groups 3.169.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ResourceGroups.d.ts +270 -85
  3. package/dist-types/ts3.4/ResourceGroupsClient.d.ts +195 -89
  4. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/TagCommand.d.ts +30 -17
  16. package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/UntagCommand.d.ts +30 -17
  18. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/index.d.ts +16 -16
  21. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  22. package/dist-types/ts3.4/index.d.ts +6 -6
  23. package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +7 -6
  24. package/dist-types/ts3.4/models/index.d.ts +1 -1
  25. package/dist-types/ts3.4/models/models_0.d.ts +397 -492
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/SearchResourcesPaginator.d.ts +11 -4
  30. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  31. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +194 -50
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  36. package/package.json +34 -34
@@ -1,492 +1,397 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
3
-
4
- export declare class BadRequestException extends __BaseException {
5
- readonly name: "BadRequestException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
10
- }
11
-
12
- export interface GroupConfigurationParameter {
13
-
14
- Name: string | undefined;
15
-
16
- Values?: string[];
17
- }
18
-
19
- export interface GroupConfigurationItem {
20
-
21
- Type: string | undefined;
22
-
23
- Parameters?: GroupConfigurationParameter[];
24
- }
25
- export declare enum QueryType {
26
- CLOUDFORMATION_STACK_1_0 = "CLOUDFORMATION_STACK_1_0",
27
- TAG_FILTERS_1_0 = "TAG_FILTERS_1_0"
28
- }
29
-
30
- export interface ResourceQuery {
31
-
32
- Type: QueryType | string | undefined;
33
-
34
- Query: string | undefined;
35
- }
36
- export interface CreateGroupInput {
37
-
38
- Name: string | undefined;
39
-
40
- Description?: string;
41
-
42
- ResourceQuery?: ResourceQuery;
43
-
44
- Tags?: Record<string, string>;
45
-
46
- Configuration?: GroupConfigurationItem[];
47
- }
48
-
49
- export interface Group {
50
-
51
- GroupArn: string | undefined;
52
-
53
- Name: string | undefined;
54
-
55
- Description?: string;
56
- }
57
- export declare enum GroupConfigurationStatus {
58
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
59
- UPDATE_FAILED = "UPDATE_FAILED",
60
- UPDATING = "UPDATING"
61
- }
62
-
63
- export interface GroupConfiguration {
64
-
65
- Configuration?: GroupConfigurationItem[];
66
-
67
- ProposedConfiguration?: GroupConfigurationItem[];
68
-
69
- Status?: GroupConfigurationStatus | string;
70
-
71
- FailureReason?: string;
72
- }
73
- export interface CreateGroupOutput {
74
-
75
- Group?: Group;
76
-
77
- ResourceQuery?: ResourceQuery;
78
-
79
- Tags?: Record<string, string>;
80
-
81
- GroupConfiguration?: GroupConfiguration;
82
- }
83
-
84
- export declare class ForbiddenException extends __BaseException {
85
- readonly name: "ForbiddenException";
86
- readonly $fault: "client";
87
- Message?: string;
88
-
89
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
90
- }
91
-
92
- export declare class InternalServerErrorException extends __BaseException {
93
- readonly name: "InternalServerErrorException";
94
- readonly $fault: "server";
95
- Message?: string;
96
-
97
- constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
98
- }
99
-
100
- export declare class MethodNotAllowedException extends __BaseException {
101
- readonly name: "MethodNotAllowedException";
102
- readonly $fault: "client";
103
- Message?: string;
104
-
105
- constructor(opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>);
106
- }
107
-
108
- export declare class TooManyRequestsException extends __BaseException {
109
- readonly name: "TooManyRequestsException";
110
- readonly $fault: "client";
111
- Message?: string;
112
-
113
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
114
- }
115
- export interface DeleteGroupInput {
116
-
117
- GroupName?: string;
118
-
119
- Group?: string;
120
- }
121
- export interface DeleteGroupOutput {
122
-
123
- Group?: Group;
124
- }
125
-
126
- export declare class NotFoundException extends __BaseException {
127
- readonly name: "NotFoundException";
128
- readonly $fault: "client";
129
- Message?: string;
130
-
131
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
132
- }
133
- export interface GetGroupInput {
134
-
135
- GroupName?: string;
136
-
137
- Group?: string;
138
- }
139
- export interface GetGroupOutput {
140
-
141
- Group?: Group;
142
- }
143
- export interface GetGroupConfigurationInput {
144
-
145
- Group?: string;
146
- }
147
- export interface GetGroupConfigurationOutput {
148
-
149
- GroupConfiguration?: GroupConfiguration;
150
- }
151
- export interface GetGroupQueryInput {
152
-
153
- GroupName?: string;
154
-
155
- Group?: string;
156
- }
157
-
158
- export interface GroupQuery {
159
-
160
- GroupName: string | undefined;
161
-
162
- ResourceQuery: ResourceQuery | undefined;
163
- }
164
- export interface GetGroupQueryOutput {
165
-
166
- GroupQuery?: GroupQuery;
167
- }
168
- export interface GetTagsInput {
169
-
170
- Arn: string | undefined;
171
- }
172
- export interface GetTagsOutput {
173
-
174
- Arn?: string;
175
-
176
- Tags?: Record<string, string>;
177
- }
178
- export interface GroupResourcesInput {
179
-
180
- Group: string | undefined;
181
-
182
- ResourceArns: string[] | undefined;
183
- }
184
-
185
- export interface FailedResource {
186
-
187
- ResourceArn?: string;
188
-
189
- ErrorMessage?: string;
190
-
191
- ErrorCode?: string;
192
- }
193
-
194
- export interface PendingResource {
195
-
196
- ResourceArn?: string;
197
- }
198
- export interface GroupResourcesOutput {
199
-
200
- Succeeded?: string[];
201
-
202
- Failed?: FailedResource[];
203
-
204
- Pending?: PendingResource[];
205
- }
206
- export declare enum ResourceFilterName {
207
- ResourceType = "resource-type"
208
- }
209
-
210
- export interface ResourceFilter {
211
-
212
- Name: ResourceFilterName | string | undefined;
213
-
214
- Values: string[] | undefined;
215
- }
216
- export interface ListGroupResourcesInput {
217
-
218
- GroupName?: string;
219
-
220
- Group?: string;
221
-
222
- Filters?: ResourceFilter[];
223
-
224
- MaxResults?: number;
225
-
226
- NextToken?: string;
227
- }
228
- export declare enum QueryErrorCode {
229
- CLOUDFORMATION_STACK_INACTIVE = "CLOUDFORMATION_STACK_INACTIVE",
230
- CLOUDFORMATION_STACK_NOT_EXISTING = "CLOUDFORMATION_STACK_NOT_EXISTING"
231
- }
232
-
233
- export interface QueryError {
234
-
235
- ErrorCode?: QueryErrorCode | string;
236
-
237
- Message?: string;
238
- }
239
-
240
- export interface ResourceIdentifier {
241
-
242
- ResourceArn?: string;
243
-
244
- ResourceType?: string;
245
- }
246
- export declare enum ResourceStatusValue {
247
- Pending = "PENDING"
248
- }
249
-
250
- export interface ResourceStatus {
251
-
252
- Name?: ResourceStatusValue | string;
253
- }
254
-
255
- export interface ListGroupResourcesItem {
256
-
257
- Identifier?: ResourceIdentifier;
258
-
259
- Status?: ResourceStatus;
260
- }
261
- export interface ListGroupResourcesOutput {
262
-
263
- Resources?: ListGroupResourcesItem[];
264
-
265
- ResourceIdentifiers?: ResourceIdentifier[];
266
-
267
- NextToken?: string;
268
-
269
- QueryErrors?: QueryError[];
270
- }
271
-
272
- export declare class UnauthorizedException extends __BaseException {
273
- readonly name: "UnauthorizedException";
274
- readonly $fault: "client";
275
- Message?: string;
276
-
277
- constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
278
- }
279
- export declare enum GroupFilterName {
280
- ConfigurationType = "configuration-type",
281
- ResourceType = "resource-type"
282
- }
283
-
284
- export interface GroupFilter {
285
-
286
- Name: GroupFilterName | string | undefined;
287
-
288
- Values: string[] | undefined;
289
- }
290
- export interface ListGroupsInput {
291
-
292
- Filters?: GroupFilter[];
293
-
294
- MaxResults?: number;
295
-
296
- NextToken?: string;
297
- }
298
-
299
- export interface GroupIdentifier {
300
-
301
- GroupName?: string;
302
-
303
- GroupArn?: string;
304
- }
305
- export interface ListGroupsOutput {
306
-
307
- GroupIdentifiers?: GroupIdentifier[];
308
-
309
- Groups?: Group[];
310
-
311
- NextToken?: string;
312
- }
313
- export interface PutGroupConfigurationInput {
314
-
315
- Group?: string;
316
-
317
- Configuration?: GroupConfigurationItem[];
318
- }
319
- export interface PutGroupConfigurationOutput {
320
- }
321
- export interface SearchResourcesInput {
322
-
323
- ResourceQuery: ResourceQuery | undefined;
324
-
325
- MaxResults?: number;
326
-
327
- NextToken?: string;
328
- }
329
- export interface SearchResourcesOutput {
330
-
331
- ResourceIdentifiers?: ResourceIdentifier[];
332
-
333
- NextToken?: string;
334
-
335
- QueryErrors?: QueryError[];
336
- }
337
- export interface TagInput {
338
-
339
- Arn: string | undefined;
340
-
341
- Tags: Record<string, string> | undefined;
342
- }
343
- export interface TagOutput {
344
-
345
- Arn?: string;
346
-
347
- Tags?: Record<string, string>;
348
- }
349
- export interface UngroupResourcesInput {
350
-
351
- Group: string | undefined;
352
-
353
- ResourceArns: string[] | undefined;
354
- }
355
- export interface UngroupResourcesOutput {
356
-
357
- Succeeded?: string[];
358
-
359
- Failed?: FailedResource[];
360
-
361
- Pending?: PendingResource[];
362
- }
363
- export interface UntagInput {
364
-
365
- Arn: string | undefined;
366
-
367
- Keys: string[] | undefined;
368
- }
369
- export interface UntagOutput {
370
-
371
- Arn?: string;
372
-
373
- Keys?: string[];
374
- }
375
- export interface UpdateGroupInput {
376
-
377
- GroupName?: string;
378
-
379
- Group?: string;
380
-
381
- Description?: string;
382
- }
383
- export interface UpdateGroupOutput {
384
-
385
- Group?: Group;
386
- }
387
- export interface UpdateGroupQueryInput {
388
-
389
- GroupName?: string;
390
-
391
- Group?: string;
392
-
393
- ResourceQuery: ResourceQuery | undefined;
394
- }
395
- export interface UpdateGroupQueryOutput {
396
-
397
- GroupQuery?: GroupQuery;
398
- }
399
-
400
- export declare const GroupConfigurationParameterFilterSensitiveLog: (obj: GroupConfigurationParameter) => any;
401
-
402
- export declare const GroupConfigurationItemFilterSensitiveLog: (obj: GroupConfigurationItem) => any;
403
-
404
- export declare const ResourceQueryFilterSensitiveLog: (obj: ResourceQuery) => any;
405
-
406
- export declare const CreateGroupInputFilterSensitiveLog: (obj: CreateGroupInput) => any;
407
-
408
- export declare const GroupFilterSensitiveLog: (obj: Group) => any;
409
-
410
- export declare const GroupConfigurationFilterSensitiveLog: (obj: GroupConfiguration) => any;
411
-
412
- export declare const CreateGroupOutputFilterSensitiveLog: (obj: CreateGroupOutput) => any;
413
-
414
- export declare const DeleteGroupInputFilterSensitiveLog: (obj: DeleteGroupInput) => any;
415
-
416
- export declare const DeleteGroupOutputFilterSensitiveLog: (obj: DeleteGroupOutput) => any;
417
-
418
- export declare const GetGroupInputFilterSensitiveLog: (obj: GetGroupInput) => any;
419
-
420
- export declare const GetGroupOutputFilterSensitiveLog: (obj: GetGroupOutput) => any;
421
-
422
- export declare const GetGroupConfigurationInputFilterSensitiveLog: (obj: GetGroupConfigurationInput) => any;
423
-
424
- export declare const GetGroupConfigurationOutputFilterSensitiveLog: (obj: GetGroupConfigurationOutput) => any;
425
-
426
- export declare const GetGroupQueryInputFilterSensitiveLog: (obj: GetGroupQueryInput) => any;
427
-
428
- export declare const GroupQueryFilterSensitiveLog: (obj: GroupQuery) => any;
429
-
430
- export declare const GetGroupQueryOutputFilterSensitiveLog: (obj: GetGroupQueryOutput) => any;
431
-
432
- export declare const GetTagsInputFilterSensitiveLog: (obj: GetTagsInput) => any;
433
-
434
- export declare const GetTagsOutputFilterSensitiveLog: (obj: GetTagsOutput) => any;
435
-
436
- export declare const GroupResourcesInputFilterSensitiveLog: (obj: GroupResourcesInput) => any;
437
-
438
- export declare const FailedResourceFilterSensitiveLog: (obj: FailedResource) => any;
439
-
440
- export declare const PendingResourceFilterSensitiveLog: (obj: PendingResource) => any;
441
-
442
- export declare const GroupResourcesOutputFilterSensitiveLog: (obj: GroupResourcesOutput) => any;
443
-
444
- export declare const ResourceFilterFilterSensitiveLog: (obj: ResourceFilter) => any;
445
-
446
- export declare const ListGroupResourcesInputFilterSensitiveLog: (obj: ListGroupResourcesInput) => any;
447
-
448
- export declare const QueryErrorFilterSensitiveLog: (obj: QueryError) => any;
449
-
450
- export declare const ResourceIdentifierFilterSensitiveLog: (obj: ResourceIdentifier) => any;
451
-
452
- export declare const ResourceStatusFilterSensitiveLog: (obj: ResourceStatus) => any;
453
-
454
- export declare const ListGroupResourcesItemFilterSensitiveLog: (obj: ListGroupResourcesItem) => any;
455
-
456
- export declare const ListGroupResourcesOutputFilterSensitiveLog: (obj: ListGroupResourcesOutput) => any;
457
-
458
- export declare const GroupFilterFilterSensitiveLog: (obj: GroupFilter) => any;
459
-
460
- export declare const ListGroupsInputFilterSensitiveLog: (obj: ListGroupsInput) => any;
461
-
462
- export declare const GroupIdentifierFilterSensitiveLog: (obj: GroupIdentifier) => any;
463
-
464
- export declare const ListGroupsOutputFilterSensitiveLog: (obj: ListGroupsOutput) => any;
465
-
466
- export declare const PutGroupConfigurationInputFilterSensitiveLog: (obj: PutGroupConfigurationInput) => any;
467
-
468
- export declare const PutGroupConfigurationOutputFilterSensitiveLog: (obj: PutGroupConfigurationOutput) => any;
469
-
470
- export declare const SearchResourcesInputFilterSensitiveLog: (obj: SearchResourcesInput) => any;
471
-
472
- export declare const SearchResourcesOutputFilterSensitiveLog: (obj: SearchResourcesOutput) => any;
473
-
474
- export declare const TagInputFilterSensitiveLog: (obj: TagInput) => any;
475
-
476
- export declare const TagOutputFilterSensitiveLog: (obj: TagOutput) => any;
477
-
478
- export declare const UngroupResourcesInputFilterSensitiveLog: (obj: UngroupResourcesInput) => any;
479
-
480
- export declare const UngroupResourcesOutputFilterSensitiveLog: (obj: UngroupResourcesOutput) => any;
481
-
482
- export declare const UntagInputFilterSensitiveLog: (obj: UntagInput) => any;
483
-
484
- export declare const UntagOutputFilterSensitiveLog: (obj: UntagOutput) => any;
485
-
486
- export declare const UpdateGroupInputFilterSensitiveLog: (obj: UpdateGroupInput) => any;
487
-
488
- export declare const UpdateGroupOutputFilterSensitiveLog: (obj: UpdateGroupOutput) => any;
489
-
490
- export declare const UpdateGroupQueryInputFilterSensitiveLog: (obj: UpdateGroupQueryInput) => any;
491
-
492
- export declare const UpdateGroupQueryOutputFilterSensitiveLog: (obj: UpdateGroupQueryOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
3
+ export declare class BadRequestException extends __BaseException {
4
+ readonly name: "BadRequestException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
9
+ );
10
+ }
11
+ export interface GroupConfigurationParameter {
12
+ Name: string | undefined;
13
+ Values?: string[];
14
+ }
15
+ export interface GroupConfigurationItem {
16
+ Type: string | undefined;
17
+ Parameters?: GroupConfigurationParameter[];
18
+ }
19
+ export declare enum QueryType {
20
+ CLOUDFORMATION_STACK_1_0 = "CLOUDFORMATION_STACK_1_0",
21
+ TAG_FILTERS_1_0 = "TAG_FILTERS_1_0",
22
+ }
23
+ export interface ResourceQuery {
24
+ Type: QueryType | string | undefined;
25
+ Query: string | undefined;
26
+ }
27
+ export interface CreateGroupInput {
28
+ Name: string | undefined;
29
+ Description?: string;
30
+ ResourceQuery?: ResourceQuery;
31
+ Tags?: Record<string, string>;
32
+ Configuration?: GroupConfigurationItem[];
33
+ }
34
+ export interface Group {
35
+ GroupArn: string | undefined;
36
+ Name: string | undefined;
37
+ Description?: string;
38
+ }
39
+ export declare enum GroupConfigurationStatus {
40
+ UPDATE_COMPLETE = "UPDATE_COMPLETE",
41
+ UPDATE_FAILED = "UPDATE_FAILED",
42
+ UPDATING = "UPDATING",
43
+ }
44
+ export interface GroupConfiguration {
45
+ Configuration?: GroupConfigurationItem[];
46
+ ProposedConfiguration?: GroupConfigurationItem[];
47
+ Status?: GroupConfigurationStatus | string;
48
+ FailureReason?: string;
49
+ }
50
+ export interface CreateGroupOutput {
51
+ Group?: Group;
52
+ ResourceQuery?: ResourceQuery;
53
+ Tags?: Record<string, string>;
54
+ GroupConfiguration?: GroupConfiguration;
55
+ }
56
+ export declare class ForbiddenException extends __BaseException {
57
+ readonly name: "ForbiddenException";
58
+ readonly $fault: "client";
59
+ Message?: string;
60
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
61
+ }
62
+ export declare class InternalServerErrorException extends __BaseException {
63
+ readonly name: "InternalServerErrorException";
64
+ readonly $fault: "server";
65
+ Message?: string;
66
+ constructor(
67
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
68
+ );
69
+ }
70
+ export declare class MethodNotAllowedException extends __BaseException {
71
+ readonly name: "MethodNotAllowedException";
72
+ readonly $fault: "client";
73
+ Message?: string;
74
+ constructor(
75
+ opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>
76
+ );
77
+ }
78
+ export declare class TooManyRequestsException extends __BaseException {
79
+ readonly name: "TooManyRequestsException";
80
+ readonly $fault: "client";
81
+ Message?: string;
82
+ constructor(
83
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
84
+ );
85
+ }
86
+ export interface DeleteGroupInput {
87
+ GroupName?: string;
88
+ Group?: string;
89
+ }
90
+ export interface DeleteGroupOutput {
91
+ Group?: Group;
92
+ }
93
+ export declare class NotFoundException extends __BaseException {
94
+ readonly name: "NotFoundException";
95
+ readonly $fault: "client";
96
+ Message?: string;
97
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
98
+ }
99
+ export interface GetGroupInput {
100
+ GroupName?: string;
101
+ Group?: string;
102
+ }
103
+ export interface GetGroupOutput {
104
+ Group?: Group;
105
+ }
106
+ export interface GetGroupConfigurationInput {
107
+ Group?: string;
108
+ }
109
+ export interface GetGroupConfigurationOutput {
110
+ GroupConfiguration?: GroupConfiguration;
111
+ }
112
+ export interface GetGroupQueryInput {
113
+ GroupName?: string;
114
+ Group?: string;
115
+ }
116
+ export interface GroupQuery {
117
+ GroupName: string | undefined;
118
+ ResourceQuery: ResourceQuery | undefined;
119
+ }
120
+ export interface GetGroupQueryOutput {
121
+ GroupQuery?: GroupQuery;
122
+ }
123
+ export interface GetTagsInput {
124
+ Arn: string | undefined;
125
+ }
126
+ export interface GetTagsOutput {
127
+ Arn?: string;
128
+ Tags?: Record<string, string>;
129
+ }
130
+ export interface GroupResourcesInput {
131
+ Group: string | undefined;
132
+ ResourceArns: string[] | undefined;
133
+ }
134
+ export interface FailedResource {
135
+ ResourceArn?: string;
136
+ ErrorMessage?: string;
137
+ ErrorCode?: string;
138
+ }
139
+ export interface PendingResource {
140
+ ResourceArn?: string;
141
+ }
142
+ export interface GroupResourcesOutput {
143
+ Succeeded?: string[];
144
+ Failed?: FailedResource[];
145
+ Pending?: PendingResource[];
146
+ }
147
+ export declare enum ResourceFilterName {
148
+ ResourceType = "resource-type",
149
+ }
150
+ export interface ResourceFilter {
151
+ Name: ResourceFilterName | string | undefined;
152
+ Values: string[] | undefined;
153
+ }
154
+ export interface ListGroupResourcesInput {
155
+ GroupName?: string;
156
+ Group?: string;
157
+ Filters?: ResourceFilter[];
158
+ MaxResults?: number;
159
+ NextToken?: string;
160
+ }
161
+ export declare enum QueryErrorCode {
162
+ CLOUDFORMATION_STACK_INACTIVE = "CLOUDFORMATION_STACK_INACTIVE",
163
+ CLOUDFORMATION_STACK_NOT_EXISTING = "CLOUDFORMATION_STACK_NOT_EXISTING",
164
+ }
165
+ export interface QueryError {
166
+ ErrorCode?: QueryErrorCode | string;
167
+ Message?: string;
168
+ }
169
+ export interface ResourceIdentifier {
170
+ ResourceArn?: string;
171
+ ResourceType?: string;
172
+ }
173
+ export declare enum ResourceStatusValue {
174
+ Pending = "PENDING",
175
+ }
176
+ export interface ResourceStatus {
177
+ Name?: ResourceStatusValue | string;
178
+ }
179
+ export interface ListGroupResourcesItem {
180
+ Identifier?: ResourceIdentifier;
181
+ Status?: ResourceStatus;
182
+ }
183
+ export interface ListGroupResourcesOutput {
184
+ Resources?: ListGroupResourcesItem[];
185
+ ResourceIdentifiers?: ResourceIdentifier[];
186
+ NextToken?: string;
187
+ QueryErrors?: QueryError[];
188
+ }
189
+ export declare class UnauthorizedException extends __BaseException {
190
+ readonly name: "UnauthorizedException";
191
+ readonly $fault: "client";
192
+ Message?: string;
193
+ constructor(
194
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
195
+ );
196
+ }
197
+ export declare enum GroupFilterName {
198
+ ConfigurationType = "configuration-type",
199
+ ResourceType = "resource-type",
200
+ }
201
+ export interface GroupFilter {
202
+ Name: GroupFilterName | string | undefined;
203
+ Values: string[] | undefined;
204
+ }
205
+ export interface ListGroupsInput {
206
+ Filters?: GroupFilter[];
207
+ MaxResults?: number;
208
+ NextToken?: string;
209
+ }
210
+ export interface GroupIdentifier {
211
+ GroupName?: string;
212
+ GroupArn?: string;
213
+ }
214
+ export interface ListGroupsOutput {
215
+ GroupIdentifiers?: GroupIdentifier[];
216
+ Groups?: Group[];
217
+ NextToken?: string;
218
+ }
219
+ export interface PutGroupConfigurationInput {
220
+ Group?: string;
221
+ Configuration?: GroupConfigurationItem[];
222
+ }
223
+ export interface PutGroupConfigurationOutput {}
224
+ export interface SearchResourcesInput {
225
+ ResourceQuery: ResourceQuery | undefined;
226
+ MaxResults?: number;
227
+ NextToken?: string;
228
+ }
229
+ export interface SearchResourcesOutput {
230
+ ResourceIdentifiers?: ResourceIdentifier[];
231
+ NextToken?: string;
232
+ QueryErrors?: QueryError[];
233
+ }
234
+ export interface TagInput {
235
+ Arn: string | undefined;
236
+ Tags: Record<string, string> | undefined;
237
+ }
238
+ export interface TagOutput {
239
+ Arn?: string;
240
+ Tags?: Record<string, string>;
241
+ }
242
+ export interface UngroupResourcesInput {
243
+ Group: string | undefined;
244
+ ResourceArns: string[] | undefined;
245
+ }
246
+ export interface UngroupResourcesOutput {
247
+ Succeeded?: string[];
248
+ Failed?: FailedResource[];
249
+ Pending?: PendingResource[];
250
+ }
251
+ export interface UntagInput {
252
+ Arn: string | undefined;
253
+ Keys: string[] | undefined;
254
+ }
255
+ export interface UntagOutput {
256
+ Arn?: string;
257
+ Keys?: string[];
258
+ }
259
+ export interface UpdateGroupInput {
260
+ GroupName?: string;
261
+ Group?: string;
262
+ Description?: string;
263
+ }
264
+ export interface UpdateGroupOutput {
265
+ Group?: Group;
266
+ }
267
+ export interface UpdateGroupQueryInput {
268
+ GroupName?: string;
269
+ Group?: string;
270
+ ResourceQuery: ResourceQuery | undefined;
271
+ }
272
+ export interface UpdateGroupQueryOutput {
273
+ GroupQuery?: GroupQuery;
274
+ }
275
+ export declare const GroupConfigurationParameterFilterSensitiveLog: (
276
+ obj: GroupConfigurationParameter
277
+ ) => any;
278
+ export declare const GroupConfigurationItemFilterSensitiveLog: (
279
+ obj: GroupConfigurationItem
280
+ ) => any;
281
+ export declare const ResourceQueryFilterSensitiveLog: (
282
+ obj: ResourceQuery
283
+ ) => any;
284
+ export declare const CreateGroupInputFilterSensitiveLog: (
285
+ obj: CreateGroupInput
286
+ ) => any;
287
+ export declare const GroupFilterSensitiveLog: (obj: Group) => any;
288
+ export declare const GroupConfigurationFilterSensitiveLog: (
289
+ obj: GroupConfiguration
290
+ ) => any;
291
+ export declare const CreateGroupOutputFilterSensitiveLog: (
292
+ obj: CreateGroupOutput
293
+ ) => any;
294
+ export declare const DeleteGroupInputFilterSensitiveLog: (
295
+ obj: DeleteGroupInput
296
+ ) => any;
297
+ export declare const DeleteGroupOutputFilterSensitiveLog: (
298
+ obj: DeleteGroupOutput
299
+ ) => any;
300
+ export declare const GetGroupInputFilterSensitiveLog: (
301
+ obj: GetGroupInput
302
+ ) => any;
303
+ export declare const GetGroupOutputFilterSensitiveLog: (
304
+ obj: GetGroupOutput
305
+ ) => any;
306
+ export declare const GetGroupConfigurationInputFilterSensitiveLog: (
307
+ obj: GetGroupConfigurationInput
308
+ ) => any;
309
+ export declare const GetGroupConfigurationOutputFilterSensitiveLog: (
310
+ obj: GetGroupConfigurationOutput
311
+ ) => any;
312
+ export declare const GetGroupQueryInputFilterSensitiveLog: (
313
+ obj: GetGroupQueryInput
314
+ ) => any;
315
+ export declare const GroupQueryFilterSensitiveLog: (obj: GroupQuery) => any;
316
+ export declare const GetGroupQueryOutputFilterSensitiveLog: (
317
+ obj: GetGroupQueryOutput
318
+ ) => any;
319
+ export declare const GetTagsInputFilterSensitiveLog: (obj: GetTagsInput) => any;
320
+ export declare const GetTagsOutputFilterSensitiveLog: (
321
+ obj: GetTagsOutput
322
+ ) => any;
323
+ export declare const GroupResourcesInputFilterSensitiveLog: (
324
+ obj: GroupResourcesInput
325
+ ) => any;
326
+ export declare const FailedResourceFilterSensitiveLog: (
327
+ obj: FailedResource
328
+ ) => any;
329
+ export declare const PendingResourceFilterSensitiveLog: (
330
+ obj: PendingResource
331
+ ) => any;
332
+ export declare const GroupResourcesOutputFilterSensitiveLog: (
333
+ obj: GroupResourcesOutput
334
+ ) => any;
335
+ export declare const ResourceFilterFilterSensitiveLog: (
336
+ obj: ResourceFilter
337
+ ) => any;
338
+ export declare const ListGroupResourcesInputFilterSensitiveLog: (
339
+ obj: ListGroupResourcesInput
340
+ ) => any;
341
+ export declare const QueryErrorFilterSensitiveLog: (obj: QueryError) => any;
342
+ export declare const ResourceIdentifierFilterSensitiveLog: (
343
+ obj: ResourceIdentifier
344
+ ) => any;
345
+ export declare const ResourceStatusFilterSensitiveLog: (
346
+ obj: ResourceStatus
347
+ ) => any;
348
+ export declare const ListGroupResourcesItemFilterSensitiveLog: (
349
+ obj: ListGroupResourcesItem
350
+ ) => any;
351
+ export declare const ListGroupResourcesOutputFilterSensitiveLog: (
352
+ obj: ListGroupResourcesOutput
353
+ ) => any;
354
+ export declare const GroupFilterFilterSensitiveLog: (obj: GroupFilter) => any;
355
+ export declare const ListGroupsInputFilterSensitiveLog: (
356
+ obj: ListGroupsInput
357
+ ) => any;
358
+ export declare const GroupIdentifierFilterSensitiveLog: (
359
+ obj: GroupIdentifier
360
+ ) => any;
361
+ export declare const ListGroupsOutputFilterSensitiveLog: (
362
+ obj: ListGroupsOutput
363
+ ) => any;
364
+ export declare const PutGroupConfigurationInputFilterSensitiveLog: (
365
+ obj: PutGroupConfigurationInput
366
+ ) => any;
367
+ export declare const PutGroupConfigurationOutputFilterSensitiveLog: (
368
+ obj: PutGroupConfigurationOutput
369
+ ) => any;
370
+ export declare const SearchResourcesInputFilterSensitiveLog: (
371
+ obj: SearchResourcesInput
372
+ ) => any;
373
+ export declare const SearchResourcesOutputFilterSensitiveLog: (
374
+ obj: SearchResourcesOutput
375
+ ) => any;
376
+ export declare const TagInputFilterSensitiveLog: (obj: TagInput) => any;
377
+ export declare const TagOutputFilterSensitiveLog: (obj: TagOutput) => any;
378
+ export declare const UngroupResourcesInputFilterSensitiveLog: (
379
+ obj: UngroupResourcesInput
380
+ ) => any;
381
+ export declare const UngroupResourcesOutputFilterSensitiveLog: (
382
+ obj: UngroupResourcesOutput
383
+ ) => any;
384
+ export declare const UntagInputFilterSensitiveLog: (obj: UntagInput) => any;
385
+ export declare const UntagOutputFilterSensitiveLog: (obj: UntagOutput) => any;
386
+ export declare const UpdateGroupInputFilterSensitiveLog: (
387
+ obj: UpdateGroupInput
388
+ ) => any;
389
+ export declare const UpdateGroupOutputFilterSensitiveLog: (
390
+ obj: UpdateGroupOutput
391
+ ) => any;
392
+ export declare const UpdateGroupQueryInputFilterSensitiveLog: (
393
+ obj: UpdateGroupQueryInput
394
+ ) => any;
395
+ export declare const UpdateGroupQueryOutputFilterSensitiveLog: (
396
+ obj: UpdateGroupQueryOutput
397
+ ) => any;