@aws-sdk/client-resource-groups 3.1074.0 → 3.1076.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/dist-cjs/index.js +1046 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ResourceGroupsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -99
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -736
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultResourceGroupsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "resource-groups",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultResourceGroupsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,897 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
85
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://resource-groups-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://resource-groups.{Region}.amazonaws.com", i],
|
|
95
|
+
["https://resource-groups-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://resource-groups.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
["https://resource-groups.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 13, 3,
|
|
108
|
+
1, 4, r + 12,
|
|
109
|
+
2, 5, r + 12,
|
|
110
|
+
3, 8, 6,
|
|
111
|
+
4, 7, r + 11,
|
|
112
|
+
5, r + 9, r + 10,
|
|
113
|
+
4, 11, 9,
|
|
114
|
+
6, 10, r + 8,
|
|
115
|
+
7, r + 6, r + 7,
|
|
116
|
+
5, 12, r + 5,
|
|
117
|
+
6, r + 4, r + 5,
|
|
118
|
+
3, r + 1, 14,
|
|
119
|
+
4, r + 2, r + 3,
|
|
120
|
+
]);
|
|
121
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
122
|
+
|
|
123
|
+
const cache = new EndpointCache({
|
|
124
|
+
size: 50,
|
|
125
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
126
|
+
});
|
|
127
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
128
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
129
|
+
endpointParams: endpointParams,
|
|
130
|
+
logger: context.logger,
|
|
131
|
+
}));
|
|
132
|
+
};
|
|
133
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
134
|
+
|
|
135
|
+
class ResourceGroupsServiceException extends ServiceException {
|
|
136
|
+
constructor(options) {
|
|
137
|
+
super(options);
|
|
138
|
+
Object.setPrototypeOf(this, ResourceGroupsServiceException.prototype);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
class BadRequestException extends ResourceGroupsServiceException {
|
|
143
|
+
name = "BadRequestException";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
Message;
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "BadRequestException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
153
|
+
this.Message = opts.Message;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
class ForbiddenException extends ResourceGroupsServiceException {
|
|
157
|
+
name = "ForbiddenException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
Message;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "ForbiddenException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
167
|
+
this.Message = opts.Message;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
class InternalServerErrorException extends ResourceGroupsServiceException {
|
|
171
|
+
name = "InternalServerErrorException";
|
|
172
|
+
$fault = "server";
|
|
173
|
+
Message;
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "InternalServerErrorException",
|
|
177
|
+
$fault: "server",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
181
|
+
this.Message = opts.Message;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
class MethodNotAllowedException extends ResourceGroupsServiceException {
|
|
185
|
+
name = "MethodNotAllowedException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Message;
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "MethodNotAllowedException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
195
|
+
this.Message = opts.Message;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class TooManyRequestsException extends ResourceGroupsServiceException {
|
|
199
|
+
name = "TooManyRequestsException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
Message;
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "TooManyRequestsException",
|
|
205
|
+
$fault: "client",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
209
|
+
this.Message = opts.Message;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class UnauthorizedException extends ResourceGroupsServiceException {
|
|
213
|
+
name = "UnauthorizedException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
Message;
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "UnauthorizedException",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
223
|
+
this.Message = opts.Message;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
class NotFoundException extends ResourceGroupsServiceException {
|
|
227
|
+
name = "NotFoundException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
Message;
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "NotFoundException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
237
|
+
this.Message = opts.Message;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
const _A = "Arn";
|
|
242
|
+
const _AS = "AccountSettings";
|
|
243
|
+
const _AT = "ApplicationTag";
|
|
244
|
+
const _Ac = "Action";
|
|
245
|
+
const _BRE = "BadRequestException";
|
|
246
|
+
const _C = "Configuration";
|
|
247
|
+
const _CA = "CreatedAt";
|
|
248
|
+
const _CG = "CreateGroup";
|
|
249
|
+
const _CGI = "CreateGroupInput";
|
|
250
|
+
const _CGO = "CreateGroupOutput";
|
|
251
|
+
const _CTST = "CancelTagSyncTask";
|
|
252
|
+
const _CTSTI = "CancelTagSyncTaskInput";
|
|
253
|
+
const _Cr = "Criticality";
|
|
254
|
+
const _D = "Description";
|
|
255
|
+
const _DG = "DeleteGroup";
|
|
256
|
+
const _DGI = "DeleteGroupInput";
|
|
257
|
+
const _DGO = "DeleteGroupOutput";
|
|
258
|
+
const _DN = "DisplayName";
|
|
259
|
+
const _EC = "ErrorCode";
|
|
260
|
+
const _EM = "ErrorMessage";
|
|
261
|
+
const _F = "Failed";
|
|
262
|
+
const _FE = "ForbiddenException";
|
|
263
|
+
const _FR = "FailedResource";
|
|
264
|
+
const _FRL = "FailedResourceList";
|
|
265
|
+
const _FRa = "FailureReason";
|
|
266
|
+
const _Fi = "Filters";
|
|
267
|
+
const _G = "Group";
|
|
268
|
+
const _GA = "GroupArn";
|
|
269
|
+
const _GAS = "GetAccountSettings";
|
|
270
|
+
const _GASO = "GetAccountSettingsOutput";
|
|
271
|
+
const _GC = "GroupConfiguration";
|
|
272
|
+
const _GCI = "GroupConfigurationItem";
|
|
273
|
+
const _GCL = "GroupConfigurationList";
|
|
274
|
+
const _GCP = "GroupConfigurationParameter";
|
|
275
|
+
const _GF = "GroupFilter";
|
|
276
|
+
const _GFL = "GroupFilterList";
|
|
277
|
+
const _GG = "GetGroup";
|
|
278
|
+
const _GGC = "GetGroupConfiguration";
|
|
279
|
+
const _GGCI = "GetGroupConfigurationInput";
|
|
280
|
+
const _GGCO = "GetGroupConfigurationOutput";
|
|
281
|
+
const _GGI = "GetGroupInput";
|
|
282
|
+
const _GGO = "GetGroupOutput";
|
|
283
|
+
const _GGQ = "GetGroupQuery";
|
|
284
|
+
const _GGQI = "GetGroupQueryInput";
|
|
285
|
+
const _GGQO = "GetGroupQueryOutput";
|
|
286
|
+
const _GI = "GroupIdentifier";
|
|
287
|
+
const _GIL = "GroupIdentifierList";
|
|
288
|
+
const _GIr = "GroupIdentifiers";
|
|
289
|
+
const _GL = "GroupList";
|
|
290
|
+
const _GLEDS = "GroupLifecycleEventsDesiredStatus";
|
|
291
|
+
const _GLES = "GroupLifecycleEventsStatus";
|
|
292
|
+
const _GLESM = "GroupLifecycleEventsStatusMessage";
|
|
293
|
+
const _GN = "GroupName";
|
|
294
|
+
const _GPL = "GroupParameterList";
|
|
295
|
+
const _GQ = "GroupQuery";
|
|
296
|
+
const _GR = "GroupResources";
|
|
297
|
+
const _GRI = "GroupResourcesInput";
|
|
298
|
+
const _GRO = "GroupResourcesOutput";
|
|
299
|
+
const _GS = "GroupingStatuses";
|
|
300
|
+
const _GSI = "GroupingStatusesItem";
|
|
301
|
+
const _GSL = "GroupingStatusesList";
|
|
302
|
+
const _GT = "GetTags";
|
|
303
|
+
const _GTI = "GetTagsInput";
|
|
304
|
+
const _GTO = "GetTagsOutput";
|
|
305
|
+
const _GTST = "GetTagSyncTask";
|
|
306
|
+
const _GTSTI = "GetTagSyncTaskInput";
|
|
307
|
+
const _GTSTO = "GetTagSyncTaskOutput";
|
|
308
|
+
const _Gr = "Groups";
|
|
309
|
+
const _I = "Identifier";
|
|
310
|
+
const _ISEE = "InternalServerErrorException";
|
|
311
|
+
const _K = "Keys";
|
|
312
|
+
const _LG = "ListGroups";
|
|
313
|
+
const _LGI = "ListGroupsInput";
|
|
314
|
+
const _LGO = "ListGroupsOutput";
|
|
315
|
+
const _LGR = "ListGroupResources";
|
|
316
|
+
const _LGRI = "ListGroupResourcesInput";
|
|
317
|
+
const _LGRIL = "ListGroupResourcesItemList";
|
|
318
|
+
const _LGRIi = "ListGroupResourcesItem";
|
|
319
|
+
const _LGRO = "ListGroupResourcesOutput";
|
|
320
|
+
const _LGS = "ListGroupingStatuses";
|
|
321
|
+
const _LGSF = "ListGroupingStatusesFilter";
|
|
322
|
+
const _LGSFL = "ListGroupingStatusesFilterList";
|
|
323
|
+
const _LGSI = "ListGroupingStatusesInput";
|
|
324
|
+
const _LGSO = "ListGroupingStatusesOutput";
|
|
325
|
+
const _LTST = "ListTagSyncTasks";
|
|
326
|
+
const _LTSTF = "ListTagSyncTasksFilter";
|
|
327
|
+
const _LTSTFL = "ListTagSyncTasksFilterList";
|
|
328
|
+
const _LTSTI = "ListTagSyncTasksInput";
|
|
329
|
+
const _LTSTO = "ListTagSyncTasksOutput";
|
|
330
|
+
const _M = "Message";
|
|
331
|
+
const _MNAE = "MethodNotAllowedException";
|
|
332
|
+
const _MR = "MaxResults";
|
|
333
|
+
const _N = "Name";
|
|
334
|
+
const _NFE = "NotFoundException";
|
|
335
|
+
const _NT = "NextToken";
|
|
336
|
+
const _O = "Owner";
|
|
337
|
+
const _P = "Parameters";
|
|
338
|
+
const _PC = "ProposedConfiguration";
|
|
339
|
+
const _PGC = "PutGroupConfiguration";
|
|
340
|
+
const _PGCI = "PutGroupConfigurationInput";
|
|
341
|
+
const _PGCO = "PutGroupConfigurationOutput";
|
|
342
|
+
const _PR = "PendingResource";
|
|
343
|
+
const _PRL = "PendingResourceList";
|
|
344
|
+
const _Pe = "Pending";
|
|
345
|
+
const _Q = "Query";
|
|
346
|
+
const _QE = "QueryErrors";
|
|
347
|
+
const _QEL = "QueryErrorList";
|
|
348
|
+
const _QEu = "QueryError";
|
|
349
|
+
const _R = "Resources";
|
|
350
|
+
const _RA = "ResourceArn";
|
|
351
|
+
const _RAe = "ResourceArns";
|
|
352
|
+
const _RAo = "RoleArn";
|
|
353
|
+
const _RF = "ResourceFilter";
|
|
354
|
+
const _RFL = "ResourceFilterList";
|
|
355
|
+
const _RI = "ResourceIdentifiers";
|
|
356
|
+
const _RIL = "ResourceIdentifierList";
|
|
357
|
+
const _RIe = "ResourceIdentifier";
|
|
358
|
+
const _RQ = "ResourceQuery";
|
|
359
|
+
const _RS = "ResourceStatus";
|
|
360
|
+
const _RT = "ResourceType";
|
|
361
|
+
const _S = "Status";
|
|
362
|
+
const _SR = "SearchResources";
|
|
363
|
+
const _SRI = "SearchResourcesInput";
|
|
364
|
+
const _SRO = "SearchResourcesOutput";
|
|
365
|
+
const _STST = "StartTagSyncTask";
|
|
366
|
+
const _STSTI = "StartTagSyncTaskInput";
|
|
367
|
+
const _STSTO = "StartTagSyncTaskOutput";
|
|
368
|
+
const _Su = "Succeeded";
|
|
369
|
+
const _T = "Tags";
|
|
370
|
+
const _TA = "TaskArn";
|
|
371
|
+
const _TI = "TagInput";
|
|
372
|
+
const _TK = "TagKey";
|
|
373
|
+
const _TMRE = "TooManyRequestsException";
|
|
374
|
+
const _TO = "TagOutput";
|
|
375
|
+
const _TST = "TagSyncTasks";
|
|
376
|
+
const _TSTI = "TagSyncTaskItem";
|
|
377
|
+
const _TSTL = "TagSyncTaskList";
|
|
378
|
+
const _TV = "TagValue";
|
|
379
|
+
const _Ta = "Tag";
|
|
380
|
+
const _Ty = "Type";
|
|
381
|
+
const _U = "Untag";
|
|
382
|
+
const _UA = "UpdatedAt";
|
|
383
|
+
const _UAS = "UpdateAccountSettings";
|
|
384
|
+
const _UASI = "UpdateAccountSettingsInput";
|
|
385
|
+
const _UASO = "UpdateAccountSettingsOutput";
|
|
386
|
+
const _UE = "UnauthorizedException";
|
|
387
|
+
const _UG = "UpdateGroup";
|
|
388
|
+
const _UGI = "UpdateGroupInput";
|
|
389
|
+
const _UGO = "UpdateGroupOutput";
|
|
390
|
+
const _UGQ = "UpdateGroupQuery";
|
|
391
|
+
const _UGQI = "UpdateGroupQueryInput";
|
|
392
|
+
const _UGQO = "UpdateGroupQueryOutput";
|
|
393
|
+
const _UI = "UntagInput";
|
|
394
|
+
const _UO = "UntagOutput";
|
|
395
|
+
const _UR = "UngroupResources";
|
|
396
|
+
const _URI = "UngroupResourcesInput";
|
|
397
|
+
const _URO = "UngroupResourcesOutput";
|
|
398
|
+
const _V = "Values";
|
|
399
|
+
const _c = "client";
|
|
400
|
+
const _e = "error";
|
|
401
|
+
const _h = "http";
|
|
402
|
+
const _hE = "httpError";
|
|
403
|
+
const _hQ = "httpQuery";
|
|
404
|
+
const _mR = "maxResults";
|
|
405
|
+
const _nT = "nextToken";
|
|
406
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.resourcegroups";
|
|
407
|
+
const _se = "server";
|
|
408
|
+
const n0 = "com.amazonaws.resourcegroups";
|
|
409
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
410
|
+
var ResourceGroupsServiceException$ = [-3, _s, "ResourceGroupsServiceException", 0, [], []];
|
|
411
|
+
_s_registry.registerError(ResourceGroupsServiceException$, ResourceGroupsServiceException);
|
|
412
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
413
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
414
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
415
|
+
[_M],
|
|
416
|
+
[0]
|
|
417
|
+
];
|
|
418
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
419
|
+
var ForbiddenException$ = [-3, n0, _FE,
|
|
420
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
421
|
+
[_M],
|
|
422
|
+
[0]
|
|
423
|
+
];
|
|
424
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
425
|
+
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
426
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
427
|
+
[_M],
|
|
428
|
+
[0]
|
|
429
|
+
];
|
|
430
|
+
n0_registry.registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
431
|
+
var MethodNotAllowedException$ = [-3, n0, _MNAE,
|
|
432
|
+
{ [_e]: _c, [_hE]: 405 },
|
|
433
|
+
[_M],
|
|
434
|
+
[0]
|
|
435
|
+
];
|
|
436
|
+
n0_registry.registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
437
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
438
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
439
|
+
[_M],
|
|
440
|
+
[0]
|
|
441
|
+
];
|
|
442
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
443
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
444
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
445
|
+
[_M],
|
|
446
|
+
[0]
|
|
447
|
+
];
|
|
448
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
449
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
450
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
451
|
+
[_M],
|
|
452
|
+
[0]
|
|
453
|
+
];
|
|
454
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
455
|
+
const errorTypeRegistries = [
|
|
456
|
+
_s_registry,
|
|
457
|
+
n0_registry,
|
|
458
|
+
];
|
|
459
|
+
var AccountSettings$ = [3, n0, _AS,
|
|
460
|
+
0,
|
|
461
|
+
[_GLEDS, _GLES, _GLESM],
|
|
462
|
+
[0, 0, 0]
|
|
463
|
+
];
|
|
464
|
+
var CancelTagSyncTaskInput$ = [3, n0, _CTSTI,
|
|
465
|
+
0,
|
|
466
|
+
[_TA],
|
|
467
|
+
[0], 1
|
|
468
|
+
];
|
|
469
|
+
var CreateGroupInput$ = [3, n0, _CGI,
|
|
470
|
+
0,
|
|
471
|
+
[_N, _D, _RQ, _T, _C, _Cr, _O, _DN],
|
|
472
|
+
[0, 0, () => ResourceQuery$, 128 | 0, () => GroupConfigurationList, 1, 0, 0], 1
|
|
473
|
+
];
|
|
474
|
+
var CreateGroupOutput$ = [3, n0, _CGO,
|
|
475
|
+
0,
|
|
476
|
+
[_G, _RQ, _T, _GC],
|
|
477
|
+
[() => Group$, () => ResourceQuery$, 128 | 0, () => GroupConfiguration$]
|
|
478
|
+
];
|
|
479
|
+
var DeleteGroupInput$ = [3, n0, _DGI,
|
|
480
|
+
0,
|
|
481
|
+
[_GN, _G],
|
|
482
|
+
[0, 0]
|
|
483
|
+
];
|
|
484
|
+
var DeleteGroupOutput$ = [3, n0, _DGO,
|
|
485
|
+
0,
|
|
486
|
+
[_G],
|
|
487
|
+
[() => Group$]
|
|
488
|
+
];
|
|
489
|
+
var FailedResource$ = [3, n0, _FR,
|
|
490
|
+
0,
|
|
491
|
+
[_RA, _EM, _EC],
|
|
492
|
+
[0, 0, 0]
|
|
493
|
+
];
|
|
494
|
+
var GetAccountSettingsOutput$ = [3, n0, _GASO,
|
|
495
|
+
0,
|
|
496
|
+
[_AS],
|
|
497
|
+
[() => AccountSettings$]
|
|
498
|
+
];
|
|
499
|
+
var GetGroupConfigurationInput$ = [3, n0, _GGCI,
|
|
500
|
+
0,
|
|
501
|
+
[_G],
|
|
502
|
+
[0]
|
|
503
|
+
];
|
|
504
|
+
var GetGroupConfigurationOutput$ = [3, n0, _GGCO,
|
|
505
|
+
0,
|
|
506
|
+
[_GC],
|
|
507
|
+
[() => GroupConfiguration$]
|
|
508
|
+
];
|
|
509
|
+
var GetGroupInput$ = [3, n0, _GGI,
|
|
510
|
+
0,
|
|
511
|
+
[_GN, _G],
|
|
512
|
+
[0, 0]
|
|
513
|
+
];
|
|
514
|
+
var GetGroupOutput$ = [3, n0, _GGO,
|
|
515
|
+
0,
|
|
516
|
+
[_G],
|
|
517
|
+
[() => Group$]
|
|
518
|
+
];
|
|
519
|
+
var GetGroupQueryInput$ = [3, n0, _GGQI,
|
|
520
|
+
0,
|
|
521
|
+
[_GN, _G],
|
|
522
|
+
[0, 0]
|
|
523
|
+
];
|
|
524
|
+
var GetGroupQueryOutput$ = [3, n0, _GGQO,
|
|
525
|
+
0,
|
|
526
|
+
[_GQ],
|
|
527
|
+
[() => GroupQuery$]
|
|
528
|
+
];
|
|
529
|
+
var GetTagsInput$ = [3, n0, _GTI,
|
|
530
|
+
0,
|
|
531
|
+
[_A],
|
|
532
|
+
[[0, 1]], 1
|
|
533
|
+
];
|
|
534
|
+
var GetTagsOutput$ = [3, n0, _GTO,
|
|
535
|
+
0,
|
|
536
|
+
[_A, _T],
|
|
537
|
+
[0, 128 | 0]
|
|
538
|
+
];
|
|
539
|
+
var GetTagSyncTaskInput$ = [3, n0, _GTSTI,
|
|
540
|
+
0,
|
|
541
|
+
[_TA],
|
|
542
|
+
[0], 1
|
|
543
|
+
];
|
|
544
|
+
var GetTagSyncTaskOutput$ = [3, n0, _GTSTO,
|
|
545
|
+
0,
|
|
546
|
+
[_GA, _GN, _TA, _TK, _TV, _RQ, _RAo, _S, _EM, _CA],
|
|
547
|
+
[0, 0, 0, 0, 0, () => ResourceQuery$, 0, 0, 0, 4]
|
|
548
|
+
];
|
|
549
|
+
var Group$ = [3, n0, _G,
|
|
550
|
+
0,
|
|
551
|
+
[_GA, _N, _D, _Cr, _O, _DN, _AT],
|
|
552
|
+
[0, 0, 0, 1, 0, 0, 128 | 0], 2
|
|
553
|
+
];
|
|
554
|
+
var GroupConfiguration$ = [3, n0, _GC,
|
|
555
|
+
0,
|
|
556
|
+
[_C, _PC, _S, _FRa],
|
|
557
|
+
[() => GroupConfigurationList, () => GroupConfigurationList, 0, 0]
|
|
558
|
+
];
|
|
559
|
+
var GroupConfigurationItem$ = [3, n0, _GCI,
|
|
560
|
+
0,
|
|
561
|
+
[_Ty, _P],
|
|
562
|
+
[0, () => GroupParameterList], 1
|
|
563
|
+
];
|
|
564
|
+
var GroupConfigurationParameter$ = [3, n0, _GCP,
|
|
565
|
+
0,
|
|
566
|
+
[_N, _V],
|
|
567
|
+
[0, 64 | 0], 1
|
|
568
|
+
];
|
|
569
|
+
var GroupFilter$ = [3, n0, _GF,
|
|
570
|
+
0,
|
|
571
|
+
[_N, _V],
|
|
572
|
+
[0, 64 | 0], 2
|
|
573
|
+
];
|
|
574
|
+
var GroupIdentifier$ = [3, n0, _GI,
|
|
575
|
+
0,
|
|
576
|
+
[_GN, _GA, _D, _Cr, _O, _DN],
|
|
577
|
+
[0, 0, 0, 1, 0, 0]
|
|
578
|
+
];
|
|
579
|
+
var GroupingStatusesItem$ = [3, n0, _GSI,
|
|
580
|
+
0,
|
|
581
|
+
[_RA, _Ac, _S, _EM, _EC, _UA],
|
|
582
|
+
[0, 0, 0, 0, 0, 4]
|
|
583
|
+
];
|
|
584
|
+
var GroupQuery$ = [3, n0, _GQ,
|
|
585
|
+
0,
|
|
586
|
+
[_GN, _RQ],
|
|
587
|
+
[0, () => ResourceQuery$], 2
|
|
588
|
+
];
|
|
589
|
+
var GroupResourcesInput$ = [3, n0, _GRI,
|
|
590
|
+
0,
|
|
591
|
+
[_G, _RAe],
|
|
592
|
+
[0, 64 | 0], 2
|
|
593
|
+
];
|
|
594
|
+
var GroupResourcesOutput$ = [3, n0, _GRO,
|
|
595
|
+
0,
|
|
596
|
+
[_Su, _F, _Pe],
|
|
597
|
+
[64 | 0, () => FailedResourceList, () => PendingResourceList]
|
|
598
|
+
];
|
|
599
|
+
var ListGroupingStatusesFilter$ = [3, n0, _LGSF,
|
|
600
|
+
0,
|
|
601
|
+
[_N, _V],
|
|
602
|
+
[0, 64 | 0], 2
|
|
603
|
+
];
|
|
604
|
+
var ListGroupingStatusesInput$ = [3, n0, _LGSI,
|
|
605
|
+
0,
|
|
606
|
+
[_G, _MR, _Fi, _NT],
|
|
607
|
+
[0, 1, () => ListGroupingStatusesFilterList, 0], 1
|
|
608
|
+
];
|
|
609
|
+
var ListGroupingStatusesOutput$ = [3, n0, _LGSO,
|
|
610
|
+
0,
|
|
611
|
+
[_G, _GS, _NT],
|
|
612
|
+
[0, () => GroupingStatusesList, 0]
|
|
613
|
+
];
|
|
614
|
+
var ListGroupResourcesInput$ = [3, n0, _LGRI,
|
|
615
|
+
0,
|
|
616
|
+
[_GN, _G, _Fi, _MR, _NT],
|
|
617
|
+
[0, 0, () => ResourceFilterList, 1, 0]
|
|
618
|
+
];
|
|
619
|
+
var ListGroupResourcesItem$ = [3, n0, _LGRIi,
|
|
620
|
+
0,
|
|
621
|
+
[_I, _S],
|
|
622
|
+
[() => ResourceIdentifier$, () => ResourceStatus$]
|
|
623
|
+
];
|
|
624
|
+
var ListGroupResourcesOutput$ = [3, n0, _LGRO,
|
|
625
|
+
0,
|
|
626
|
+
[_R, _RI, _NT, _QE],
|
|
627
|
+
[() => ListGroupResourcesItemList, () => ResourceIdentifierList, 0, () => QueryErrorList]
|
|
628
|
+
];
|
|
629
|
+
var ListGroupsInput$ = [3, n0, _LGI,
|
|
630
|
+
0,
|
|
631
|
+
[_Fi, _MR, _NT],
|
|
632
|
+
[() => GroupFilterList, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
633
|
+
];
|
|
634
|
+
var ListGroupsOutput$ = [3, n0, _LGO,
|
|
635
|
+
0,
|
|
636
|
+
[_GIr, _Gr, _NT],
|
|
637
|
+
[() => GroupIdentifierList, () => GroupList, 0]
|
|
638
|
+
];
|
|
639
|
+
var ListTagSyncTasksFilter$ = [3, n0, _LTSTF,
|
|
640
|
+
0,
|
|
641
|
+
[_GA, _GN],
|
|
642
|
+
[0, 0]
|
|
643
|
+
];
|
|
644
|
+
var ListTagSyncTasksInput$ = [3, n0, _LTSTI,
|
|
645
|
+
0,
|
|
646
|
+
[_Fi, _MR, _NT],
|
|
647
|
+
[() => ListTagSyncTasksFilterList, 1, 0]
|
|
648
|
+
];
|
|
649
|
+
var ListTagSyncTasksOutput$ = [3, n0, _LTSTO,
|
|
650
|
+
0,
|
|
651
|
+
[_TST, _NT],
|
|
652
|
+
[() => TagSyncTaskList, 0]
|
|
653
|
+
];
|
|
654
|
+
var PendingResource$ = [3, n0, _PR,
|
|
655
|
+
0,
|
|
656
|
+
[_RA],
|
|
657
|
+
[0]
|
|
658
|
+
];
|
|
659
|
+
var PutGroupConfigurationInput$ = [3, n0, _PGCI,
|
|
660
|
+
0,
|
|
661
|
+
[_G, _C],
|
|
662
|
+
[0, () => GroupConfigurationList]
|
|
663
|
+
];
|
|
664
|
+
var PutGroupConfigurationOutput$ = [3, n0, _PGCO,
|
|
665
|
+
0,
|
|
666
|
+
[],
|
|
667
|
+
[]
|
|
668
|
+
];
|
|
669
|
+
var QueryError$ = [3, n0, _QEu,
|
|
670
|
+
0,
|
|
671
|
+
[_EC, _M],
|
|
672
|
+
[0, 0]
|
|
673
|
+
];
|
|
674
|
+
var ResourceFilter$ = [3, n0, _RF,
|
|
675
|
+
0,
|
|
676
|
+
[_N, _V],
|
|
677
|
+
[0, 64 | 0], 2
|
|
678
|
+
];
|
|
679
|
+
var ResourceIdentifier$ = [3, n0, _RIe,
|
|
680
|
+
0,
|
|
681
|
+
[_RA, _RT],
|
|
682
|
+
[0, 0]
|
|
683
|
+
];
|
|
684
|
+
var ResourceQuery$ = [3, n0, _RQ,
|
|
685
|
+
0,
|
|
686
|
+
[_Ty, _Q],
|
|
687
|
+
[0, 0], 2
|
|
688
|
+
];
|
|
689
|
+
var ResourceStatus$ = [3, n0, _RS,
|
|
690
|
+
0,
|
|
691
|
+
[_N],
|
|
692
|
+
[0]
|
|
693
|
+
];
|
|
694
|
+
var SearchResourcesInput$ = [3, n0, _SRI,
|
|
695
|
+
0,
|
|
696
|
+
[_RQ, _MR, _NT],
|
|
697
|
+
[() => ResourceQuery$, 1, 0], 1
|
|
698
|
+
];
|
|
699
|
+
var SearchResourcesOutput$ = [3, n0, _SRO,
|
|
700
|
+
0,
|
|
701
|
+
[_RI, _NT, _QE],
|
|
702
|
+
[() => ResourceIdentifierList, 0, () => QueryErrorList]
|
|
703
|
+
];
|
|
704
|
+
var StartTagSyncTaskInput$ = [3, n0, _STSTI,
|
|
705
|
+
0,
|
|
706
|
+
[_G, _RAo, _TK, _TV, _RQ],
|
|
707
|
+
[0, 0, 0, 0, () => ResourceQuery$], 2
|
|
708
|
+
];
|
|
709
|
+
var StartTagSyncTaskOutput$ = [3, n0, _STSTO,
|
|
710
|
+
0,
|
|
711
|
+
[_GA, _GN, _TA, _TK, _TV, _RQ, _RAo],
|
|
712
|
+
[0, 0, 0, 0, 0, () => ResourceQuery$, 0]
|
|
713
|
+
];
|
|
714
|
+
var TagInput$ = [3, n0, _TI,
|
|
715
|
+
0,
|
|
716
|
+
[_A, _T],
|
|
717
|
+
[[0, 1], 128 | 0], 2
|
|
718
|
+
];
|
|
719
|
+
var TagOutput$ = [3, n0, _TO,
|
|
720
|
+
0,
|
|
721
|
+
[_A, _T],
|
|
722
|
+
[0, 128 | 0]
|
|
723
|
+
];
|
|
724
|
+
var TagSyncTaskItem$ = [3, n0, _TSTI,
|
|
725
|
+
0,
|
|
726
|
+
[_GA, _GN, _TA, _TK, _TV, _RQ, _RAo, _S, _EM, _CA],
|
|
727
|
+
[0, 0, 0, 0, 0, () => ResourceQuery$, 0, 0, 0, 4]
|
|
728
|
+
];
|
|
729
|
+
var UngroupResourcesInput$ = [3, n0, _URI,
|
|
730
|
+
0,
|
|
731
|
+
[_G, _RAe],
|
|
732
|
+
[0, 64 | 0], 2
|
|
733
|
+
];
|
|
734
|
+
var UngroupResourcesOutput$ = [3, n0, _URO,
|
|
735
|
+
0,
|
|
736
|
+
[_Su, _F, _Pe],
|
|
737
|
+
[64 | 0, () => FailedResourceList, () => PendingResourceList]
|
|
738
|
+
];
|
|
739
|
+
var UntagInput$ = [3, n0, _UI,
|
|
740
|
+
0,
|
|
741
|
+
[_A, _K],
|
|
742
|
+
[[0, 1], 64 | 0], 2
|
|
743
|
+
];
|
|
744
|
+
var UntagOutput$ = [3, n0, _UO,
|
|
745
|
+
0,
|
|
746
|
+
[_A, _K],
|
|
747
|
+
[0, 64 | 0]
|
|
748
|
+
];
|
|
749
|
+
var UpdateAccountSettingsInput$ = [3, n0, _UASI,
|
|
750
|
+
0,
|
|
751
|
+
[_GLEDS],
|
|
752
|
+
[0]
|
|
753
|
+
];
|
|
754
|
+
var UpdateAccountSettingsOutput$ = [3, n0, _UASO,
|
|
755
|
+
0,
|
|
756
|
+
[_AS],
|
|
757
|
+
[() => AccountSettings$]
|
|
758
|
+
];
|
|
759
|
+
var UpdateGroupInput$ = [3, n0, _UGI,
|
|
760
|
+
0,
|
|
761
|
+
[_GN, _G, _D, _Cr, _O, _DN],
|
|
762
|
+
[0, 0, 0, 1, 0, 0]
|
|
763
|
+
];
|
|
764
|
+
var UpdateGroupOutput$ = [3, n0, _UGO,
|
|
765
|
+
0,
|
|
766
|
+
[_G],
|
|
767
|
+
[() => Group$]
|
|
768
|
+
];
|
|
769
|
+
var UpdateGroupQueryInput$ = [3, n0, _UGQI,
|
|
770
|
+
0,
|
|
771
|
+
[_RQ, _GN, _G],
|
|
772
|
+
[() => ResourceQuery$, 0, 0], 1
|
|
773
|
+
];
|
|
774
|
+
var UpdateGroupQueryOutput$ = [3, n0, _UGQO,
|
|
775
|
+
0,
|
|
776
|
+
[_GQ],
|
|
777
|
+
[() => GroupQuery$]
|
|
778
|
+
];
|
|
779
|
+
var __Unit = "unit";
|
|
780
|
+
var FailedResourceList = [1, n0, _FRL,
|
|
781
|
+
0, () => FailedResource$
|
|
782
|
+
];
|
|
783
|
+
var GroupConfigurationList = [1, n0, _GCL,
|
|
784
|
+
0, () => GroupConfigurationItem$
|
|
785
|
+
];
|
|
786
|
+
var GroupFilterList = [1, n0, _GFL,
|
|
787
|
+
0, () => GroupFilter$
|
|
788
|
+
];
|
|
789
|
+
var GroupIdentifierList = [1, n0, _GIL,
|
|
790
|
+
0, () => GroupIdentifier$
|
|
791
|
+
];
|
|
792
|
+
var GroupingStatusesList = [1, n0, _GSL,
|
|
793
|
+
0, () => GroupingStatusesItem$
|
|
794
|
+
];
|
|
795
|
+
var GroupList = [1, n0, _GL,
|
|
796
|
+
0, () => Group$
|
|
797
|
+
];
|
|
798
|
+
var GroupParameterList = [1, n0, _GPL,
|
|
799
|
+
0, () => GroupConfigurationParameter$
|
|
800
|
+
];
|
|
801
|
+
var ListGroupingStatusesFilterList = [1, n0, _LGSFL,
|
|
802
|
+
0, () => ListGroupingStatusesFilter$
|
|
803
|
+
];
|
|
804
|
+
var ListGroupResourcesItemList = [1, n0, _LGRIL,
|
|
805
|
+
0, () => ListGroupResourcesItem$
|
|
806
|
+
];
|
|
807
|
+
var ListTagSyncTasksFilterList = [1, n0, _LTSTFL,
|
|
808
|
+
0, () => ListTagSyncTasksFilter$
|
|
809
|
+
];
|
|
810
|
+
var PendingResourceList = [1, n0, _PRL,
|
|
811
|
+
0, () => PendingResource$
|
|
812
|
+
];
|
|
813
|
+
var QueryErrorList = [1, n0, _QEL,
|
|
814
|
+
0, () => QueryError$
|
|
815
|
+
];
|
|
816
|
+
var ResourceFilterList = [1, n0, _RFL,
|
|
817
|
+
0, () => ResourceFilter$
|
|
818
|
+
];
|
|
819
|
+
var ResourceIdentifierList = [1, n0, _RIL,
|
|
820
|
+
0, () => ResourceIdentifier$
|
|
821
|
+
];
|
|
822
|
+
var TagSyncTaskList = [1, n0, _TSTL,
|
|
823
|
+
0, () => TagSyncTaskItem$
|
|
824
|
+
];
|
|
825
|
+
var CancelTagSyncTask$ = [9, n0, _CTST,
|
|
826
|
+
{ [_h]: ["POST", "/cancel-tag-sync-task", 200] }, () => CancelTagSyncTaskInput$, () => __Unit
|
|
827
|
+
];
|
|
828
|
+
var CreateGroup$ = [9, n0, _CG,
|
|
829
|
+
{ [_h]: ["POST", "/groups", 200] }, () => CreateGroupInput$, () => CreateGroupOutput$
|
|
830
|
+
];
|
|
831
|
+
var DeleteGroup$ = [9, n0, _DG,
|
|
832
|
+
{ [_h]: ["POST", "/delete-group", 200] }, () => DeleteGroupInput$, () => DeleteGroupOutput$
|
|
833
|
+
];
|
|
834
|
+
var GetAccountSettings$ = [9, n0, _GAS,
|
|
835
|
+
{ [_h]: ["POST", "/get-account-settings", 200] }, () => __Unit, () => GetAccountSettingsOutput$
|
|
836
|
+
];
|
|
837
|
+
var GetGroup$ = [9, n0, _GG,
|
|
838
|
+
{ [_h]: ["POST", "/get-group", 200] }, () => GetGroupInput$, () => GetGroupOutput$
|
|
839
|
+
];
|
|
840
|
+
var GetGroupConfiguration$ = [9, n0, _GGC,
|
|
841
|
+
{ [_h]: ["POST", "/get-group-configuration", 200] }, () => GetGroupConfigurationInput$, () => GetGroupConfigurationOutput$
|
|
842
|
+
];
|
|
843
|
+
var GetGroupQuery$ = [9, n0, _GGQ,
|
|
844
|
+
{ [_h]: ["POST", "/get-group-query", 200] }, () => GetGroupQueryInput$, () => GetGroupQueryOutput$
|
|
845
|
+
];
|
|
846
|
+
var GetTags$ = [9, n0, _GT,
|
|
847
|
+
{ [_h]: ["GET", "/resources/{Arn}/tags", 200] }, () => GetTagsInput$, () => GetTagsOutput$
|
|
848
|
+
];
|
|
849
|
+
var GetTagSyncTask$ = [9, n0, _GTST,
|
|
850
|
+
{ [_h]: ["POST", "/get-tag-sync-task", 200] }, () => GetTagSyncTaskInput$, () => GetTagSyncTaskOutput$
|
|
851
|
+
];
|
|
852
|
+
var GroupResources$ = [9, n0, _GR,
|
|
853
|
+
{ [_h]: ["POST", "/group-resources", 200] }, () => GroupResourcesInput$, () => GroupResourcesOutput$
|
|
854
|
+
];
|
|
855
|
+
var ListGroupingStatuses$ = [9, n0, _LGS,
|
|
856
|
+
{ [_h]: ["POST", "/list-grouping-statuses", 200] }, () => ListGroupingStatusesInput$, () => ListGroupingStatusesOutput$
|
|
857
|
+
];
|
|
858
|
+
var ListGroupResources$ = [9, n0, _LGR,
|
|
859
|
+
{ [_h]: ["POST", "/list-group-resources", 200] }, () => ListGroupResourcesInput$, () => ListGroupResourcesOutput$
|
|
860
|
+
];
|
|
861
|
+
var ListGroups$ = [9, n0, _LG,
|
|
862
|
+
{ [_h]: ["POST", "/groups-list", 200] }, () => ListGroupsInput$, () => ListGroupsOutput$
|
|
863
|
+
];
|
|
864
|
+
var ListTagSyncTasks$ = [9, n0, _LTST,
|
|
865
|
+
{ [_h]: ["POST", "/list-tag-sync-tasks", 200] }, () => ListTagSyncTasksInput$, () => ListTagSyncTasksOutput$
|
|
866
|
+
];
|
|
867
|
+
var PutGroupConfiguration$ = [9, n0, _PGC,
|
|
868
|
+
{ [_h]: ["POST", "/put-group-configuration", 202] }, () => PutGroupConfigurationInput$, () => PutGroupConfigurationOutput$
|
|
869
|
+
];
|
|
870
|
+
var SearchResources$ = [9, n0, _SR,
|
|
871
|
+
{ [_h]: ["POST", "/resources/search", 200] }, () => SearchResourcesInput$, () => SearchResourcesOutput$
|
|
872
|
+
];
|
|
873
|
+
var StartTagSyncTask$ = [9, n0, _STST,
|
|
874
|
+
{ [_h]: ["POST", "/start-tag-sync-task", 200] }, () => StartTagSyncTaskInput$, () => StartTagSyncTaskOutput$
|
|
875
|
+
];
|
|
876
|
+
var Tag$ = [9, n0, _Ta,
|
|
877
|
+
{ [_h]: ["PUT", "/resources/{Arn}/tags", 200] }, () => TagInput$, () => TagOutput$
|
|
878
|
+
];
|
|
879
|
+
var UngroupResources$ = [9, n0, _UR,
|
|
880
|
+
{ [_h]: ["POST", "/ungroup-resources", 200] }, () => UngroupResourcesInput$, () => UngroupResourcesOutput$
|
|
881
|
+
];
|
|
882
|
+
var Untag$ = [9, n0, _U,
|
|
883
|
+
{ [_h]: ["PATCH", "/resources/{Arn}/tags", 200] }, () => UntagInput$, () => UntagOutput$
|
|
884
|
+
];
|
|
885
|
+
var UpdateAccountSettings$ = [9, n0, _UAS,
|
|
886
|
+
{ [_h]: ["POST", "/update-account-settings", 200] }, () => UpdateAccountSettingsInput$, () => UpdateAccountSettingsOutput$
|
|
887
|
+
];
|
|
888
|
+
var UpdateGroup$ = [9, n0, _UG,
|
|
889
|
+
{ [_h]: ["POST", "/update-group", 200] }, () => UpdateGroupInput$, () => UpdateGroupOutput$
|
|
890
|
+
];
|
|
891
|
+
var UpdateGroupQuery$ = [9, n0, _UGQ,
|
|
892
|
+
{ [_h]: ["POST", "/update-group-query", 200] }, () => UpdateGroupQueryInput$, () => UpdateGroupQueryOutput$
|
|
893
|
+
];
|
|
894
|
+
|
|
895
|
+
const getRuntimeConfig$1 = (config) => {
|
|
896
|
+
return {
|
|
897
|
+
apiVersion: "2017-11-27",
|
|
898
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
899
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
900
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
901
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
902
|
+
extensions: config?.extensions ?? [],
|
|
903
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultResourceGroupsHttpAuthSchemeProvider,
|
|
904
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
905
|
+
{
|
|
906
|
+
schemeId: "aws.auth#sigv4",
|
|
907
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
908
|
+
signer: new AwsSdkSigV4Signer(),
|
|
909
|
+
},
|
|
910
|
+
],
|
|
911
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
912
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
913
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
914
|
+
defaultNamespace: "com.amazonaws.resourcegroups",
|
|
915
|
+
errorTypeRegistries,
|
|
916
|
+
version: "2017-11-27",
|
|
917
|
+
serviceTarget: "Ardi",
|
|
918
|
+
},
|
|
919
|
+
serviceId: config?.serviceId ?? "Resource Groups",
|
|
920
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
921
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
922
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
923
|
+
};
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
const getRuntimeConfig = (config) => {
|
|
927
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
928
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
929
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
930
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
931
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
932
|
+
const loaderConfig = {
|
|
933
|
+
profile: config?.profile,
|
|
934
|
+
logger: clientSharedValues.logger,
|
|
935
|
+
};
|
|
936
|
+
return {
|
|
937
|
+
...clientSharedValues,
|
|
938
|
+
...config,
|
|
939
|
+
runtime: "node",
|
|
940
|
+
defaultsMode,
|
|
941
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
942
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
943
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
944
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
945
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
946
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
947
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
948
|
+
retryMode: config?.retryMode ??
|
|
949
|
+
loadConfig({
|
|
950
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
951
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
952
|
+
}, config),
|
|
953
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
954
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
955
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
956
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
957
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
958
|
+
};
|
|
959
|
+
};
|
|
960
|
+
|
|
34
961
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
962
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
963
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -490,43 +1417,147 @@ const GroupFilterName = {
|
|
|
490
1417
|
ResourceType: "resource-type",
|
|
491
1418
|
};
|
|
492
1419
|
|
|
1420
|
+
exports.AccountSettings$ = AccountSettings$;
|
|
1421
|
+
exports.BadRequestException = BadRequestException;
|
|
1422
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1423
|
+
exports.CancelTagSyncTask$ = CancelTagSyncTask$;
|
|
493
1424
|
exports.CancelTagSyncTaskCommand = CancelTagSyncTaskCommand;
|
|
1425
|
+
exports.CancelTagSyncTaskInput$ = CancelTagSyncTaskInput$;
|
|
1426
|
+
exports.CreateGroup$ = CreateGroup$;
|
|
494
1427
|
exports.CreateGroupCommand = CreateGroupCommand;
|
|
1428
|
+
exports.CreateGroupInput$ = CreateGroupInput$;
|
|
1429
|
+
exports.CreateGroupOutput$ = CreateGroupOutput$;
|
|
1430
|
+
exports.DeleteGroup$ = DeleteGroup$;
|
|
495
1431
|
exports.DeleteGroupCommand = DeleteGroupCommand;
|
|
1432
|
+
exports.DeleteGroupInput$ = DeleteGroupInput$;
|
|
1433
|
+
exports.DeleteGroupOutput$ = DeleteGroupOutput$;
|
|
1434
|
+
exports.FailedResource$ = FailedResource$;
|
|
1435
|
+
exports.ForbiddenException = ForbiddenException;
|
|
1436
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
1437
|
+
exports.GetAccountSettings$ = GetAccountSettings$;
|
|
496
1438
|
exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
|
|
1439
|
+
exports.GetAccountSettingsOutput$ = GetAccountSettingsOutput$;
|
|
1440
|
+
exports.GetGroup$ = GetGroup$;
|
|
497
1441
|
exports.GetGroupCommand = GetGroupCommand;
|
|
1442
|
+
exports.GetGroupConfiguration$ = GetGroupConfiguration$;
|
|
498
1443
|
exports.GetGroupConfigurationCommand = GetGroupConfigurationCommand;
|
|
1444
|
+
exports.GetGroupConfigurationInput$ = GetGroupConfigurationInput$;
|
|
1445
|
+
exports.GetGroupConfigurationOutput$ = GetGroupConfigurationOutput$;
|
|
1446
|
+
exports.GetGroupInput$ = GetGroupInput$;
|
|
1447
|
+
exports.GetGroupOutput$ = GetGroupOutput$;
|
|
1448
|
+
exports.GetGroupQuery$ = GetGroupQuery$;
|
|
499
1449
|
exports.GetGroupQueryCommand = GetGroupQueryCommand;
|
|
1450
|
+
exports.GetGroupQueryInput$ = GetGroupQueryInput$;
|
|
1451
|
+
exports.GetGroupQueryOutput$ = GetGroupQueryOutput$;
|
|
1452
|
+
exports.GetTagSyncTask$ = GetTagSyncTask$;
|
|
500
1453
|
exports.GetTagSyncTaskCommand = GetTagSyncTaskCommand;
|
|
1454
|
+
exports.GetTagSyncTaskInput$ = GetTagSyncTaskInput$;
|
|
1455
|
+
exports.GetTagSyncTaskOutput$ = GetTagSyncTaskOutput$;
|
|
1456
|
+
exports.GetTags$ = GetTags$;
|
|
501
1457
|
exports.GetTagsCommand = GetTagsCommand;
|
|
1458
|
+
exports.GetTagsInput$ = GetTagsInput$;
|
|
1459
|
+
exports.GetTagsOutput$ = GetTagsOutput$;
|
|
1460
|
+
exports.Group$ = Group$;
|
|
1461
|
+
exports.GroupConfiguration$ = GroupConfiguration$;
|
|
1462
|
+
exports.GroupConfigurationItem$ = GroupConfigurationItem$;
|
|
1463
|
+
exports.GroupConfigurationParameter$ = GroupConfigurationParameter$;
|
|
502
1464
|
exports.GroupConfigurationStatus = GroupConfigurationStatus;
|
|
1465
|
+
exports.GroupFilter$ = GroupFilter$;
|
|
503
1466
|
exports.GroupFilterName = GroupFilterName;
|
|
1467
|
+
exports.GroupIdentifier$ = GroupIdentifier$;
|
|
504
1468
|
exports.GroupLifecycleEventsDesiredStatus = GroupLifecycleEventsDesiredStatus;
|
|
505
1469
|
exports.GroupLifecycleEventsStatus = GroupLifecycleEventsStatus;
|
|
1470
|
+
exports.GroupQuery$ = GroupQuery$;
|
|
1471
|
+
exports.GroupResources$ = GroupResources$;
|
|
506
1472
|
exports.GroupResourcesCommand = GroupResourcesCommand;
|
|
1473
|
+
exports.GroupResourcesInput$ = GroupResourcesInput$;
|
|
1474
|
+
exports.GroupResourcesOutput$ = GroupResourcesOutput$;
|
|
507
1475
|
exports.GroupingStatus = GroupingStatus;
|
|
1476
|
+
exports.GroupingStatusesItem$ = GroupingStatusesItem$;
|
|
508
1477
|
exports.GroupingType = GroupingType;
|
|
1478
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
1479
|
+
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
1480
|
+
exports.ListGroupResources$ = ListGroupResources$;
|
|
509
1481
|
exports.ListGroupResourcesCommand = ListGroupResourcesCommand;
|
|
1482
|
+
exports.ListGroupResourcesInput$ = ListGroupResourcesInput$;
|
|
1483
|
+
exports.ListGroupResourcesItem$ = ListGroupResourcesItem$;
|
|
1484
|
+
exports.ListGroupResourcesOutput$ = ListGroupResourcesOutput$;
|
|
1485
|
+
exports.ListGroupingStatuses$ = ListGroupingStatuses$;
|
|
510
1486
|
exports.ListGroupingStatusesCommand = ListGroupingStatusesCommand;
|
|
1487
|
+
exports.ListGroupingStatusesFilter$ = ListGroupingStatusesFilter$;
|
|
511
1488
|
exports.ListGroupingStatusesFilterName = ListGroupingStatusesFilterName;
|
|
1489
|
+
exports.ListGroupingStatusesInput$ = ListGroupingStatusesInput$;
|
|
1490
|
+
exports.ListGroupingStatusesOutput$ = ListGroupingStatusesOutput$;
|
|
1491
|
+
exports.ListGroups$ = ListGroups$;
|
|
512
1492
|
exports.ListGroupsCommand = ListGroupsCommand;
|
|
1493
|
+
exports.ListGroupsInput$ = ListGroupsInput$;
|
|
1494
|
+
exports.ListGroupsOutput$ = ListGroupsOutput$;
|
|
1495
|
+
exports.ListTagSyncTasks$ = ListTagSyncTasks$;
|
|
513
1496
|
exports.ListTagSyncTasksCommand = ListTagSyncTasksCommand;
|
|
1497
|
+
exports.ListTagSyncTasksFilter$ = ListTagSyncTasksFilter$;
|
|
1498
|
+
exports.ListTagSyncTasksInput$ = ListTagSyncTasksInput$;
|
|
1499
|
+
exports.ListTagSyncTasksOutput$ = ListTagSyncTasksOutput$;
|
|
1500
|
+
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
1501
|
+
exports.MethodNotAllowedException$ = MethodNotAllowedException$;
|
|
1502
|
+
exports.NotFoundException = NotFoundException;
|
|
1503
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
1504
|
+
exports.PendingResource$ = PendingResource$;
|
|
1505
|
+
exports.PutGroupConfiguration$ = PutGroupConfiguration$;
|
|
514
1506
|
exports.PutGroupConfigurationCommand = PutGroupConfigurationCommand;
|
|
1507
|
+
exports.PutGroupConfigurationInput$ = PutGroupConfigurationInput$;
|
|
1508
|
+
exports.PutGroupConfigurationOutput$ = PutGroupConfigurationOutput$;
|
|
1509
|
+
exports.QueryError$ = QueryError$;
|
|
515
1510
|
exports.QueryErrorCode = QueryErrorCode;
|
|
516
1511
|
exports.QueryType = QueryType;
|
|
1512
|
+
exports.ResourceFilter$ = ResourceFilter$;
|
|
517
1513
|
exports.ResourceFilterName = ResourceFilterName;
|
|
518
1514
|
exports.ResourceGroups = ResourceGroups;
|
|
519
1515
|
exports.ResourceGroupsClient = ResourceGroupsClient;
|
|
1516
|
+
exports.ResourceGroupsServiceException = ResourceGroupsServiceException;
|
|
1517
|
+
exports.ResourceGroupsServiceException$ = ResourceGroupsServiceException$;
|
|
1518
|
+
exports.ResourceIdentifier$ = ResourceIdentifier$;
|
|
1519
|
+
exports.ResourceQuery$ = ResourceQuery$;
|
|
1520
|
+
exports.ResourceStatus$ = ResourceStatus$;
|
|
520
1521
|
exports.ResourceStatusValue = ResourceStatusValue;
|
|
1522
|
+
exports.SearchResources$ = SearchResources$;
|
|
521
1523
|
exports.SearchResourcesCommand = SearchResourcesCommand;
|
|
1524
|
+
exports.SearchResourcesInput$ = SearchResourcesInput$;
|
|
1525
|
+
exports.SearchResourcesOutput$ = SearchResourcesOutput$;
|
|
1526
|
+
exports.StartTagSyncTask$ = StartTagSyncTask$;
|
|
522
1527
|
exports.StartTagSyncTaskCommand = StartTagSyncTaskCommand;
|
|
1528
|
+
exports.StartTagSyncTaskInput$ = StartTagSyncTaskInput$;
|
|
1529
|
+
exports.StartTagSyncTaskOutput$ = StartTagSyncTaskOutput$;
|
|
1530
|
+
exports.Tag$ = Tag$;
|
|
523
1531
|
exports.TagCommand = TagCommand;
|
|
1532
|
+
exports.TagInput$ = TagInput$;
|
|
1533
|
+
exports.TagOutput$ = TagOutput$;
|
|
1534
|
+
exports.TagSyncTaskItem$ = TagSyncTaskItem$;
|
|
524
1535
|
exports.TagSyncTaskStatus = TagSyncTaskStatus;
|
|
1536
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1537
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1538
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
1539
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1540
|
+
exports.UngroupResources$ = UngroupResources$;
|
|
525
1541
|
exports.UngroupResourcesCommand = UngroupResourcesCommand;
|
|
1542
|
+
exports.UngroupResourcesInput$ = UngroupResourcesInput$;
|
|
1543
|
+
exports.UngroupResourcesOutput$ = UngroupResourcesOutput$;
|
|
1544
|
+
exports.Untag$ = Untag$;
|
|
526
1545
|
exports.UntagCommand = UntagCommand;
|
|
1546
|
+
exports.UntagInput$ = UntagInput$;
|
|
1547
|
+
exports.UntagOutput$ = UntagOutput$;
|
|
1548
|
+
exports.UpdateAccountSettings$ = UpdateAccountSettings$;
|
|
527
1549
|
exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
|
|
1550
|
+
exports.UpdateAccountSettingsInput$ = UpdateAccountSettingsInput$;
|
|
1551
|
+
exports.UpdateAccountSettingsOutput$ = UpdateAccountSettingsOutput$;
|
|
1552
|
+
exports.UpdateGroup$ = UpdateGroup$;
|
|
528
1553
|
exports.UpdateGroupCommand = UpdateGroupCommand;
|
|
1554
|
+
exports.UpdateGroupInput$ = UpdateGroupInput$;
|
|
1555
|
+
exports.UpdateGroupOutput$ = UpdateGroupOutput$;
|
|
1556
|
+
exports.UpdateGroupQuery$ = UpdateGroupQuery$;
|
|
529
1557
|
exports.UpdateGroupQueryCommand = UpdateGroupQueryCommand;
|
|
1558
|
+
exports.UpdateGroupQueryInput$ = UpdateGroupQueryInput$;
|
|
1559
|
+
exports.UpdateGroupQueryOutput$ = UpdateGroupQueryOutput$;
|
|
1560
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
530
1561
|
exports.paginateListGroupResources = paginateListGroupResources;
|
|
531
1562
|
exports.paginateListGroupingStatuses = paginateListGroupingStatuses;
|
|
532
1563
|
exports.paginateListGroups = paginateListGroups;
|