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