@aws-sdk/client-resource-groups 3.658.0 → 3.661.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/README.md +41 -1
- package/dist-cjs/index.js +367 -35
- package/dist-es/ResourceGroups.js +10 -0
- package/dist-es/commands/CancelTagSyncTaskCommand.js +22 -0
- package/dist-es/commands/GetTagSyncTaskCommand.js +22 -0
- package/dist-es/commands/ListGroupingStatusesCommand.js +22 -0
- package/dist-es/commands/ListTagSyncTasksCommand.js +22 -0
- package/dist-es/commands/StartTagSyncTaskCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +43 -22
- package/dist-es/pagination/ListGroupingStatusesPaginator.js +4 -0
- package/dist-es/pagination/ListTagSyncTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +204 -9
- package/dist-types/ResourceGroups.d.ts +37 -1
- package/dist-types/ResourceGroupsClient.d.ts +8 -3
- package/dist-types/commands/CancelTagSyncTaskCommand.d.ts +104 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +9 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +6 -0
- package/dist-types/commands/GetGroupCommand.d.ts +6 -0
- package/dist-types/commands/GetTagSyncTaskCommand.d.ts +112 -0
- package/dist-types/commands/GetTagsCommand.d.ts +1 -1
- package/dist-types/commands/GroupResourcesCommand.d.ts +7 -3
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListGroupingStatusesCommand.d.ts +109 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +11 -1
- package/dist-types/commands/ListTagSyncTasksCommand.d.ts +122 -0
- package/dist-types/commands/StartTagSyncTaskCommand.d.ts +122 -0
- package/dist-types/commands/TagCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGroupCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +622 -93
- package/dist-types/pagination/ListGroupingStatusesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTagSyncTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/ResourceGroups.d.ts +86 -0
- package/dist-types/ts3.4/ResourceGroupsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CancelTagSyncTaskCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetTagSyncTaskCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListGroupingStatusesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagSyncTasksCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartTagSyncTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +158 -38
- package/dist-types/ts3.4/pagination/ListGroupingStatusesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTagSyncTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +12 -12
|
@@ -27,6 +27,47 @@ export declare class BadRequestException extends __BaseException {
|
|
|
27
27
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
28
28
|
);
|
|
29
29
|
}
|
|
30
|
+
export interface CancelTagSyncTaskInput {
|
|
31
|
+
TaskArn: string | undefined;
|
|
32
|
+
}
|
|
33
|
+
export declare class ForbiddenException extends __BaseException {
|
|
34
|
+
readonly name: "ForbiddenException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string;
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
40
|
+
readonly name: "InternalServerErrorException";
|
|
41
|
+
readonly $fault: "server";
|
|
42
|
+
Message?: string;
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
48
|
+
readonly name: "MethodNotAllowedException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
Message?: string;
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
56
|
+
readonly name: "TooManyRequestsException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
Message?: string;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
64
|
+
readonly name: "UnauthorizedException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
Message?: string;
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
30
71
|
export interface GroupConfigurationParameter {
|
|
31
72
|
Name: string | undefined;
|
|
32
73
|
Values?: string[];
|
|
@@ -50,11 +91,18 @@ export interface CreateGroupInput {
|
|
|
50
91
|
ResourceQuery?: ResourceQuery;
|
|
51
92
|
Tags?: Record<string, string>;
|
|
52
93
|
Configuration?: GroupConfigurationItem[];
|
|
94
|
+
Criticality?: number;
|
|
95
|
+
Owner?: string;
|
|
96
|
+
DisplayName?: string;
|
|
53
97
|
}
|
|
54
98
|
export interface Group {
|
|
55
99
|
GroupArn: string | undefined;
|
|
56
100
|
Name: string | undefined;
|
|
57
101
|
Description?: string;
|
|
102
|
+
Criticality?: number;
|
|
103
|
+
Owner?: string;
|
|
104
|
+
DisplayName?: string;
|
|
105
|
+
ApplicationTag?: Record<string, string>;
|
|
58
106
|
}
|
|
59
107
|
export declare const GroupConfigurationStatus: {
|
|
60
108
|
readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
|
|
@@ -75,36 +123,6 @@ export interface CreateGroupOutput {
|
|
|
75
123
|
Tags?: Record<string, string>;
|
|
76
124
|
GroupConfiguration?: GroupConfiguration;
|
|
77
125
|
}
|
|
78
|
-
export declare class ForbiddenException extends __BaseException {
|
|
79
|
-
readonly name: "ForbiddenException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
Message?: string;
|
|
82
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
83
|
-
}
|
|
84
|
-
export declare class InternalServerErrorException extends __BaseException {
|
|
85
|
-
readonly name: "InternalServerErrorException";
|
|
86
|
-
readonly $fault: "server";
|
|
87
|
-
Message?: string;
|
|
88
|
-
constructor(
|
|
89
|
-
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
|
-
export declare class MethodNotAllowedException extends __BaseException {
|
|
93
|
-
readonly name: "MethodNotAllowedException";
|
|
94
|
-
readonly $fault: "client";
|
|
95
|
-
Message?: string;
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
101
|
-
readonly name: "TooManyRequestsException";
|
|
102
|
-
readonly $fault: "client";
|
|
103
|
-
Message?: string;
|
|
104
|
-
constructor(
|
|
105
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
106
|
-
);
|
|
107
|
-
}
|
|
108
126
|
export interface DeleteGroupInput {
|
|
109
127
|
GroupName?: string;
|
|
110
128
|
Group?: string;
|
|
@@ -152,6 +170,26 @@ export interface GetTagsOutput {
|
|
|
152
170
|
Arn?: string;
|
|
153
171
|
Tags?: Record<string, string>;
|
|
154
172
|
}
|
|
173
|
+
export interface GetTagSyncTaskInput {
|
|
174
|
+
TaskArn: string | undefined;
|
|
175
|
+
}
|
|
176
|
+
export declare const TagSyncTaskStatus: {
|
|
177
|
+
readonly ACTIVE: "ACTIVE";
|
|
178
|
+
readonly ERROR: "ERROR";
|
|
179
|
+
};
|
|
180
|
+
export type TagSyncTaskStatus =
|
|
181
|
+
(typeof TagSyncTaskStatus)[keyof typeof TagSyncTaskStatus];
|
|
182
|
+
export interface GetTagSyncTaskOutput {
|
|
183
|
+
GroupArn?: string;
|
|
184
|
+
GroupName?: string;
|
|
185
|
+
TaskArn?: string;
|
|
186
|
+
TagKey?: string;
|
|
187
|
+
TagValue?: string;
|
|
188
|
+
RoleArn?: string;
|
|
189
|
+
Status?: TagSyncTaskStatus;
|
|
190
|
+
ErrorMessage?: string;
|
|
191
|
+
CreatedAt?: Date;
|
|
192
|
+
}
|
|
155
193
|
export interface GroupResourcesInput {
|
|
156
194
|
Group: string | undefined;
|
|
157
195
|
ResourceArns: string[] | undefined;
|
|
@@ -169,6 +207,48 @@ export interface GroupResourcesOutput {
|
|
|
169
207
|
Failed?: FailedResource[];
|
|
170
208
|
Pending?: PendingResource[];
|
|
171
209
|
}
|
|
210
|
+
export declare const ListGroupingStatusesFilterName: {
|
|
211
|
+
readonly ResourceArn: "resource-arn";
|
|
212
|
+
readonly Status: "status";
|
|
213
|
+
};
|
|
214
|
+
export type ListGroupingStatusesFilterName =
|
|
215
|
+
(typeof ListGroupingStatusesFilterName)[keyof typeof ListGroupingStatusesFilterName];
|
|
216
|
+
export interface ListGroupingStatusesFilter {
|
|
217
|
+
Name: ListGroupingStatusesFilterName | undefined;
|
|
218
|
+
Values: string[] | undefined;
|
|
219
|
+
}
|
|
220
|
+
export interface ListGroupingStatusesInput {
|
|
221
|
+
Group: string | undefined;
|
|
222
|
+
MaxResults?: number;
|
|
223
|
+
Filters?: ListGroupingStatusesFilter[];
|
|
224
|
+
NextToken?: string;
|
|
225
|
+
}
|
|
226
|
+
export declare const GroupingType: {
|
|
227
|
+
readonly GROUP: "GROUP";
|
|
228
|
+
readonly UNGROUP: "UNGROUP";
|
|
229
|
+
};
|
|
230
|
+
export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
|
|
231
|
+
export declare const GroupingStatus: {
|
|
232
|
+
readonly FAILED: "FAILED";
|
|
233
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
234
|
+
readonly SKIPPED: "SKIPPED";
|
|
235
|
+
readonly SUCCESS: "SUCCESS";
|
|
236
|
+
};
|
|
237
|
+
export type GroupingStatus =
|
|
238
|
+
(typeof GroupingStatus)[keyof typeof GroupingStatus];
|
|
239
|
+
export interface GroupingStatusesItem {
|
|
240
|
+
ResourceArn?: string;
|
|
241
|
+
Action?: GroupingType;
|
|
242
|
+
Status?: GroupingStatus;
|
|
243
|
+
ErrorMessage?: string;
|
|
244
|
+
ErrorCode?: string;
|
|
245
|
+
UpdatedAt?: Date;
|
|
246
|
+
}
|
|
247
|
+
export interface ListGroupingStatusesOutput {
|
|
248
|
+
Group?: string;
|
|
249
|
+
GroupingStatuses?: GroupingStatusesItem[];
|
|
250
|
+
NextToken?: string;
|
|
251
|
+
}
|
|
172
252
|
export declare const ResourceFilterName: {
|
|
173
253
|
readonly ResourceType: "resource-type";
|
|
174
254
|
};
|
|
@@ -219,16 +299,11 @@ export interface ListGroupResourcesOutput {
|
|
|
219
299
|
NextToken?: string;
|
|
220
300
|
QueryErrors?: QueryError[];
|
|
221
301
|
}
|
|
222
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
223
|
-
readonly name: "UnauthorizedException";
|
|
224
|
-
readonly $fault: "client";
|
|
225
|
-
Message?: string;
|
|
226
|
-
constructor(
|
|
227
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
228
|
-
);
|
|
229
|
-
}
|
|
230
302
|
export declare const GroupFilterName: {
|
|
231
303
|
readonly ConfigurationType: "configuration-type";
|
|
304
|
+
readonly Criticality: "criticality";
|
|
305
|
+
readonly DisplayName: "display-name";
|
|
306
|
+
readonly Owner: "owner";
|
|
232
307
|
readonly ResourceType: "resource-type";
|
|
233
308
|
};
|
|
234
309
|
export type GroupFilterName =
|
|
@@ -245,12 +320,40 @@ export interface ListGroupsInput {
|
|
|
245
320
|
export interface GroupIdentifier {
|
|
246
321
|
GroupName?: string;
|
|
247
322
|
GroupArn?: string;
|
|
323
|
+
Description?: string;
|
|
324
|
+
Criticality?: number;
|
|
325
|
+
Owner?: string;
|
|
326
|
+
DisplayName?: string;
|
|
248
327
|
}
|
|
249
328
|
export interface ListGroupsOutput {
|
|
250
329
|
GroupIdentifiers?: GroupIdentifier[];
|
|
251
330
|
Groups?: Group[];
|
|
252
331
|
NextToken?: string;
|
|
253
332
|
}
|
|
333
|
+
export interface ListTagSyncTasksFilter {
|
|
334
|
+
GroupArn?: string;
|
|
335
|
+
GroupName?: string;
|
|
336
|
+
}
|
|
337
|
+
export interface ListTagSyncTasksInput {
|
|
338
|
+
Filters?: ListTagSyncTasksFilter[];
|
|
339
|
+
MaxResults?: number;
|
|
340
|
+
NextToken?: string;
|
|
341
|
+
}
|
|
342
|
+
export interface TagSyncTaskItem {
|
|
343
|
+
GroupArn?: string;
|
|
344
|
+
GroupName?: string;
|
|
345
|
+
TaskArn?: string;
|
|
346
|
+
TagKey?: string;
|
|
347
|
+
TagValue?: string;
|
|
348
|
+
RoleArn?: string;
|
|
349
|
+
Status?: TagSyncTaskStatus;
|
|
350
|
+
ErrorMessage?: string;
|
|
351
|
+
CreatedAt?: Date;
|
|
352
|
+
}
|
|
353
|
+
export interface ListTagSyncTasksOutput {
|
|
354
|
+
TagSyncTasks?: TagSyncTaskItem[];
|
|
355
|
+
NextToken?: string;
|
|
356
|
+
}
|
|
254
357
|
export interface PutGroupConfigurationInput {
|
|
255
358
|
Group?: string;
|
|
256
359
|
Configuration?: GroupConfigurationItem[];
|
|
@@ -266,6 +369,20 @@ export interface SearchResourcesOutput {
|
|
|
266
369
|
NextToken?: string;
|
|
267
370
|
QueryErrors?: QueryError[];
|
|
268
371
|
}
|
|
372
|
+
export interface StartTagSyncTaskInput {
|
|
373
|
+
Group: string | undefined;
|
|
374
|
+
TagKey: string | undefined;
|
|
375
|
+
TagValue: string | undefined;
|
|
376
|
+
RoleArn: string | undefined;
|
|
377
|
+
}
|
|
378
|
+
export interface StartTagSyncTaskOutput {
|
|
379
|
+
GroupArn?: string;
|
|
380
|
+
GroupName?: string;
|
|
381
|
+
TaskArn?: string;
|
|
382
|
+
TagKey?: string;
|
|
383
|
+
TagValue?: string;
|
|
384
|
+
RoleArn?: string;
|
|
385
|
+
}
|
|
269
386
|
export interface TagInput {
|
|
270
387
|
Arn: string | undefined;
|
|
271
388
|
Tags: Record<string, string> | undefined;
|
|
@@ -301,6 +418,9 @@ export interface UpdateGroupInput {
|
|
|
301
418
|
GroupName?: string;
|
|
302
419
|
Group?: string;
|
|
303
420
|
Description?: string;
|
|
421
|
+
Criticality?: number;
|
|
422
|
+
Owner?: string;
|
|
423
|
+
DisplayName?: string;
|
|
304
424
|
}
|
|
305
425
|
export interface UpdateGroupOutput {
|
|
306
426
|
Group?: Group;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGroupingStatusesCommandInput,
|
|
4
|
+
ListGroupingStatusesCommandOutput,
|
|
5
|
+
} from "../commands/ListGroupingStatusesCommand";
|
|
6
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListGroupingStatuses: (
|
|
8
|
+
config: ResourceGroupsPaginationConfiguration,
|
|
9
|
+
input: ListGroupingStatusesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGroupingStatusesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTagSyncTasksCommandInput,
|
|
4
|
+
ListTagSyncTasksCommandOutput,
|
|
5
|
+
} from "../commands/ListTagSyncTasksCommand";
|
|
6
|
+
import { ResourceGroupsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTagSyncTasks: (
|
|
8
|
+
config: ResourceGroupsPaginationConfiguration,
|
|
9
|
+
input: ListTagSyncTasksCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTagSyncTasksCommandOutput>;
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CancelTagSyncTaskCommandInput,
|
|
8
|
+
CancelTagSyncTaskCommandOutput,
|
|
9
|
+
} from "../commands/CancelTagSyncTaskCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateGroupCommandInput,
|
|
8
12
|
CreateGroupCommandOutput,
|
|
@@ -31,10 +35,18 @@ import {
|
|
|
31
35
|
GetTagsCommandInput,
|
|
32
36
|
GetTagsCommandOutput,
|
|
33
37
|
} from "../commands/GetTagsCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetTagSyncTaskCommandInput,
|
|
40
|
+
GetTagSyncTaskCommandOutput,
|
|
41
|
+
} from "../commands/GetTagSyncTaskCommand";
|
|
34
42
|
import {
|
|
35
43
|
GroupResourcesCommandInput,
|
|
36
44
|
GroupResourcesCommandOutput,
|
|
37
45
|
} from "../commands/GroupResourcesCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListGroupingStatusesCommandInput,
|
|
48
|
+
ListGroupingStatusesCommandOutput,
|
|
49
|
+
} from "../commands/ListGroupingStatusesCommand";
|
|
38
50
|
import {
|
|
39
51
|
ListGroupResourcesCommandInput,
|
|
40
52
|
ListGroupResourcesCommandOutput,
|
|
@@ -43,6 +55,10 @@ import {
|
|
|
43
55
|
ListGroupsCommandInput,
|
|
44
56
|
ListGroupsCommandOutput,
|
|
45
57
|
} from "../commands/ListGroupsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListTagSyncTasksCommandInput,
|
|
60
|
+
ListTagSyncTasksCommandOutput,
|
|
61
|
+
} from "../commands/ListTagSyncTasksCommand";
|
|
46
62
|
import {
|
|
47
63
|
PutGroupConfigurationCommandInput,
|
|
48
64
|
PutGroupConfigurationCommandOutput,
|
|
@@ -51,6 +67,10 @@ import {
|
|
|
51
67
|
SearchResourcesCommandInput,
|
|
52
68
|
SearchResourcesCommandOutput,
|
|
53
69
|
} from "../commands/SearchResourcesCommand";
|
|
70
|
+
import {
|
|
71
|
+
StartTagSyncTaskCommandInput,
|
|
72
|
+
StartTagSyncTaskCommandOutput,
|
|
73
|
+
} from "../commands/StartTagSyncTaskCommand";
|
|
54
74
|
import { TagCommandInput, TagCommandOutput } from "../commands/TagCommand";
|
|
55
75
|
import {
|
|
56
76
|
UngroupResourcesCommandInput,
|
|
@@ -72,6 +92,10 @@ import {
|
|
|
72
92
|
UpdateGroupQueryCommandInput,
|
|
73
93
|
UpdateGroupQueryCommandOutput,
|
|
74
94
|
} from "../commands/UpdateGroupQueryCommand";
|
|
95
|
+
export declare const se_CancelTagSyncTaskCommand: (
|
|
96
|
+
input: CancelTagSyncTaskCommandInput,
|
|
97
|
+
context: __SerdeContext
|
|
98
|
+
) => Promise<__HttpRequest>;
|
|
75
99
|
export declare const se_CreateGroupCommand: (
|
|
76
100
|
input: CreateGroupCommandInput,
|
|
77
101
|
context: __SerdeContext
|
|
@@ -100,10 +124,18 @@ export declare const se_GetTagsCommand: (
|
|
|
100
124
|
input: GetTagsCommandInput,
|
|
101
125
|
context: __SerdeContext
|
|
102
126
|
) => Promise<__HttpRequest>;
|
|
127
|
+
export declare const se_GetTagSyncTaskCommand: (
|
|
128
|
+
input: GetTagSyncTaskCommandInput,
|
|
129
|
+
context: __SerdeContext
|
|
130
|
+
) => Promise<__HttpRequest>;
|
|
103
131
|
export declare const se_GroupResourcesCommand: (
|
|
104
132
|
input: GroupResourcesCommandInput,
|
|
105
133
|
context: __SerdeContext
|
|
106
134
|
) => Promise<__HttpRequest>;
|
|
135
|
+
export declare const se_ListGroupingStatusesCommand: (
|
|
136
|
+
input: ListGroupingStatusesCommandInput,
|
|
137
|
+
context: __SerdeContext
|
|
138
|
+
) => Promise<__HttpRequest>;
|
|
107
139
|
export declare const se_ListGroupResourcesCommand: (
|
|
108
140
|
input: ListGroupResourcesCommandInput,
|
|
109
141
|
context: __SerdeContext
|
|
@@ -112,6 +144,10 @@ export declare const se_ListGroupsCommand: (
|
|
|
112
144
|
input: ListGroupsCommandInput,
|
|
113
145
|
context: __SerdeContext
|
|
114
146
|
) => Promise<__HttpRequest>;
|
|
147
|
+
export declare const se_ListTagSyncTasksCommand: (
|
|
148
|
+
input: ListTagSyncTasksCommandInput,
|
|
149
|
+
context: __SerdeContext
|
|
150
|
+
) => Promise<__HttpRequest>;
|
|
115
151
|
export declare const se_PutGroupConfigurationCommand: (
|
|
116
152
|
input: PutGroupConfigurationCommandInput,
|
|
117
153
|
context: __SerdeContext
|
|
@@ -120,6 +156,10 @@ export declare const se_SearchResourcesCommand: (
|
|
|
120
156
|
input: SearchResourcesCommandInput,
|
|
121
157
|
context: __SerdeContext
|
|
122
158
|
) => Promise<__HttpRequest>;
|
|
159
|
+
export declare const se_StartTagSyncTaskCommand: (
|
|
160
|
+
input: StartTagSyncTaskCommandInput,
|
|
161
|
+
context: __SerdeContext
|
|
162
|
+
) => Promise<__HttpRequest>;
|
|
123
163
|
export declare const se_TagCommand: (
|
|
124
164
|
input: TagCommandInput,
|
|
125
165
|
context: __SerdeContext
|
|
@@ -144,6 +184,10 @@ export declare const se_UpdateGroupQueryCommand: (
|
|
|
144
184
|
input: UpdateGroupQueryCommandInput,
|
|
145
185
|
context: __SerdeContext
|
|
146
186
|
) => Promise<__HttpRequest>;
|
|
187
|
+
export declare const de_CancelTagSyncTaskCommand: (
|
|
188
|
+
output: __HttpResponse,
|
|
189
|
+
context: __SerdeContext
|
|
190
|
+
) => Promise<CancelTagSyncTaskCommandOutput>;
|
|
147
191
|
export declare const de_CreateGroupCommand: (
|
|
148
192
|
output: __HttpResponse,
|
|
149
193
|
context: __SerdeContext
|
|
@@ -172,10 +216,18 @@ export declare const de_GetTagsCommand: (
|
|
|
172
216
|
output: __HttpResponse,
|
|
173
217
|
context: __SerdeContext
|
|
174
218
|
) => Promise<GetTagsCommandOutput>;
|
|
219
|
+
export declare const de_GetTagSyncTaskCommand: (
|
|
220
|
+
output: __HttpResponse,
|
|
221
|
+
context: __SerdeContext
|
|
222
|
+
) => Promise<GetTagSyncTaskCommandOutput>;
|
|
175
223
|
export declare const de_GroupResourcesCommand: (
|
|
176
224
|
output: __HttpResponse,
|
|
177
225
|
context: __SerdeContext
|
|
178
226
|
) => Promise<GroupResourcesCommandOutput>;
|
|
227
|
+
export declare const de_ListGroupingStatusesCommand: (
|
|
228
|
+
output: __HttpResponse,
|
|
229
|
+
context: __SerdeContext
|
|
230
|
+
) => Promise<ListGroupingStatusesCommandOutput>;
|
|
179
231
|
export declare const de_ListGroupResourcesCommand: (
|
|
180
232
|
output: __HttpResponse,
|
|
181
233
|
context: __SerdeContext
|
|
@@ -184,6 +236,10 @@ export declare const de_ListGroupsCommand: (
|
|
|
184
236
|
output: __HttpResponse,
|
|
185
237
|
context: __SerdeContext
|
|
186
238
|
) => Promise<ListGroupsCommandOutput>;
|
|
239
|
+
export declare const de_ListTagSyncTasksCommand: (
|
|
240
|
+
output: __HttpResponse,
|
|
241
|
+
context: __SerdeContext
|
|
242
|
+
) => Promise<ListTagSyncTasksCommandOutput>;
|
|
187
243
|
export declare const de_PutGroupConfigurationCommand: (
|
|
188
244
|
output: __HttpResponse,
|
|
189
245
|
context: __SerdeContext
|
|
@@ -192,6 +248,10 @@ export declare const de_SearchResourcesCommand: (
|
|
|
192
248
|
output: __HttpResponse,
|
|
193
249
|
context: __SerdeContext
|
|
194
250
|
) => Promise<SearchResourcesCommandOutput>;
|
|
251
|
+
export declare const de_StartTagSyncTaskCommand: (
|
|
252
|
+
output: __HttpResponse,
|
|
253
|
+
context: __SerdeContext
|
|
254
|
+
) => Promise<StartTagSyncTaskCommandOutput>;
|
|
195
255
|
export declare const de_TagCommand: (
|
|
196
256
|
output: __HttpResponse,
|
|
197
257
|
context: __SerdeContext
|
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.661.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-resource-groups",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.658.
|
|
24
|
-
"@aws-sdk/client-sts": "3.658.
|
|
25
|
-
"@aws-sdk/core": "3.658.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.658.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.658.1",
|
|
24
|
+
"@aws-sdk/client-sts": "3.658.1",
|
|
25
|
+
"@aws-sdk/core": "3.658.1",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.658.1",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.654.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.654.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.8",
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.4.6",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.8",
|
|
39
39
|
"@smithy/hash-node": "^3.0.6",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.6",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.8",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.3",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.21",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.6",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.6",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.7",
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.3",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.3",
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
49
|
+
"@smithy/smithy-client": "^3.3.5",
|
|
50
50
|
"@smithy/types": "^3.4.2",
|
|
51
51
|
"@smithy/url-parser": "^3.0.6",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.21",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.21",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.2",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.6",
|
|
59
59
|
"@smithy/util-retry": "^3.0.6",
|