@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ResourceGroups.d.ts +286 -85
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +220 -89
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +16 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +531 -492
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +194 -50
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- 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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
export declare enum QueryType {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export interface ResourceQuery {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
export interface DeleteGroupOutput {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
}
|
|
143
|
-
export interface
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}
|
|
168
|
-
export interface
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
export interface
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
}
|
|
228
|
-
export declare enum
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
export interface
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
}
|
|
337
|
-
export interface
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
}
|
|
349
|
-
export interface
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
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;
|