@aws-sdk/client-resource-groups 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ResourceGroupsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/protocols/Aws_restJson1.js +227 -791
- package/dist-es/index.js +1 -0
- package/dist-es/models/ResourceGroupsServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_restJson1.js +437 -863
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ResourceGroupsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/ResourceGroups.d.ts +85 -0
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +89 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GroupResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutGroupConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UngroupResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateGroupQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ResourceGroupsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +596 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListGroupResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +50 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from "./CreateGroupCommand";
|
|
2
|
+
export * from "./DeleteGroupCommand";
|
|
3
|
+
export * from "./GetGroupCommand";
|
|
4
|
+
export * from "./GetGroupConfigurationCommand";
|
|
5
|
+
export * from "./GetGroupQueryCommand";
|
|
6
|
+
export * from "./GetTagsCommand";
|
|
7
|
+
export * from "./GroupResourcesCommand";
|
|
8
|
+
export * from "./ListGroupResourcesCommand";
|
|
9
|
+
export * from "./ListGroupsCommand";
|
|
10
|
+
export * from "./PutGroupConfigurationCommand";
|
|
11
|
+
export * from "./SearchResourcesCommand";
|
|
12
|
+
export * from "./TagCommand";
|
|
13
|
+
export * from "./UngroupResourcesCommand";
|
|
14
|
+
export * from "./UntagCommand";
|
|
15
|
+
export * from "./UpdateGroupCommand";
|
|
16
|
+
export * from "./UpdateGroupQueryCommand";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ResourceGroupsServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,596 @@
|
|
|
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
|
+
export declare namespace GroupConfigurationParameter {
|
|
19
|
+
|
|
20
|
+
const filterSensitiveLog: (obj: GroupConfigurationParameter) => any;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface GroupConfigurationItem {
|
|
24
|
+
|
|
25
|
+
Type: string | undefined;
|
|
26
|
+
|
|
27
|
+
Parameters?: GroupConfigurationParameter[];
|
|
28
|
+
}
|
|
29
|
+
export declare namespace GroupConfigurationItem {
|
|
30
|
+
|
|
31
|
+
const filterSensitiveLog: (obj: GroupConfigurationItem) => any;
|
|
32
|
+
}
|
|
33
|
+
export declare enum QueryType {
|
|
34
|
+
CLOUDFORMATION_STACK_1_0 = "CLOUDFORMATION_STACK_1_0",
|
|
35
|
+
TAG_FILTERS_1_0 = "TAG_FILTERS_1_0"
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ResourceQuery {
|
|
39
|
+
|
|
40
|
+
Type: QueryType | string | undefined;
|
|
41
|
+
|
|
42
|
+
Query: string | undefined;
|
|
43
|
+
}
|
|
44
|
+
export declare namespace ResourceQuery {
|
|
45
|
+
|
|
46
|
+
const filterSensitiveLog: (obj: ResourceQuery) => any;
|
|
47
|
+
}
|
|
48
|
+
export interface CreateGroupInput {
|
|
49
|
+
|
|
50
|
+
Name: string | undefined;
|
|
51
|
+
|
|
52
|
+
Description?: string;
|
|
53
|
+
|
|
54
|
+
ResourceQuery?: ResourceQuery;
|
|
55
|
+
|
|
56
|
+
Tags?: {
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
Configuration?: GroupConfigurationItem[];
|
|
61
|
+
}
|
|
62
|
+
export declare namespace CreateGroupInput {
|
|
63
|
+
|
|
64
|
+
const filterSensitiveLog: (obj: CreateGroupInput) => any;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface Group {
|
|
68
|
+
|
|
69
|
+
GroupArn: string | undefined;
|
|
70
|
+
|
|
71
|
+
Name: string | undefined;
|
|
72
|
+
|
|
73
|
+
Description?: string;
|
|
74
|
+
}
|
|
75
|
+
export declare namespace Group {
|
|
76
|
+
|
|
77
|
+
const filterSensitiveLog: (obj: Group) => any;
|
|
78
|
+
}
|
|
79
|
+
export declare enum GroupConfigurationStatus {
|
|
80
|
+
UPDATE_COMPLETE = "UPDATE_COMPLETE",
|
|
81
|
+
UPDATE_FAILED = "UPDATE_FAILED",
|
|
82
|
+
UPDATING = "UPDATING"
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface GroupConfiguration {
|
|
86
|
+
|
|
87
|
+
Configuration?: GroupConfigurationItem[];
|
|
88
|
+
|
|
89
|
+
ProposedConfiguration?: GroupConfigurationItem[];
|
|
90
|
+
|
|
91
|
+
Status?: GroupConfigurationStatus | string;
|
|
92
|
+
|
|
93
|
+
FailureReason?: string;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace GroupConfiguration {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: GroupConfiguration) => any;
|
|
98
|
+
}
|
|
99
|
+
export interface CreateGroupOutput {
|
|
100
|
+
|
|
101
|
+
Group?: Group;
|
|
102
|
+
|
|
103
|
+
ResourceQuery?: ResourceQuery;
|
|
104
|
+
|
|
105
|
+
Tags?: {
|
|
106
|
+
[key: string]: string;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
GroupConfiguration?: GroupConfiguration;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace CreateGroupOutput {
|
|
112
|
+
|
|
113
|
+
const filterSensitiveLog: (obj: CreateGroupOutput) => any;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export declare class ForbiddenException extends __BaseException {
|
|
117
|
+
readonly name: "ForbiddenException";
|
|
118
|
+
readonly $fault: "client";
|
|
119
|
+
Message?: string;
|
|
120
|
+
|
|
121
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
125
|
+
readonly name: "InternalServerErrorException";
|
|
126
|
+
readonly $fault: "server";
|
|
127
|
+
Message?: string;
|
|
128
|
+
|
|
129
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
133
|
+
readonly name: "MethodNotAllowedException";
|
|
134
|
+
readonly $fault: "client";
|
|
135
|
+
Message?: string;
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
141
|
+
readonly name: "TooManyRequestsException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
Message?: string;
|
|
144
|
+
|
|
145
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
146
|
+
}
|
|
147
|
+
export interface DeleteGroupInput {
|
|
148
|
+
|
|
149
|
+
GroupName?: string;
|
|
150
|
+
|
|
151
|
+
Group?: string;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace DeleteGroupInput {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: DeleteGroupInput) => any;
|
|
156
|
+
}
|
|
157
|
+
export interface DeleteGroupOutput {
|
|
158
|
+
|
|
159
|
+
Group?: Group;
|
|
160
|
+
}
|
|
161
|
+
export declare namespace DeleteGroupOutput {
|
|
162
|
+
|
|
163
|
+
const filterSensitiveLog: (obj: DeleteGroupOutput) => any;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export declare class NotFoundException extends __BaseException {
|
|
167
|
+
readonly name: "NotFoundException";
|
|
168
|
+
readonly $fault: "client";
|
|
169
|
+
Message?: string;
|
|
170
|
+
|
|
171
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
172
|
+
}
|
|
173
|
+
export interface GetGroupInput {
|
|
174
|
+
|
|
175
|
+
GroupName?: string;
|
|
176
|
+
|
|
177
|
+
Group?: string;
|
|
178
|
+
}
|
|
179
|
+
export declare namespace GetGroupInput {
|
|
180
|
+
|
|
181
|
+
const filterSensitiveLog: (obj: GetGroupInput) => any;
|
|
182
|
+
}
|
|
183
|
+
export interface GetGroupOutput {
|
|
184
|
+
|
|
185
|
+
Group?: Group;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace GetGroupOutput {
|
|
188
|
+
|
|
189
|
+
const filterSensitiveLog: (obj: GetGroupOutput) => any;
|
|
190
|
+
}
|
|
191
|
+
export interface GetGroupConfigurationInput {
|
|
192
|
+
|
|
193
|
+
Group?: string;
|
|
194
|
+
}
|
|
195
|
+
export declare namespace GetGroupConfigurationInput {
|
|
196
|
+
|
|
197
|
+
const filterSensitiveLog: (obj: GetGroupConfigurationInput) => any;
|
|
198
|
+
}
|
|
199
|
+
export interface GetGroupConfigurationOutput {
|
|
200
|
+
|
|
201
|
+
GroupConfiguration?: GroupConfiguration;
|
|
202
|
+
}
|
|
203
|
+
export declare namespace GetGroupConfigurationOutput {
|
|
204
|
+
|
|
205
|
+
const filterSensitiveLog: (obj: GetGroupConfigurationOutput) => any;
|
|
206
|
+
}
|
|
207
|
+
export interface GetGroupQueryInput {
|
|
208
|
+
|
|
209
|
+
GroupName?: string;
|
|
210
|
+
|
|
211
|
+
Group?: string;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace GetGroupQueryInput {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: GetGroupQueryInput) => any;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface GroupQuery {
|
|
219
|
+
|
|
220
|
+
GroupName: string | undefined;
|
|
221
|
+
|
|
222
|
+
ResourceQuery: ResourceQuery | undefined;
|
|
223
|
+
}
|
|
224
|
+
export declare namespace GroupQuery {
|
|
225
|
+
|
|
226
|
+
const filterSensitiveLog: (obj: GroupQuery) => any;
|
|
227
|
+
}
|
|
228
|
+
export interface GetGroupQueryOutput {
|
|
229
|
+
|
|
230
|
+
GroupQuery?: GroupQuery;
|
|
231
|
+
}
|
|
232
|
+
export declare namespace GetGroupQueryOutput {
|
|
233
|
+
|
|
234
|
+
const filterSensitiveLog: (obj: GetGroupQueryOutput) => any;
|
|
235
|
+
}
|
|
236
|
+
export interface GetTagsInput {
|
|
237
|
+
|
|
238
|
+
Arn: string | undefined;
|
|
239
|
+
}
|
|
240
|
+
export declare namespace GetTagsInput {
|
|
241
|
+
|
|
242
|
+
const filterSensitiveLog: (obj: GetTagsInput) => any;
|
|
243
|
+
}
|
|
244
|
+
export interface GetTagsOutput {
|
|
245
|
+
|
|
246
|
+
Arn?: string;
|
|
247
|
+
|
|
248
|
+
Tags?: {
|
|
249
|
+
[key: string]: string;
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
export declare namespace GetTagsOutput {
|
|
253
|
+
|
|
254
|
+
const filterSensitiveLog: (obj: GetTagsOutput) => any;
|
|
255
|
+
}
|
|
256
|
+
export interface GroupResourcesInput {
|
|
257
|
+
|
|
258
|
+
Group: string | undefined;
|
|
259
|
+
|
|
260
|
+
ResourceArns: string[] | undefined;
|
|
261
|
+
}
|
|
262
|
+
export declare namespace GroupResourcesInput {
|
|
263
|
+
|
|
264
|
+
const filterSensitiveLog: (obj: GroupResourcesInput) => any;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface FailedResource {
|
|
268
|
+
|
|
269
|
+
ResourceArn?: string;
|
|
270
|
+
|
|
271
|
+
ErrorMessage?: string;
|
|
272
|
+
|
|
273
|
+
ErrorCode?: string;
|
|
274
|
+
}
|
|
275
|
+
export declare namespace FailedResource {
|
|
276
|
+
|
|
277
|
+
const filterSensitiveLog: (obj: FailedResource) => any;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
export interface PendingResource {
|
|
281
|
+
|
|
282
|
+
ResourceArn?: string;
|
|
283
|
+
}
|
|
284
|
+
export declare namespace PendingResource {
|
|
285
|
+
|
|
286
|
+
const filterSensitiveLog: (obj: PendingResource) => any;
|
|
287
|
+
}
|
|
288
|
+
export interface GroupResourcesOutput {
|
|
289
|
+
|
|
290
|
+
Succeeded?: string[];
|
|
291
|
+
|
|
292
|
+
Failed?: FailedResource[];
|
|
293
|
+
|
|
294
|
+
Pending?: PendingResource[];
|
|
295
|
+
}
|
|
296
|
+
export declare namespace GroupResourcesOutput {
|
|
297
|
+
|
|
298
|
+
const filterSensitiveLog: (obj: GroupResourcesOutput) => any;
|
|
299
|
+
}
|
|
300
|
+
export declare enum ResourceFilterName {
|
|
301
|
+
ResourceType = "resource-type"
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export interface ResourceFilter {
|
|
305
|
+
|
|
306
|
+
Name: ResourceFilterName | string | undefined;
|
|
307
|
+
|
|
308
|
+
Values: string[] | undefined;
|
|
309
|
+
}
|
|
310
|
+
export declare namespace ResourceFilter {
|
|
311
|
+
|
|
312
|
+
const filterSensitiveLog: (obj: ResourceFilter) => any;
|
|
313
|
+
}
|
|
314
|
+
export interface ListGroupResourcesInput {
|
|
315
|
+
|
|
316
|
+
GroupName?: string;
|
|
317
|
+
|
|
318
|
+
Group?: string;
|
|
319
|
+
|
|
320
|
+
Filters?: ResourceFilter[];
|
|
321
|
+
|
|
322
|
+
MaxResults?: number;
|
|
323
|
+
|
|
324
|
+
NextToken?: string;
|
|
325
|
+
}
|
|
326
|
+
export declare namespace ListGroupResourcesInput {
|
|
327
|
+
|
|
328
|
+
const filterSensitiveLog: (obj: ListGroupResourcesInput) => any;
|
|
329
|
+
}
|
|
330
|
+
export declare enum QueryErrorCode {
|
|
331
|
+
CLOUDFORMATION_STACK_INACTIVE = "CLOUDFORMATION_STACK_INACTIVE",
|
|
332
|
+
CLOUDFORMATION_STACK_NOT_EXISTING = "CLOUDFORMATION_STACK_NOT_EXISTING"
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export interface QueryError {
|
|
336
|
+
|
|
337
|
+
ErrorCode?: QueryErrorCode | string;
|
|
338
|
+
|
|
339
|
+
Message?: string;
|
|
340
|
+
}
|
|
341
|
+
export declare namespace QueryError {
|
|
342
|
+
|
|
343
|
+
const filterSensitiveLog: (obj: QueryError) => any;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export interface ResourceIdentifier {
|
|
347
|
+
|
|
348
|
+
ResourceArn?: string;
|
|
349
|
+
|
|
350
|
+
ResourceType?: string;
|
|
351
|
+
}
|
|
352
|
+
export declare namespace ResourceIdentifier {
|
|
353
|
+
|
|
354
|
+
const filterSensitiveLog: (obj: ResourceIdentifier) => any;
|
|
355
|
+
}
|
|
356
|
+
export declare enum ResourceStatusValue {
|
|
357
|
+
Pending = "PENDING"
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
export interface ResourceStatus {
|
|
361
|
+
|
|
362
|
+
Name?: ResourceStatusValue | string;
|
|
363
|
+
}
|
|
364
|
+
export declare namespace ResourceStatus {
|
|
365
|
+
|
|
366
|
+
const filterSensitiveLog: (obj: ResourceStatus) => any;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
export interface ListGroupResourcesItem {
|
|
370
|
+
|
|
371
|
+
Identifier?: ResourceIdentifier;
|
|
372
|
+
|
|
373
|
+
Status?: ResourceStatus;
|
|
374
|
+
}
|
|
375
|
+
export declare namespace ListGroupResourcesItem {
|
|
376
|
+
|
|
377
|
+
const filterSensitiveLog: (obj: ListGroupResourcesItem) => any;
|
|
378
|
+
}
|
|
379
|
+
export interface ListGroupResourcesOutput {
|
|
380
|
+
|
|
381
|
+
Resources?: ListGroupResourcesItem[];
|
|
382
|
+
|
|
383
|
+
ResourceIdentifiers?: ResourceIdentifier[];
|
|
384
|
+
|
|
385
|
+
NextToken?: string;
|
|
386
|
+
|
|
387
|
+
QueryErrors?: QueryError[];
|
|
388
|
+
}
|
|
389
|
+
export declare namespace ListGroupResourcesOutput {
|
|
390
|
+
|
|
391
|
+
const filterSensitiveLog: (obj: ListGroupResourcesOutput) => any;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
395
|
+
readonly name: "UnauthorizedException";
|
|
396
|
+
readonly $fault: "client";
|
|
397
|
+
Message?: string;
|
|
398
|
+
|
|
399
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
400
|
+
}
|
|
401
|
+
export declare enum GroupFilterName {
|
|
402
|
+
ConfigurationType = "configuration-type",
|
|
403
|
+
ResourceType = "resource-type"
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
export interface GroupFilter {
|
|
407
|
+
|
|
408
|
+
Name: GroupFilterName | string | undefined;
|
|
409
|
+
|
|
410
|
+
Values: string[] | undefined;
|
|
411
|
+
}
|
|
412
|
+
export declare namespace GroupFilter {
|
|
413
|
+
|
|
414
|
+
const filterSensitiveLog: (obj: GroupFilter) => any;
|
|
415
|
+
}
|
|
416
|
+
export interface ListGroupsInput {
|
|
417
|
+
|
|
418
|
+
Filters?: GroupFilter[];
|
|
419
|
+
|
|
420
|
+
MaxResults?: number;
|
|
421
|
+
|
|
422
|
+
NextToken?: string;
|
|
423
|
+
}
|
|
424
|
+
export declare namespace ListGroupsInput {
|
|
425
|
+
|
|
426
|
+
const filterSensitiveLog: (obj: ListGroupsInput) => any;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export interface GroupIdentifier {
|
|
430
|
+
|
|
431
|
+
GroupName?: string;
|
|
432
|
+
|
|
433
|
+
GroupArn?: string;
|
|
434
|
+
}
|
|
435
|
+
export declare namespace GroupIdentifier {
|
|
436
|
+
|
|
437
|
+
const filterSensitiveLog: (obj: GroupIdentifier) => any;
|
|
438
|
+
}
|
|
439
|
+
export interface ListGroupsOutput {
|
|
440
|
+
|
|
441
|
+
GroupIdentifiers?: GroupIdentifier[];
|
|
442
|
+
|
|
443
|
+
Groups?: Group[];
|
|
444
|
+
|
|
445
|
+
NextToken?: string;
|
|
446
|
+
}
|
|
447
|
+
export declare namespace ListGroupsOutput {
|
|
448
|
+
|
|
449
|
+
const filterSensitiveLog: (obj: ListGroupsOutput) => any;
|
|
450
|
+
}
|
|
451
|
+
export interface PutGroupConfigurationInput {
|
|
452
|
+
|
|
453
|
+
Group?: string;
|
|
454
|
+
|
|
455
|
+
Configuration?: GroupConfigurationItem[];
|
|
456
|
+
}
|
|
457
|
+
export declare namespace PutGroupConfigurationInput {
|
|
458
|
+
|
|
459
|
+
const filterSensitiveLog: (obj: PutGroupConfigurationInput) => any;
|
|
460
|
+
}
|
|
461
|
+
export interface PutGroupConfigurationOutput {
|
|
462
|
+
}
|
|
463
|
+
export declare namespace PutGroupConfigurationOutput {
|
|
464
|
+
|
|
465
|
+
const filterSensitiveLog: (obj: PutGroupConfigurationOutput) => any;
|
|
466
|
+
}
|
|
467
|
+
export interface SearchResourcesInput {
|
|
468
|
+
|
|
469
|
+
ResourceQuery: ResourceQuery | undefined;
|
|
470
|
+
|
|
471
|
+
MaxResults?: number;
|
|
472
|
+
|
|
473
|
+
NextToken?: string;
|
|
474
|
+
}
|
|
475
|
+
export declare namespace SearchResourcesInput {
|
|
476
|
+
|
|
477
|
+
const filterSensitiveLog: (obj: SearchResourcesInput) => any;
|
|
478
|
+
}
|
|
479
|
+
export interface SearchResourcesOutput {
|
|
480
|
+
|
|
481
|
+
ResourceIdentifiers?: ResourceIdentifier[];
|
|
482
|
+
|
|
483
|
+
NextToken?: string;
|
|
484
|
+
|
|
485
|
+
QueryErrors?: QueryError[];
|
|
486
|
+
}
|
|
487
|
+
export declare namespace SearchResourcesOutput {
|
|
488
|
+
|
|
489
|
+
const filterSensitiveLog: (obj: SearchResourcesOutput) => any;
|
|
490
|
+
}
|
|
491
|
+
export interface TagInput {
|
|
492
|
+
|
|
493
|
+
Arn: string | undefined;
|
|
494
|
+
|
|
495
|
+
Tags: {
|
|
496
|
+
[key: string]: string;
|
|
497
|
+
} | undefined;
|
|
498
|
+
}
|
|
499
|
+
export declare namespace TagInput {
|
|
500
|
+
|
|
501
|
+
const filterSensitiveLog: (obj: TagInput) => any;
|
|
502
|
+
}
|
|
503
|
+
export interface TagOutput {
|
|
504
|
+
|
|
505
|
+
Arn?: string;
|
|
506
|
+
|
|
507
|
+
Tags?: {
|
|
508
|
+
[key: string]: string;
|
|
509
|
+
};
|
|
510
|
+
}
|
|
511
|
+
export declare namespace TagOutput {
|
|
512
|
+
|
|
513
|
+
const filterSensitiveLog: (obj: TagOutput) => any;
|
|
514
|
+
}
|
|
515
|
+
export interface UngroupResourcesInput {
|
|
516
|
+
|
|
517
|
+
Group: string | undefined;
|
|
518
|
+
|
|
519
|
+
ResourceArns: string[] | undefined;
|
|
520
|
+
}
|
|
521
|
+
export declare namespace UngroupResourcesInput {
|
|
522
|
+
|
|
523
|
+
const filterSensitiveLog: (obj: UngroupResourcesInput) => any;
|
|
524
|
+
}
|
|
525
|
+
export interface UngroupResourcesOutput {
|
|
526
|
+
|
|
527
|
+
Succeeded?: string[];
|
|
528
|
+
|
|
529
|
+
Failed?: FailedResource[];
|
|
530
|
+
|
|
531
|
+
Pending?: PendingResource[];
|
|
532
|
+
}
|
|
533
|
+
export declare namespace UngroupResourcesOutput {
|
|
534
|
+
|
|
535
|
+
const filterSensitiveLog: (obj: UngroupResourcesOutput) => any;
|
|
536
|
+
}
|
|
537
|
+
export interface UntagInput {
|
|
538
|
+
|
|
539
|
+
Arn: string | undefined;
|
|
540
|
+
|
|
541
|
+
Keys: string[] | undefined;
|
|
542
|
+
}
|
|
543
|
+
export declare namespace UntagInput {
|
|
544
|
+
|
|
545
|
+
const filterSensitiveLog: (obj: UntagInput) => any;
|
|
546
|
+
}
|
|
547
|
+
export interface UntagOutput {
|
|
548
|
+
|
|
549
|
+
Arn?: string;
|
|
550
|
+
|
|
551
|
+
Keys?: string[];
|
|
552
|
+
}
|
|
553
|
+
export declare namespace UntagOutput {
|
|
554
|
+
|
|
555
|
+
const filterSensitiveLog: (obj: UntagOutput) => any;
|
|
556
|
+
}
|
|
557
|
+
export interface UpdateGroupInput {
|
|
558
|
+
|
|
559
|
+
GroupName?: string;
|
|
560
|
+
|
|
561
|
+
Group?: string;
|
|
562
|
+
|
|
563
|
+
Description?: string;
|
|
564
|
+
}
|
|
565
|
+
export declare namespace UpdateGroupInput {
|
|
566
|
+
|
|
567
|
+
const filterSensitiveLog: (obj: UpdateGroupInput) => any;
|
|
568
|
+
}
|
|
569
|
+
export interface UpdateGroupOutput {
|
|
570
|
+
|
|
571
|
+
Group?: Group;
|
|
572
|
+
}
|
|
573
|
+
export declare namespace UpdateGroupOutput {
|
|
574
|
+
|
|
575
|
+
const filterSensitiveLog: (obj: UpdateGroupOutput) => any;
|
|
576
|
+
}
|
|
577
|
+
export interface UpdateGroupQueryInput {
|
|
578
|
+
|
|
579
|
+
GroupName?: string;
|
|
580
|
+
|
|
581
|
+
Group?: string;
|
|
582
|
+
|
|
583
|
+
ResourceQuery: ResourceQuery | undefined;
|
|
584
|
+
}
|
|
585
|
+
export declare namespace UpdateGroupQueryInput {
|
|
586
|
+
|
|
587
|
+
const filterSensitiveLog: (obj: UpdateGroupQueryInput) => any;
|
|
588
|
+
}
|
|
589
|
+
export interface UpdateGroupQueryOutput {
|
|
590
|
+
|
|
591
|
+
GroupQuery?: GroupQuery;
|
|
592
|
+
}
|
|
593
|
+
export declare namespace UpdateGroupQueryOutput {
|
|
594
|
+
|
|
595
|
+
const filterSensitiveLog: (obj: UpdateGroupQueryOutput) => any;
|
|
596
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ResourceGroups } from "../ResourceGroups";
|
|
3
|
+
import { ResourceGroupsClient } from "../ResourceGroupsClient";
|
|
4
|
+
export interface ResourceGroupsPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: ResourceGroups | ResourceGroupsClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput } from "../commands/ListGroupResourcesCommand";
|
|
3
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListGroupResources(config: ResourceGroupsPaginationConfiguration, input: ListGroupResourcesCommandInput, ...additionalArguments: any): Paginator<ListGroupResourcesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
3
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListGroups(config: ResourceGroupsPaginationConfiguration, input: ListGroupsCommandInput, ...additionalArguments: any): Paginator<ListGroupsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { SearchResourcesCommandInput, SearchResourcesCommandOutput } from "../commands/SearchResourcesCommand";
|
|
3
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateSearchResources(config: ResourceGroupsPaginationConfiguration, input: SearchResourcesCommandInput, ...additionalArguments: any): Paginator<SearchResourcesCommandOutput>;
|