@aws-sdk/client-resource-groups 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -2
- package/dist-cjs/commands/GetGroupCommand.js +2 -2
- package/dist-cjs/commands/GetGroupConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetGroupQueryCommand.js +2 -2
- package/dist-cjs/commands/GetTagsCommand.js +2 -2
- package/dist-cjs/commands/GroupResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListGroupResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListGroupsCommand.js +2 -2
- package/dist-cjs/commands/PutGroupConfigurationCommand.js +2 -2
- package/dist-cjs/commands/SearchResourcesCommand.js +2 -2
- package/dist-cjs/commands/TagCommand.js +2 -2
- package/dist-cjs/commands/UngroupResourcesCommand.js +2 -2
- package/dist-cjs/commands/UntagCommand.js +2 -2
- package/dist-cjs/commands/UpdateGroupCommand.js +2 -2
- package/dist-cjs/commands/UpdateGroupQueryCommand.js +2 -2
- package/dist-cjs/models/models_0.js +190 -284
- package/dist-es/commands/CreateGroupCommand.js +3 -3
- package/dist-es/commands/DeleteGroupCommand.js +3 -3
- package/dist-es/commands/GetGroupCommand.js +3 -3
- package/dist-es/commands/GetGroupConfigurationCommand.js +3 -3
- package/dist-es/commands/GetGroupQueryCommand.js +3 -3
- package/dist-es/commands/GetTagsCommand.js +3 -3
- package/dist-es/commands/GroupResourcesCommand.js +3 -3
- package/dist-es/commands/ListGroupResourcesCommand.js +3 -3
- package/dist-es/commands/ListGroupsCommand.js +3 -3
- package/dist-es/commands/PutGroupConfigurationCommand.js +3 -3
- package/dist-es/commands/SearchResourcesCommand.js +3 -3
- package/dist-es/commands/TagCommand.js +3 -3
- package/dist-es/commands/UngroupResourcesCommand.js +3 -3
- package/dist-es/commands/UntagCommand.js +3 -3
- package/dist-es/commands/UpdateGroupCommand.js +3 -3
- package/dist-es/commands/UpdateGroupQueryCommand.js +3 -3
- package/dist-es/models/models_0.js +47 -188
- package/dist-types/models/models_0.d.ts +188 -282
- package/dist-types/ts3.4/models/models_0.d.ts +94 -188
- package/package.json +7 -7
|
@@ -15,10 +15,6 @@ export interface GroupConfigurationParameter {
|
|
|
15
15
|
|
|
16
16
|
Values?: string[];
|
|
17
17
|
}
|
|
18
|
-
export declare namespace GroupConfigurationParameter {
|
|
19
|
-
|
|
20
|
-
const filterSensitiveLog: (obj: GroupConfigurationParameter) => any;
|
|
21
|
-
}
|
|
22
18
|
|
|
23
19
|
export interface GroupConfigurationItem {
|
|
24
20
|
|
|
@@ -26,10 +22,6 @@ export interface GroupConfigurationItem {
|
|
|
26
22
|
|
|
27
23
|
Parameters?: GroupConfigurationParameter[];
|
|
28
24
|
}
|
|
29
|
-
export declare namespace GroupConfigurationItem {
|
|
30
|
-
|
|
31
|
-
const filterSensitiveLog: (obj: GroupConfigurationItem) => any;
|
|
32
|
-
}
|
|
33
25
|
export declare enum QueryType {
|
|
34
26
|
CLOUDFORMATION_STACK_1_0 = "CLOUDFORMATION_STACK_1_0",
|
|
35
27
|
TAG_FILTERS_1_0 = "TAG_FILTERS_1_0"
|
|
@@ -41,10 +33,6 @@ export interface ResourceQuery {
|
|
|
41
33
|
|
|
42
34
|
Query: string | undefined;
|
|
43
35
|
}
|
|
44
|
-
export declare namespace ResourceQuery {
|
|
45
|
-
|
|
46
|
-
const filterSensitiveLog: (obj: ResourceQuery) => any;
|
|
47
|
-
}
|
|
48
36
|
export interface CreateGroupInput {
|
|
49
37
|
|
|
50
38
|
Name: string | undefined;
|
|
@@ -57,10 +45,6 @@ export interface CreateGroupInput {
|
|
|
57
45
|
|
|
58
46
|
Configuration?: GroupConfigurationItem[];
|
|
59
47
|
}
|
|
60
|
-
export declare namespace CreateGroupInput {
|
|
61
|
-
|
|
62
|
-
const filterSensitiveLog: (obj: CreateGroupInput) => any;
|
|
63
|
-
}
|
|
64
48
|
|
|
65
49
|
export interface Group {
|
|
66
50
|
|
|
@@ -70,10 +54,6 @@ export interface Group {
|
|
|
70
54
|
|
|
71
55
|
Description?: string;
|
|
72
56
|
}
|
|
73
|
-
export declare namespace Group {
|
|
74
|
-
|
|
75
|
-
const filterSensitiveLog: (obj: Group) => any;
|
|
76
|
-
}
|
|
77
57
|
export declare enum GroupConfigurationStatus {
|
|
78
58
|
UPDATE_COMPLETE = "UPDATE_COMPLETE",
|
|
79
59
|
UPDATE_FAILED = "UPDATE_FAILED",
|
|
@@ -90,10 +70,6 @@ export interface GroupConfiguration {
|
|
|
90
70
|
|
|
91
71
|
FailureReason?: string;
|
|
92
72
|
}
|
|
93
|
-
export declare namespace GroupConfiguration {
|
|
94
|
-
|
|
95
|
-
const filterSensitiveLog: (obj: GroupConfiguration) => any;
|
|
96
|
-
}
|
|
97
73
|
export interface CreateGroupOutput {
|
|
98
74
|
|
|
99
75
|
Group?: Group;
|
|
@@ -104,10 +80,6 @@ export interface CreateGroupOutput {
|
|
|
104
80
|
|
|
105
81
|
GroupConfiguration?: GroupConfiguration;
|
|
106
82
|
}
|
|
107
|
-
export declare namespace CreateGroupOutput {
|
|
108
|
-
|
|
109
|
-
const filterSensitiveLog: (obj: CreateGroupOutput) => any;
|
|
110
|
-
}
|
|
111
83
|
|
|
112
84
|
export declare class ForbiddenException extends __BaseException {
|
|
113
85
|
readonly name: "ForbiddenException";
|
|
@@ -146,18 +118,10 @@ export interface DeleteGroupInput {
|
|
|
146
118
|
|
|
147
119
|
Group?: string;
|
|
148
120
|
}
|
|
149
|
-
export declare namespace DeleteGroupInput {
|
|
150
|
-
|
|
151
|
-
const filterSensitiveLog: (obj: DeleteGroupInput) => any;
|
|
152
|
-
}
|
|
153
121
|
export interface DeleteGroupOutput {
|
|
154
122
|
|
|
155
123
|
Group?: Group;
|
|
156
124
|
}
|
|
157
|
-
export declare namespace DeleteGroupOutput {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: DeleteGroupOutput) => any;
|
|
160
|
-
}
|
|
161
125
|
|
|
162
126
|
export declare class NotFoundException extends __BaseException {
|
|
163
127
|
readonly name: "NotFoundException";
|
|
@@ -172,44 +136,24 @@ export interface GetGroupInput {
|
|
|
172
136
|
|
|
173
137
|
Group?: string;
|
|
174
138
|
}
|
|
175
|
-
export declare namespace GetGroupInput {
|
|
176
|
-
|
|
177
|
-
const filterSensitiveLog: (obj: GetGroupInput) => any;
|
|
178
|
-
}
|
|
179
139
|
export interface GetGroupOutput {
|
|
180
140
|
|
|
181
141
|
Group?: Group;
|
|
182
142
|
}
|
|
183
|
-
export declare namespace GetGroupOutput {
|
|
184
|
-
|
|
185
|
-
const filterSensitiveLog: (obj: GetGroupOutput) => any;
|
|
186
|
-
}
|
|
187
143
|
export interface GetGroupConfigurationInput {
|
|
188
144
|
|
|
189
145
|
Group?: string;
|
|
190
146
|
}
|
|
191
|
-
export declare namespace GetGroupConfigurationInput {
|
|
192
|
-
|
|
193
|
-
const filterSensitiveLog: (obj: GetGroupConfigurationInput) => any;
|
|
194
|
-
}
|
|
195
147
|
export interface GetGroupConfigurationOutput {
|
|
196
148
|
|
|
197
149
|
GroupConfiguration?: GroupConfiguration;
|
|
198
150
|
}
|
|
199
|
-
export declare namespace GetGroupConfigurationOutput {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: GetGroupConfigurationOutput) => any;
|
|
202
|
-
}
|
|
203
151
|
export interface GetGroupQueryInput {
|
|
204
152
|
|
|
205
153
|
GroupName?: string;
|
|
206
154
|
|
|
207
155
|
Group?: string;
|
|
208
156
|
}
|
|
209
|
-
export declare namespace GetGroupQueryInput {
|
|
210
|
-
|
|
211
|
-
const filterSensitiveLog: (obj: GetGroupQueryInput) => any;
|
|
212
|
-
}
|
|
213
157
|
|
|
214
158
|
export interface GroupQuery {
|
|
215
159
|
|
|
@@ -217,46 +161,26 @@ export interface GroupQuery {
|
|
|
217
161
|
|
|
218
162
|
ResourceQuery: ResourceQuery | undefined;
|
|
219
163
|
}
|
|
220
|
-
export declare namespace GroupQuery {
|
|
221
|
-
|
|
222
|
-
const filterSensitiveLog: (obj: GroupQuery) => any;
|
|
223
|
-
}
|
|
224
164
|
export interface GetGroupQueryOutput {
|
|
225
165
|
|
|
226
166
|
GroupQuery?: GroupQuery;
|
|
227
167
|
}
|
|
228
|
-
export declare namespace GetGroupQueryOutput {
|
|
229
|
-
|
|
230
|
-
const filterSensitiveLog: (obj: GetGroupQueryOutput) => any;
|
|
231
|
-
}
|
|
232
168
|
export interface GetTagsInput {
|
|
233
169
|
|
|
234
170
|
Arn: string | undefined;
|
|
235
171
|
}
|
|
236
|
-
export declare namespace GetTagsInput {
|
|
237
|
-
|
|
238
|
-
const filterSensitiveLog: (obj: GetTagsInput) => any;
|
|
239
|
-
}
|
|
240
172
|
export interface GetTagsOutput {
|
|
241
173
|
|
|
242
174
|
Arn?: string;
|
|
243
175
|
|
|
244
176
|
Tags?: Record<string, string>;
|
|
245
177
|
}
|
|
246
|
-
export declare namespace GetTagsOutput {
|
|
247
|
-
|
|
248
|
-
const filterSensitiveLog: (obj: GetTagsOutput) => any;
|
|
249
|
-
}
|
|
250
178
|
export interface GroupResourcesInput {
|
|
251
179
|
|
|
252
180
|
Group: string | undefined;
|
|
253
181
|
|
|
254
182
|
ResourceArns: string[] | undefined;
|
|
255
183
|
}
|
|
256
|
-
export declare namespace GroupResourcesInput {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: GroupResourcesInput) => any;
|
|
259
|
-
}
|
|
260
184
|
|
|
261
185
|
export interface FailedResource {
|
|
262
186
|
|
|
@@ -266,19 +190,11 @@ export interface FailedResource {
|
|
|
266
190
|
|
|
267
191
|
ErrorCode?: string;
|
|
268
192
|
}
|
|
269
|
-
export declare namespace FailedResource {
|
|
270
|
-
|
|
271
|
-
const filterSensitiveLog: (obj: FailedResource) => any;
|
|
272
|
-
}
|
|
273
193
|
|
|
274
194
|
export interface PendingResource {
|
|
275
195
|
|
|
276
196
|
ResourceArn?: string;
|
|
277
197
|
}
|
|
278
|
-
export declare namespace PendingResource {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: PendingResource) => any;
|
|
281
|
-
}
|
|
282
198
|
export interface GroupResourcesOutput {
|
|
283
199
|
|
|
284
200
|
Succeeded?: string[];
|
|
@@ -287,10 +203,6 @@ export interface GroupResourcesOutput {
|
|
|
287
203
|
|
|
288
204
|
Pending?: PendingResource[];
|
|
289
205
|
}
|
|
290
|
-
export declare namespace GroupResourcesOutput {
|
|
291
|
-
|
|
292
|
-
const filterSensitiveLog: (obj: GroupResourcesOutput) => any;
|
|
293
|
-
}
|
|
294
206
|
export declare enum ResourceFilterName {
|
|
295
207
|
ResourceType = "resource-type"
|
|
296
208
|
}
|
|
@@ -301,10 +213,6 @@ export interface ResourceFilter {
|
|
|
301
213
|
|
|
302
214
|
Values: string[] | undefined;
|
|
303
215
|
}
|
|
304
|
-
export declare namespace ResourceFilter {
|
|
305
|
-
|
|
306
|
-
const filterSensitiveLog: (obj: ResourceFilter) => any;
|
|
307
|
-
}
|
|
308
216
|
export interface ListGroupResourcesInput {
|
|
309
217
|
|
|
310
218
|
GroupName?: string;
|
|
@@ -317,10 +225,6 @@ export interface ListGroupResourcesInput {
|
|
|
317
225
|
|
|
318
226
|
NextToken?: string;
|
|
319
227
|
}
|
|
320
|
-
export declare namespace ListGroupResourcesInput {
|
|
321
|
-
|
|
322
|
-
const filterSensitiveLog: (obj: ListGroupResourcesInput) => any;
|
|
323
|
-
}
|
|
324
228
|
export declare enum QueryErrorCode {
|
|
325
229
|
CLOUDFORMATION_STACK_INACTIVE = "CLOUDFORMATION_STACK_INACTIVE",
|
|
326
230
|
CLOUDFORMATION_STACK_NOT_EXISTING = "CLOUDFORMATION_STACK_NOT_EXISTING"
|
|
@@ -332,10 +236,6 @@ export interface QueryError {
|
|
|
332
236
|
|
|
333
237
|
Message?: string;
|
|
334
238
|
}
|
|
335
|
-
export declare namespace QueryError {
|
|
336
|
-
|
|
337
|
-
const filterSensitiveLog: (obj: QueryError) => any;
|
|
338
|
-
}
|
|
339
239
|
|
|
340
240
|
export interface ResourceIdentifier {
|
|
341
241
|
|
|
@@ -343,10 +243,6 @@ export interface ResourceIdentifier {
|
|
|
343
243
|
|
|
344
244
|
ResourceType?: string;
|
|
345
245
|
}
|
|
346
|
-
export declare namespace ResourceIdentifier {
|
|
347
|
-
|
|
348
|
-
const filterSensitiveLog: (obj: ResourceIdentifier) => any;
|
|
349
|
-
}
|
|
350
246
|
export declare enum ResourceStatusValue {
|
|
351
247
|
Pending = "PENDING"
|
|
352
248
|
}
|
|
@@ -355,10 +251,6 @@ export interface ResourceStatus {
|
|
|
355
251
|
|
|
356
252
|
Name?: ResourceStatusValue | string;
|
|
357
253
|
}
|
|
358
|
-
export declare namespace ResourceStatus {
|
|
359
|
-
|
|
360
|
-
const filterSensitiveLog: (obj: ResourceStatus) => any;
|
|
361
|
-
}
|
|
362
254
|
|
|
363
255
|
export interface ListGroupResourcesItem {
|
|
364
256
|
|
|
@@ -366,10 +258,6 @@ export interface ListGroupResourcesItem {
|
|
|
366
258
|
|
|
367
259
|
Status?: ResourceStatus;
|
|
368
260
|
}
|
|
369
|
-
export declare namespace ListGroupResourcesItem {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: ListGroupResourcesItem) => any;
|
|
372
|
-
}
|
|
373
261
|
export interface ListGroupResourcesOutput {
|
|
374
262
|
|
|
375
263
|
Resources?: ListGroupResourcesItem[];
|
|
@@ -380,10 +268,6 @@ export interface ListGroupResourcesOutput {
|
|
|
380
268
|
|
|
381
269
|
QueryErrors?: QueryError[];
|
|
382
270
|
}
|
|
383
|
-
export declare namespace ListGroupResourcesOutput {
|
|
384
|
-
|
|
385
|
-
const filterSensitiveLog: (obj: ListGroupResourcesOutput) => any;
|
|
386
|
-
}
|
|
387
271
|
|
|
388
272
|
export declare class UnauthorizedException extends __BaseException {
|
|
389
273
|
readonly name: "UnauthorizedException";
|
|
@@ -403,10 +287,6 @@ export interface GroupFilter {
|
|
|
403
287
|
|
|
404
288
|
Values: string[] | undefined;
|
|
405
289
|
}
|
|
406
|
-
export declare namespace GroupFilter {
|
|
407
|
-
|
|
408
|
-
const filterSensitiveLog: (obj: GroupFilter) => any;
|
|
409
|
-
}
|
|
410
290
|
export interface ListGroupsInput {
|
|
411
291
|
|
|
412
292
|
Filters?: GroupFilter[];
|
|
@@ -415,10 +295,6 @@ export interface ListGroupsInput {
|
|
|
415
295
|
|
|
416
296
|
NextToken?: string;
|
|
417
297
|
}
|
|
418
|
-
export declare namespace ListGroupsInput {
|
|
419
|
-
|
|
420
|
-
const filterSensitiveLog: (obj: ListGroupsInput) => any;
|
|
421
|
-
}
|
|
422
298
|
|
|
423
299
|
export interface GroupIdentifier {
|
|
424
300
|
|
|
@@ -426,10 +302,6 @@ export interface GroupIdentifier {
|
|
|
426
302
|
|
|
427
303
|
GroupArn?: string;
|
|
428
304
|
}
|
|
429
|
-
export declare namespace GroupIdentifier {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: GroupIdentifier) => any;
|
|
432
|
-
}
|
|
433
305
|
export interface ListGroupsOutput {
|
|
434
306
|
|
|
435
307
|
GroupIdentifiers?: GroupIdentifier[];
|
|
@@ -438,26 +310,14 @@ export interface ListGroupsOutput {
|
|
|
438
310
|
|
|
439
311
|
NextToken?: string;
|
|
440
312
|
}
|
|
441
|
-
export declare namespace ListGroupsOutput {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: ListGroupsOutput) => any;
|
|
444
|
-
}
|
|
445
313
|
export interface PutGroupConfigurationInput {
|
|
446
314
|
|
|
447
315
|
Group?: string;
|
|
448
316
|
|
|
449
317
|
Configuration?: GroupConfigurationItem[];
|
|
450
318
|
}
|
|
451
|
-
export declare namespace PutGroupConfigurationInput {
|
|
452
|
-
|
|
453
|
-
const filterSensitiveLog: (obj: PutGroupConfigurationInput) => any;
|
|
454
|
-
}
|
|
455
319
|
export interface PutGroupConfigurationOutput {
|
|
456
320
|
}
|
|
457
|
-
export declare namespace PutGroupConfigurationOutput {
|
|
458
|
-
|
|
459
|
-
const filterSensitiveLog: (obj: PutGroupConfigurationOutput) => any;
|
|
460
|
-
}
|
|
461
321
|
export interface SearchResourcesInput {
|
|
462
322
|
|
|
463
323
|
ResourceQuery: ResourceQuery | undefined;
|
|
@@ -466,10 +326,6 @@ export interface SearchResourcesInput {
|
|
|
466
326
|
|
|
467
327
|
NextToken?: string;
|
|
468
328
|
}
|
|
469
|
-
export declare namespace SearchResourcesInput {
|
|
470
|
-
|
|
471
|
-
const filterSensitiveLog: (obj: SearchResourcesInput) => any;
|
|
472
|
-
}
|
|
473
329
|
export interface SearchResourcesOutput {
|
|
474
330
|
|
|
475
331
|
ResourceIdentifiers?: ResourceIdentifier[];
|
|
@@ -478,40 +334,24 @@ export interface SearchResourcesOutput {
|
|
|
478
334
|
|
|
479
335
|
QueryErrors?: QueryError[];
|
|
480
336
|
}
|
|
481
|
-
export declare namespace SearchResourcesOutput {
|
|
482
|
-
|
|
483
|
-
const filterSensitiveLog: (obj: SearchResourcesOutput) => any;
|
|
484
|
-
}
|
|
485
337
|
export interface TagInput {
|
|
486
338
|
|
|
487
339
|
Arn: string | undefined;
|
|
488
340
|
|
|
489
341
|
Tags: Record<string, string> | undefined;
|
|
490
342
|
}
|
|
491
|
-
export declare namespace TagInput {
|
|
492
|
-
|
|
493
|
-
const filterSensitiveLog: (obj: TagInput) => any;
|
|
494
|
-
}
|
|
495
343
|
export interface TagOutput {
|
|
496
344
|
|
|
497
345
|
Arn?: string;
|
|
498
346
|
|
|
499
347
|
Tags?: Record<string, string>;
|
|
500
348
|
}
|
|
501
|
-
export declare namespace TagOutput {
|
|
502
|
-
|
|
503
|
-
const filterSensitiveLog: (obj: TagOutput) => any;
|
|
504
|
-
}
|
|
505
349
|
export interface UngroupResourcesInput {
|
|
506
350
|
|
|
507
351
|
Group: string | undefined;
|
|
508
352
|
|
|
509
353
|
ResourceArns: string[] | undefined;
|
|
510
354
|
}
|
|
511
|
-
export declare namespace UngroupResourcesInput {
|
|
512
|
-
|
|
513
|
-
const filterSensitiveLog: (obj: UngroupResourcesInput) => any;
|
|
514
|
-
}
|
|
515
355
|
export interface UngroupResourcesOutput {
|
|
516
356
|
|
|
517
357
|
Succeeded?: string[];
|
|
@@ -520,30 +360,18 @@ export interface UngroupResourcesOutput {
|
|
|
520
360
|
|
|
521
361
|
Pending?: PendingResource[];
|
|
522
362
|
}
|
|
523
|
-
export declare namespace UngroupResourcesOutput {
|
|
524
|
-
|
|
525
|
-
const filterSensitiveLog: (obj: UngroupResourcesOutput) => any;
|
|
526
|
-
}
|
|
527
363
|
export interface UntagInput {
|
|
528
364
|
|
|
529
365
|
Arn: string | undefined;
|
|
530
366
|
|
|
531
367
|
Keys: string[] | undefined;
|
|
532
368
|
}
|
|
533
|
-
export declare namespace UntagInput {
|
|
534
|
-
|
|
535
|
-
const filterSensitiveLog: (obj: UntagInput) => any;
|
|
536
|
-
}
|
|
537
369
|
export interface UntagOutput {
|
|
538
370
|
|
|
539
371
|
Arn?: string;
|
|
540
372
|
|
|
541
373
|
Keys?: string[];
|
|
542
374
|
}
|
|
543
|
-
export declare namespace UntagOutput {
|
|
544
|
-
|
|
545
|
-
const filterSensitiveLog: (obj: UntagOutput) => any;
|
|
546
|
-
}
|
|
547
375
|
export interface UpdateGroupInput {
|
|
548
376
|
|
|
549
377
|
GroupName?: string;
|
|
@@ -552,18 +380,10 @@ export interface UpdateGroupInput {
|
|
|
552
380
|
|
|
553
381
|
Description?: string;
|
|
554
382
|
}
|
|
555
|
-
export declare namespace UpdateGroupInput {
|
|
556
|
-
|
|
557
|
-
const filterSensitiveLog: (obj: UpdateGroupInput) => any;
|
|
558
|
-
}
|
|
559
383
|
export interface UpdateGroupOutput {
|
|
560
384
|
|
|
561
385
|
Group?: Group;
|
|
562
386
|
}
|
|
563
|
-
export declare namespace UpdateGroupOutput {
|
|
564
|
-
|
|
565
|
-
const filterSensitiveLog: (obj: UpdateGroupOutput) => any;
|
|
566
|
-
}
|
|
567
387
|
export interface UpdateGroupQueryInput {
|
|
568
388
|
|
|
569
389
|
GroupName?: string;
|
|
@@ -572,15 +392,101 @@ export interface UpdateGroupQueryInput {
|
|
|
572
392
|
|
|
573
393
|
ResourceQuery: ResourceQuery | undefined;
|
|
574
394
|
}
|
|
575
|
-
export declare namespace UpdateGroupQueryInput {
|
|
576
|
-
|
|
577
|
-
const filterSensitiveLog: (obj: UpdateGroupQueryInput) => any;
|
|
578
|
-
}
|
|
579
395
|
export interface UpdateGroupQueryOutput {
|
|
580
396
|
|
|
581
397
|
GroupQuery?: GroupQuery;
|
|
582
398
|
}
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.141.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.141.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.141.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|