@aws-sdk/client-resource-groups 3.716.0 → 3.723.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 +158 -114
- package/dist-es/ResourceGroupsClient.js +1 -0
- package/dist-es/models/models_0.js +21 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -171,7 +171,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
171
171
|
}, "resolveRuntimeExtensions");
|
|
172
172
|
|
|
173
173
|
// src/ResourceGroupsClient.ts
|
|
174
|
-
var
|
|
174
|
+
var ResourceGroupsClient = class extends import_smithy_client.Client {
|
|
175
|
+
static {
|
|
176
|
+
__name(this, "ResourceGroupsClient");
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* The resolved configuration of ResourceGroupsClient class. This is resolved and normalized from the {@link ResourceGroupsClientConfig | constructor configuration interface}.
|
|
180
|
+
*/
|
|
181
|
+
config;
|
|
175
182
|
constructor(...[configuration]) {
|
|
176
183
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
177
184
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -181,7 +188,7 @@ var _ResourceGroupsClient = class _ResourceGroupsClient extends import_smithy_cl
|
|
|
181
188
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
182
189
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
183
190
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
184
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
191
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
185
192
|
super(_config_8);
|
|
186
193
|
this.config = _config_8;
|
|
187
194
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -209,8 +216,6 @@ var _ResourceGroupsClient = class _ResourceGroupsClient extends import_smithy_cl
|
|
|
209
216
|
super.destroy();
|
|
210
217
|
}
|
|
211
218
|
};
|
|
212
|
-
__name(_ResourceGroupsClient, "ResourceGroupsClient");
|
|
213
|
-
var ResourceGroupsClient = _ResourceGroupsClient;
|
|
214
219
|
|
|
215
220
|
// src/ResourceGroups.ts
|
|
216
221
|
|
|
@@ -227,7 +232,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
227
232
|
|
|
228
233
|
// src/models/ResourceGroupsServiceException.ts
|
|
229
234
|
|
|
230
|
-
var
|
|
235
|
+
var ResourceGroupsServiceException = class _ResourceGroupsServiceException extends import_smithy_client.ServiceException {
|
|
236
|
+
static {
|
|
237
|
+
__name(this, "ResourceGroupsServiceException");
|
|
238
|
+
}
|
|
231
239
|
/**
|
|
232
240
|
* @internal
|
|
233
241
|
*/
|
|
@@ -236,8 +244,6 @@ var _ResourceGroupsServiceException = class _ResourceGroupsServiceException exte
|
|
|
236
244
|
Object.setPrototypeOf(this, _ResourceGroupsServiceException.prototype);
|
|
237
245
|
}
|
|
238
246
|
};
|
|
239
|
-
__name(_ResourceGroupsServiceException, "ResourceGroupsServiceException");
|
|
240
|
-
var ResourceGroupsServiceException = _ResourceGroupsServiceException;
|
|
241
247
|
|
|
242
248
|
// src/models/models_0.ts
|
|
243
249
|
var GroupLifecycleEventsDesiredStatus = {
|
|
@@ -250,7 +256,13 @@ var GroupLifecycleEventsStatus = {
|
|
|
250
256
|
INACTIVE: "INACTIVE",
|
|
251
257
|
IN_PROGRESS: "IN_PROGRESS"
|
|
252
258
|
};
|
|
253
|
-
var
|
|
259
|
+
var BadRequestException = class _BadRequestException extends ResourceGroupsServiceException {
|
|
260
|
+
static {
|
|
261
|
+
__name(this, "BadRequestException");
|
|
262
|
+
}
|
|
263
|
+
name = "BadRequestException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
Message;
|
|
254
266
|
/**
|
|
255
267
|
* @internal
|
|
256
268
|
*/
|
|
@@ -260,15 +272,17 @@ var _BadRequestException = class _BadRequestException extends ResourceGroupsServ
|
|
|
260
272
|
$fault: "client",
|
|
261
273
|
...opts
|
|
262
274
|
});
|
|
263
|
-
this.name = "BadRequestException";
|
|
264
|
-
this.$fault = "client";
|
|
265
275
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
266
276
|
this.Message = opts.Message;
|
|
267
277
|
}
|
|
268
278
|
};
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
279
|
+
var ForbiddenException = class _ForbiddenException extends ResourceGroupsServiceException {
|
|
280
|
+
static {
|
|
281
|
+
__name(this, "ForbiddenException");
|
|
282
|
+
}
|
|
283
|
+
name = "ForbiddenException";
|
|
284
|
+
$fault = "client";
|
|
285
|
+
Message;
|
|
272
286
|
/**
|
|
273
287
|
* @internal
|
|
274
288
|
*/
|
|
@@ -278,15 +292,17 @@ var _ForbiddenException = class _ForbiddenException extends ResourceGroupsServic
|
|
|
278
292
|
$fault: "client",
|
|
279
293
|
...opts
|
|
280
294
|
});
|
|
281
|
-
this.name = "ForbiddenException";
|
|
282
|
-
this.$fault = "client";
|
|
283
295
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
284
296
|
this.Message = opts.Message;
|
|
285
297
|
}
|
|
286
298
|
};
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
299
|
+
var InternalServerErrorException = class _InternalServerErrorException extends ResourceGroupsServiceException {
|
|
300
|
+
static {
|
|
301
|
+
__name(this, "InternalServerErrorException");
|
|
302
|
+
}
|
|
303
|
+
name = "InternalServerErrorException";
|
|
304
|
+
$fault = "server";
|
|
305
|
+
Message;
|
|
290
306
|
/**
|
|
291
307
|
* @internal
|
|
292
308
|
*/
|
|
@@ -296,15 +312,17 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
296
312
|
$fault: "server",
|
|
297
313
|
...opts
|
|
298
314
|
});
|
|
299
|
-
this.name = "InternalServerErrorException";
|
|
300
|
-
this.$fault = "server";
|
|
301
315
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
302
316
|
this.Message = opts.Message;
|
|
303
317
|
}
|
|
304
318
|
};
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
319
|
+
var MethodNotAllowedException = class _MethodNotAllowedException extends ResourceGroupsServiceException {
|
|
320
|
+
static {
|
|
321
|
+
__name(this, "MethodNotAllowedException");
|
|
322
|
+
}
|
|
323
|
+
name = "MethodNotAllowedException";
|
|
324
|
+
$fault = "client";
|
|
325
|
+
Message;
|
|
308
326
|
/**
|
|
309
327
|
* @internal
|
|
310
328
|
*/
|
|
@@ -314,15 +332,17 @@ var _MethodNotAllowedException = class _MethodNotAllowedException extends Resour
|
|
|
314
332
|
$fault: "client",
|
|
315
333
|
...opts
|
|
316
334
|
});
|
|
317
|
-
this.name = "MethodNotAllowedException";
|
|
318
|
-
this.$fault = "client";
|
|
319
335
|
Object.setPrototypeOf(this, _MethodNotAllowedException.prototype);
|
|
320
336
|
this.Message = opts.Message;
|
|
321
337
|
}
|
|
322
338
|
};
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
339
|
+
var TooManyRequestsException = class _TooManyRequestsException extends ResourceGroupsServiceException {
|
|
340
|
+
static {
|
|
341
|
+
__name(this, "TooManyRequestsException");
|
|
342
|
+
}
|
|
343
|
+
name = "TooManyRequestsException";
|
|
344
|
+
$fault = "client";
|
|
345
|
+
Message;
|
|
326
346
|
/**
|
|
327
347
|
* @internal
|
|
328
348
|
*/
|
|
@@ -332,15 +352,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Resource
|
|
|
332
352
|
$fault: "client",
|
|
333
353
|
...opts
|
|
334
354
|
});
|
|
335
|
-
this.name = "TooManyRequestsException";
|
|
336
|
-
this.$fault = "client";
|
|
337
355
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
338
356
|
this.Message = opts.Message;
|
|
339
357
|
}
|
|
340
358
|
};
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
359
|
+
var UnauthorizedException = class _UnauthorizedException extends ResourceGroupsServiceException {
|
|
360
|
+
static {
|
|
361
|
+
__name(this, "UnauthorizedException");
|
|
362
|
+
}
|
|
363
|
+
name = "UnauthorizedException";
|
|
364
|
+
$fault = "client";
|
|
365
|
+
Message;
|
|
344
366
|
/**
|
|
345
367
|
* @internal
|
|
346
368
|
*/
|
|
@@ -350,14 +372,10 @@ var _UnauthorizedException = class _UnauthorizedException extends ResourceGroups
|
|
|
350
372
|
$fault: "client",
|
|
351
373
|
...opts
|
|
352
374
|
});
|
|
353
|
-
this.name = "UnauthorizedException";
|
|
354
|
-
this.$fault = "client";
|
|
355
375
|
Object.setPrototypeOf(this, _UnauthorizedException.prototype);
|
|
356
376
|
this.Message = opts.Message;
|
|
357
377
|
}
|
|
358
378
|
};
|
|
359
|
-
__name(_UnauthorizedException, "UnauthorizedException");
|
|
360
|
-
var UnauthorizedException = _UnauthorizedException;
|
|
361
379
|
var QueryType = {
|
|
362
380
|
CLOUDFORMATION_STACK_1_0: "CLOUDFORMATION_STACK_1_0",
|
|
363
381
|
TAG_FILTERS_1_0: "TAG_FILTERS_1_0"
|
|
@@ -367,7 +385,13 @@ var GroupConfigurationStatus = {
|
|
|
367
385
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
368
386
|
UPDATING: "UPDATING"
|
|
369
387
|
};
|
|
370
|
-
var
|
|
388
|
+
var NotFoundException = class _NotFoundException extends ResourceGroupsServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "NotFoundException");
|
|
391
|
+
}
|
|
392
|
+
name = "NotFoundException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
371
395
|
/**
|
|
372
396
|
* @internal
|
|
373
397
|
*/
|
|
@@ -377,14 +401,10 @@ var _NotFoundException = class _NotFoundException extends ResourceGroupsServiceE
|
|
|
377
401
|
$fault: "client",
|
|
378
402
|
...opts
|
|
379
403
|
});
|
|
380
|
-
this.name = "NotFoundException";
|
|
381
|
-
this.$fault = "client";
|
|
382
404
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
383
405
|
this.Message = opts.Message;
|
|
384
406
|
}
|
|
385
407
|
};
|
|
386
|
-
__name(_NotFoundException, "NotFoundException");
|
|
387
|
-
var NotFoundException = _NotFoundException;
|
|
388
408
|
var TagSyncTaskStatus = {
|
|
389
409
|
ACTIVE: "ACTIVE",
|
|
390
410
|
ERROR: "ERROR"
|
|
@@ -1319,323 +1339,346 @@ var _mR = "maxResults";
|
|
|
1319
1339
|
var _nT = "nextToken";
|
|
1320
1340
|
|
|
1321
1341
|
// src/commands/CancelTagSyncTaskCommand.ts
|
|
1322
|
-
var
|
|
1342
|
+
var CancelTagSyncTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1323
1343
|
return [
|
|
1324
1344
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1325
1345
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1326
1346
|
];
|
|
1327
1347
|
}).s("Ardi", "CancelTagSyncTask", {}).n("ResourceGroupsClient", "CancelTagSyncTaskCommand").f(void 0, void 0).ser(se_CancelTagSyncTaskCommand).de(de_CancelTagSyncTaskCommand).build() {
|
|
1348
|
+
static {
|
|
1349
|
+
__name(this, "CancelTagSyncTaskCommand");
|
|
1350
|
+
}
|
|
1328
1351
|
};
|
|
1329
|
-
__name(_CancelTagSyncTaskCommand, "CancelTagSyncTaskCommand");
|
|
1330
|
-
var CancelTagSyncTaskCommand = _CancelTagSyncTaskCommand;
|
|
1331
1352
|
|
|
1332
1353
|
// src/commands/CreateGroupCommand.ts
|
|
1333
1354
|
|
|
1334
1355
|
|
|
1335
1356
|
|
|
1336
|
-
var
|
|
1357
|
+
var CreateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1337
1358
|
return [
|
|
1338
1359
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1339
1360
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1340
1361
|
];
|
|
1341
1362
|
}).s("Ardi", "CreateGroup", {}).n("ResourceGroupsClient", "CreateGroupCommand").f(void 0, void 0).ser(se_CreateGroupCommand).de(de_CreateGroupCommand).build() {
|
|
1363
|
+
static {
|
|
1364
|
+
__name(this, "CreateGroupCommand");
|
|
1365
|
+
}
|
|
1342
1366
|
};
|
|
1343
|
-
__name(_CreateGroupCommand, "CreateGroupCommand");
|
|
1344
|
-
var CreateGroupCommand = _CreateGroupCommand;
|
|
1345
1367
|
|
|
1346
1368
|
// src/commands/DeleteGroupCommand.ts
|
|
1347
1369
|
|
|
1348
1370
|
|
|
1349
1371
|
|
|
1350
|
-
var
|
|
1372
|
+
var DeleteGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1351
1373
|
return [
|
|
1352
1374
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1353
1375
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1354
1376
|
];
|
|
1355
1377
|
}).s("Ardi", "DeleteGroup", {}).n("ResourceGroupsClient", "DeleteGroupCommand").f(void 0, void 0).ser(se_DeleteGroupCommand).de(de_DeleteGroupCommand).build() {
|
|
1378
|
+
static {
|
|
1379
|
+
__name(this, "DeleteGroupCommand");
|
|
1380
|
+
}
|
|
1356
1381
|
};
|
|
1357
|
-
__name(_DeleteGroupCommand, "DeleteGroupCommand");
|
|
1358
|
-
var DeleteGroupCommand = _DeleteGroupCommand;
|
|
1359
1382
|
|
|
1360
1383
|
// src/commands/GetAccountSettingsCommand.ts
|
|
1361
1384
|
|
|
1362
1385
|
|
|
1363
1386
|
|
|
1364
|
-
var
|
|
1387
|
+
var GetAccountSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1365
1388
|
return [
|
|
1366
1389
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1367
1390
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1368
1391
|
];
|
|
1369
1392
|
}).s("Ardi", "GetAccountSettings", {}).n("ResourceGroupsClient", "GetAccountSettingsCommand").f(void 0, void 0).ser(se_GetAccountSettingsCommand).de(de_GetAccountSettingsCommand).build() {
|
|
1393
|
+
static {
|
|
1394
|
+
__name(this, "GetAccountSettingsCommand");
|
|
1395
|
+
}
|
|
1370
1396
|
};
|
|
1371
|
-
__name(_GetAccountSettingsCommand, "GetAccountSettingsCommand");
|
|
1372
|
-
var GetAccountSettingsCommand = _GetAccountSettingsCommand;
|
|
1373
1397
|
|
|
1374
1398
|
// src/commands/GetGroupCommand.ts
|
|
1375
1399
|
|
|
1376
1400
|
|
|
1377
1401
|
|
|
1378
|
-
var
|
|
1402
|
+
var GetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1379
1403
|
return [
|
|
1380
1404
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1381
1405
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1382
1406
|
];
|
|
1383
1407
|
}).s("Ardi", "GetGroup", {}).n("ResourceGroupsClient", "GetGroupCommand").f(void 0, void 0).ser(se_GetGroupCommand).de(de_GetGroupCommand).build() {
|
|
1408
|
+
static {
|
|
1409
|
+
__name(this, "GetGroupCommand");
|
|
1410
|
+
}
|
|
1384
1411
|
};
|
|
1385
|
-
__name(_GetGroupCommand, "GetGroupCommand");
|
|
1386
|
-
var GetGroupCommand = _GetGroupCommand;
|
|
1387
1412
|
|
|
1388
1413
|
// src/commands/GetGroupConfigurationCommand.ts
|
|
1389
1414
|
|
|
1390
1415
|
|
|
1391
1416
|
|
|
1392
|
-
var
|
|
1417
|
+
var GetGroupConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1393
1418
|
return [
|
|
1394
1419
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1395
1420
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1396
1421
|
];
|
|
1397
1422
|
}).s("Ardi", "GetGroupConfiguration", {}).n("ResourceGroupsClient", "GetGroupConfigurationCommand").f(void 0, void 0).ser(se_GetGroupConfigurationCommand).de(de_GetGroupConfigurationCommand).build() {
|
|
1423
|
+
static {
|
|
1424
|
+
__name(this, "GetGroupConfigurationCommand");
|
|
1425
|
+
}
|
|
1398
1426
|
};
|
|
1399
|
-
__name(_GetGroupConfigurationCommand, "GetGroupConfigurationCommand");
|
|
1400
|
-
var GetGroupConfigurationCommand = _GetGroupConfigurationCommand;
|
|
1401
1427
|
|
|
1402
1428
|
// src/commands/GetGroupQueryCommand.ts
|
|
1403
1429
|
|
|
1404
1430
|
|
|
1405
1431
|
|
|
1406
|
-
var
|
|
1432
|
+
var GetGroupQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1407
1433
|
return [
|
|
1408
1434
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1409
1435
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1410
1436
|
];
|
|
1411
1437
|
}).s("Ardi", "GetGroupQuery", {}).n("ResourceGroupsClient", "GetGroupQueryCommand").f(void 0, void 0).ser(se_GetGroupQueryCommand).de(de_GetGroupQueryCommand).build() {
|
|
1438
|
+
static {
|
|
1439
|
+
__name(this, "GetGroupQueryCommand");
|
|
1440
|
+
}
|
|
1412
1441
|
};
|
|
1413
|
-
__name(_GetGroupQueryCommand, "GetGroupQueryCommand");
|
|
1414
|
-
var GetGroupQueryCommand = _GetGroupQueryCommand;
|
|
1415
1442
|
|
|
1416
1443
|
// src/commands/GetTagsCommand.ts
|
|
1417
1444
|
|
|
1418
1445
|
|
|
1419
1446
|
|
|
1420
|
-
var
|
|
1447
|
+
var GetTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1421
1448
|
return [
|
|
1422
1449
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1423
1450
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1424
1451
|
];
|
|
1425
1452
|
}).s("Ardi", "GetTags", {}).n("ResourceGroupsClient", "GetTagsCommand").f(void 0, void 0).ser(se_GetTagsCommand).de(de_GetTagsCommand).build() {
|
|
1453
|
+
static {
|
|
1454
|
+
__name(this, "GetTagsCommand");
|
|
1455
|
+
}
|
|
1426
1456
|
};
|
|
1427
|
-
__name(_GetTagsCommand, "GetTagsCommand");
|
|
1428
|
-
var GetTagsCommand = _GetTagsCommand;
|
|
1429
1457
|
|
|
1430
1458
|
// src/commands/GetTagSyncTaskCommand.ts
|
|
1431
1459
|
|
|
1432
1460
|
|
|
1433
1461
|
|
|
1434
|
-
var
|
|
1462
|
+
var GetTagSyncTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1435
1463
|
return [
|
|
1436
1464
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1437
1465
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1438
1466
|
];
|
|
1439
1467
|
}).s("Ardi", "GetTagSyncTask", {}).n("ResourceGroupsClient", "GetTagSyncTaskCommand").f(void 0, void 0).ser(se_GetTagSyncTaskCommand).de(de_GetTagSyncTaskCommand).build() {
|
|
1468
|
+
static {
|
|
1469
|
+
__name(this, "GetTagSyncTaskCommand");
|
|
1470
|
+
}
|
|
1440
1471
|
};
|
|
1441
|
-
__name(_GetTagSyncTaskCommand, "GetTagSyncTaskCommand");
|
|
1442
|
-
var GetTagSyncTaskCommand = _GetTagSyncTaskCommand;
|
|
1443
1472
|
|
|
1444
1473
|
// src/commands/GroupResourcesCommand.ts
|
|
1445
1474
|
|
|
1446
1475
|
|
|
1447
1476
|
|
|
1448
|
-
var
|
|
1477
|
+
var GroupResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1449
1478
|
return [
|
|
1450
1479
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1451
1480
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1452
1481
|
];
|
|
1453
1482
|
}).s("Ardi", "GroupResources", {}).n("ResourceGroupsClient", "GroupResourcesCommand").f(void 0, void 0).ser(se_GroupResourcesCommand).de(de_GroupResourcesCommand).build() {
|
|
1483
|
+
static {
|
|
1484
|
+
__name(this, "GroupResourcesCommand");
|
|
1485
|
+
}
|
|
1454
1486
|
};
|
|
1455
|
-
__name(_GroupResourcesCommand, "GroupResourcesCommand");
|
|
1456
|
-
var GroupResourcesCommand = _GroupResourcesCommand;
|
|
1457
1487
|
|
|
1458
1488
|
// src/commands/ListGroupingStatusesCommand.ts
|
|
1459
1489
|
|
|
1460
1490
|
|
|
1461
1491
|
|
|
1462
|
-
var
|
|
1492
|
+
var ListGroupingStatusesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1463
1493
|
return [
|
|
1464
1494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1465
1495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1466
1496
|
];
|
|
1467
1497
|
}).s("Ardi", "ListGroupingStatuses", {}).n("ResourceGroupsClient", "ListGroupingStatusesCommand").f(void 0, void 0).ser(se_ListGroupingStatusesCommand).de(de_ListGroupingStatusesCommand).build() {
|
|
1498
|
+
static {
|
|
1499
|
+
__name(this, "ListGroupingStatusesCommand");
|
|
1500
|
+
}
|
|
1468
1501
|
};
|
|
1469
|
-
__name(_ListGroupingStatusesCommand, "ListGroupingStatusesCommand");
|
|
1470
|
-
var ListGroupingStatusesCommand = _ListGroupingStatusesCommand;
|
|
1471
1502
|
|
|
1472
1503
|
// src/commands/ListGroupResourcesCommand.ts
|
|
1473
1504
|
|
|
1474
1505
|
|
|
1475
1506
|
|
|
1476
|
-
var
|
|
1507
|
+
var ListGroupResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1477
1508
|
return [
|
|
1478
1509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1479
1510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1480
1511
|
];
|
|
1481
1512
|
}).s("Ardi", "ListGroupResources", {}).n("ResourceGroupsClient", "ListGroupResourcesCommand").f(void 0, void 0).ser(se_ListGroupResourcesCommand).de(de_ListGroupResourcesCommand).build() {
|
|
1513
|
+
static {
|
|
1514
|
+
__name(this, "ListGroupResourcesCommand");
|
|
1515
|
+
}
|
|
1482
1516
|
};
|
|
1483
|
-
__name(_ListGroupResourcesCommand, "ListGroupResourcesCommand");
|
|
1484
|
-
var ListGroupResourcesCommand = _ListGroupResourcesCommand;
|
|
1485
1517
|
|
|
1486
1518
|
// src/commands/ListGroupsCommand.ts
|
|
1487
1519
|
|
|
1488
1520
|
|
|
1489
1521
|
|
|
1490
|
-
var
|
|
1522
|
+
var ListGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1491
1523
|
return [
|
|
1492
1524
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1493
1525
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1494
1526
|
];
|
|
1495
1527
|
}).s("Ardi", "ListGroups", {}).n("ResourceGroupsClient", "ListGroupsCommand").f(void 0, void 0).ser(se_ListGroupsCommand).de(de_ListGroupsCommand).build() {
|
|
1528
|
+
static {
|
|
1529
|
+
__name(this, "ListGroupsCommand");
|
|
1530
|
+
}
|
|
1496
1531
|
};
|
|
1497
|
-
__name(_ListGroupsCommand, "ListGroupsCommand");
|
|
1498
|
-
var ListGroupsCommand = _ListGroupsCommand;
|
|
1499
1532
|
|
|
1500
1533
|
// src/commands/ListTagSyncTasksCommand.ts
|
|
1501
1534
|
|
|
1502
1535
|
|
|
1503
1536
|
|
|
1504
|
-
var
|
|
1537
|
+
var ListTagSyncTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1505
1538
|
return [
|
|
1506
1539
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1507
1540
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1508
1541
|
];
|
|
1509
1542
|
}).s("Ardi", "ListTagSyncTasks", {}).n("ResourceGroupsClient", "ListTagSyncTasksCommand").f(void 0, void 0).ser(se_ListTagSyncTasksCommand).de(de_ListTagSyncTasksCommand).build() {
|
|
1543
|
+
static {
|
|
1544
|
+
__name(this, "ListTagSyncTasksCommand");
|
|
1545
|
+
}
|
|
1510
1546
|
};
|
|
1511
|
-
__name(_ListTagSyncTasksCommand, "ListTagSyncTasksCommand");
|
|
1512
|
-
var ListTagSyncTasksCommand = _ListTagSyncTasksCommand;
|
|
1513
1547
|
|
|
1514
1548
|
// src/commands/PutGroupConfigurationCommand.ts
|
|
1515
1549
|
|
|
1516
1550
|
|
|
1517
1551
|
|
|
1518
|
-
var
|
|
1552
|
+
var PutGroupConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1519
1553
|
return [
|
|
1520
1554
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1521
1555
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1522
1556
|
];
|
|
1523
1557
|
}).s("Ardi", "PutGroupConfiguration", {}).n("ResourceGroupsClient", "PutGroupConfigurationCommand").f(void 0, void 0).ser(se_PutGroupConfigurationCommand).de(de_PutGroupConfigurationCommand).build() {
|
|
1558
|
+
static {
|
|
1559
|
+
__name(this, "PutGroupConfigurationCommand");
|
|
1560
|
+
}
|
|
1524
1561
|
};
|
|
1525
|
-
__name(_PutGroupConfigurationCommand, "PutGroupConfigurationCommand");
|
|
1526
|
-
var PutGroupConfigurationCommand = _PutGroupConfigurationCommand;
|
|
1527
1562
|
|
|
1528
1563
|
// src/commands/SearchResourcesCommand.ts
|
|
1529
1564
|
|
|
1530
1565
|
|
|
1531
1566
|
|
|
1532
|
-
var
|
|
1567
|
+
var SearchResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1533
1568
|
return [
|
|
1534
1569
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1535
1570
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1536
1571
|
];
|
|
1537
1572
|
}).s("Ardi", "SearchResources", {}).n("ResourceGroupsClient", "SearchResourcesCommand").f(void 0, void 0).ser(se_SearchResourcesCommand).de(de_SearchResourcesCommand).build() {
|
|
1573
|
+
static {
|
|
1574
|
+
__name(this, "SearchResourcesCommand");
|
|
1575
|
+
}
|
|
1538
1576
|
};
|
|
1539
|
-
__name(_SearchResourcesCommand, "SearchResourcesCommand");
|
|
1540
|
-
var SearchResourcesCommand = _SearchResourcesCommand;
|
|
1541
1577
|
|
|
1542
1578
|
// src/commands/StartTagSyncTaskCommand.ts
|
|
1543
1579
|
|
|
1544
1580
|
|
|
1545
1581
|
|
|
1546
|
-
var
|
|
1582
|
+
var StartTagSyncTaskCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1547
1583
|
return [
|
|
1548
1584
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1549
1585
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1550
1586
|
];
|
|
1551
1587
|
}).s("Ardi", "StartTagSyncTask", {}).n("ResourceGroupsClient", "StartTagSyncTaskCommand").f(void 0, void 0).ser(se_StartTagSyncTaskCommand).de(de_StartTagSyncTaskCommand).build() {
|
|
1588
|
+
static {
|
|
1589
|
+
__name(this, "StartTagSyncTaskCommand");
|
|
1590
|
+
}
|
|
1552
1591
|
};
|
|
1553
|
-
__name(_StartTagSyncTaskCommand, "StartTagSyncTaskCommand");
|
|
1554
|
-
var StartTagSyncTaskCommand = _StartTagSyncTaskCommand;
|
|
1555
1592
|
|
|
1556
1593
|
// src/commands/TagCommand.ts
|
|
1557
1594
|
|
|
1558
1595
|
|
|
1559
1596
|
|
|
1560
|
-
var
|
|
1597
|
+
var TagCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1561
1598
|
return [
|
|
1562
1599
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1563
1600
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1564
1601
|
];
|
|
1565
1602
|
}).s("Ardi", "Tag", {}).n("ResourceGroupsClient", "TagCommand").f(void 0, void 0).ser(se_TagCommand).de(de_TagCommand).build() {
|
|
1603
|
+
static {
|
|
1604
|
+
__name(this, "TagCommand");
|
|
1605
|
+
}
|
|
1566
1606
|
};
|
|
1567
|
-
__name(_TagCommand, "TagCommand");
|
|
1568
|
-
var TagCommand = _TagCommand;
|
|
1569
1607
|
|
|
1570
1608
|
// src/commands/UngroupResourcesCommand.ts
|
|
1571
1609
|
|
|
1572
1610
|
|
|
1573
1611
|
|
|
1574
|
-
var
|
|
1612
|
+
var UngroupResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1575
1613
|
return [
|
|
1576
1614
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1577
1615
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1578
1616
|
];
|
|
1579
1617
|
}).s("Ardi", "UngroupResources", {}).n("ResourceGroupsClient", "UngroupResourcesCommand").f(void 0, void 0).ser(se_UngroupResourcesCommand).de(de_UngroupResourcesCommand).build() {
|
|
1618
|
+
static {
|
|
1619
|
+
__name(this, "UngroupResourcesCommand");
|
|
1620
|
+
}
|
|
1580
1621
|
};
|
|
1581
|
-
__name(_UngroupResourcesCommand, "UngroupResourcesCommand");
|
|
1582
|
-
var UngroupResourcesCommand = _UngroupResourcesCommand;
|
|
1583
1622
|
|
|
1584
1623
|
// src/commands/UntagCommand.ts
|
|
1585
1624
|
|
|
1586
1625
|
|
|
1587
1626
|
|
|
1588
|
-
var
|
|
1627
|
+
var UntagCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1589
1628
|
return [
|
|
1590
1629
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1591
1630
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1592
1631
|
];
|
|
1593
1632
|
}).s("Ardi", "Untag", {}).n("ResourceGroupsClient", "UntagCommand").f(void 0, void 0).ser(se_UntagCommand).de(de_UntagCommand).build() {
|
|
1633
|
+
static {
|
|
1634
|
+
__name(this, "UntagCommand");
|
|
1635
|
+
}
|
|
1594
1636
|
};
|
|
1595
|
-
__name(_UntagCommand, "UntagCommand");
|
|
1596
|
-
var UntagCommand = _UntagCommand;
|
|
1597
1637
|
|
|
1598
1638
|
// src/commands/UpdateAccountSettingsCommand.ts
|
|
1599
1639
|
|
|
1600
1640
|
|
|
1601
1641
|
|
|
1602
|
-
var
|
|
1642
|
+
var UpdateAccountSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1603
1643
|
return [
|
|
1604
1644
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1605
1645
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1606
1646
|
];
|
|
1607
1647
|
}).s("Ardi", "UpdateAccountSettings", {}).n("ResourceGroupsClient", "UpdateAccountSettingsCommand").f(void 0, void 0).ser(se_UpdateAccountSettingsCommand).de(de_UpdateAccountSettingsCommand).build() {
|
|
1648
|
+
static {
|
|
1649
|
+
__name(this, "UpdateAccountSettingsCommand");
|
|
1650
|
+
}
|
|
1608
1651
|
};
|
|
1609
|
-
__name(_UpdateAccountSettingsCommand, "UpdateAccountSettingsCommand");
|
|
1610
|
-
var UpdateAccountSettingsCommand = _UpdateAccountSettingsCommand;
|
|
1611
1652
|
|
|
1612
1653
|
// src/commands/UpdateGroupCommand.ts
|
|
1613
1654
|
|
|
1614
1655
|
|
|
1615
1656
|
|
|
1616
|
-
var
|
|
1657
|
+
var UpdateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1617
1658
|
return [
|
|
1618
1659
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1619
1660
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1620
1661
|
];
|
|
1621
1662
|
}).s("Ardi", "UpdateGroup", {}).n("ResourceGroupsClient", "UpdateGroupCommand").f(void 0, void 0).ser(se_UpdateGroupCommand).de(de_UpdateGroupCommand).build() {
|
|
1663
|
+
static {
|
|
1664
|
+
__name(this, "UpdateGroupCommand");
|
|
1665
|
+
}
|
|
1622
1666
|
};
|
|
1623
|
-
__name(_UpdateGroupCommand, "UpdateGroupCommand");
|
|
1624
|
-
var UpdateGroupCommand = _UpdateGroupCommand;
|
|
1625
1667
|
|
|
1626
1668
|
// src/commands/UpdateGroupQueryCommand.ts
|
|
1627
1669
|
|
|
1628
1670
|
|
|
1629
1671
|
|
|
1630
|
-
var
|
|
1672
|
+
var UpdateGroupQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1631
1673
|
return [
|
|
1632
1674
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1633
1675
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1634
1676
|
];
|
|
1635
1677
|
}).s("Ardi", "UpdateGroupQuery", {}).n("ResourceGroupsClient", "UpdateGroupQueryCommand").f(void 0, void 0).ser(se_UpdateGroupQueryCommand).de(de_UpdateGroupQueryCommand).build() {
|
|
1678
|
+
static {
|
|
1679
|
+
__name(this, "UpdateGroupQueryCommand");
|
|
1680
|
+
}
|
|
1636
1681
|
};
|
|
1637
|
-
__name(_UpdateGroupQueryCommand, "UpdateGroupQueryCommand");
|
|
1638
|
-
var UpdateGroupQueryCommand = _UpdateGroupQueryCommand;
|
|
1639
1682
|
|
|
1640
1683
|
// src/ResourceGroups.ts
|
|
1641
1684
|
var commands = {
|
|
@@ -1663,10 +1706,11 @@ var commands = {
|
|
|
1663
1706
|
UpdateGroupCommand,
|
|
1664
1707
|
UpdateGroupQueryCommand
|
|
1665
1708
|
};
|
|
1666
|
-
var
|
|
1709
|
+
var ResourceGroups = class extends ResourceGroupsClient {
|
|
1710
|
+
static {
|
|
1711
|
+
__name(this, "ResourceGroups");
|
|
1712
|
+
}
|
|
1667
1713
|
};
|
|
1668
|
-
__name(_ResourceGroups, "ResourceGroups");
|
|
1669
|
-
var ResourceGroups = _ResourceGroups;
|
|
1670
1714
|
(0, import_smithy_client.createAggregatedClient)(commands, ResourceGroups);
|
|
1671
1715
|
|
|
1672
1716
|
// src/pagination/ListGroupResourcesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ResourceGroupsClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -10,79 +10,85 @@ export const GroupLifecycleEventsStatus = {
|
|
|
10
10
|
IN_PROGRESS: "IN_PROGRESS",
|
|
11
11
|
};
|
|
12
12
|
export class BadRequestException extends __BaseException {
|
|
13
|
+
name = "BadRequestException";
|
|
14
|
+
$fault = "client";
|
|
15
|
+
Message;
|
|
13
16
|
constructor(opts) {
|
|
14
17
|
super({
|
|
15
18
|
name: "BadRequestException",
|
|
16
19
|
$fault: "client",
|
|
17
20
|
...opts,
|
|
18
21
|
});
|
|
19
|
-
this.name = "BadRequestException";
|
|
20
|
-
this.$fault = "client";
|
|
21
22
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
22
23
|
this.Message = opts.Message;
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
26
|
export class ForbiddenException extends __BaseException {
|
|
27
|
+
name = "ForbiddenException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
Message;
|
|
26
30
|
constructor(opts) {
|
|
27
31
|
super({
|
|
28
32
|
name: "ForbiddenException",
|
|
29
33
|
$fault: "client",
|
|
30
34
|
...opts,
|
|
31
35
|
});
|
|
32
|
-
this.name = "ForbiddenException";
|
|
33
|
-
this.$fault = "client";
|
|
34
36
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
35
37
|
this.Message = opts.Message;
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
export class InternalServerErrorException extends __BaseException {
|
|
41
|
+
name = "InternalServerErrorException";
|
|
42
|
+
$fault = "server";
|
|
43
|
+
Message;
|
|
39
44
|
constructor(opts) {
|
|
40
45
|
super({
|
|
41
46
|
name: "InternalServerErrorException",
|
|
42
47
|
$fault: "server",
|
|
43
48
|
...opts,
|
|
44
49
|
});
|
|
45
|
-
this.name = "InternalServerErrorException";
|
|
46
|
-
this.$fault = "server";
|
|
47
50
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
48
51
|
this.Message = opts.Message;
|
|
49
52
|
}
|
|
50
53
|
}
|
|
51
54
|
export class MethodNotAllowedException extends __BaseException {
|
|
55
|
+
name = "MethodNotAllowedException";
|
|
56
|
+
$fault = "client";
|
|
57
|
+
Message;
|
|
52
58
|
constructor(opts) {
|
|
53
59
|
super({
|
|
54
60
|
name: "MethodNotAllowedException",
|
|
55
61
|
$fault: "client",
|
|
56
62
|
...opts,
|
|
57
63
|
});
|
|
58
|
-
this.name = "MethodNotAllowedException";
|
|
59
|
-
this.$fault = "client";
|
|
60
64
|
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
61
65
|
this.Message = opts.Message;
|
|
62
66
|
}
|
|
63
67
|
}
|
|
64
68
|
export class TooManyRequestsException extends __BaseException {
|
|
69
|
+
name = "TooManyRequestsException";
|
|
70
|
+
$fault = "client";
|
|
71
|
+
Message;
|
|
65
72
|
constructor(opts) {
|
|
66
73
|
super({
|
|
67
74
|
name: "TooManyRequestsException",
|
|
68
75
|
$fault: "client",
|
|
69
76
|
...opts,
|
|
70
77
|
});
|
|
71
|
-
this.name = "TooManyRequestsException";
|
|
72
|
-
this.$fault = "client";
|
|
73
78
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
74
79
|
this.Message = opts.Message;
|
|
75
80
|
}
|
|
76
81
|
}
|
|
77
82
|
export class UnauthorizedException extends __BaseException {
|
|
83
|
+
name = "UnauthorizedException";
|
|
84
|
+
$fault = "client";
|
|
85
|
+
Message;
|
|
78
86
|
constructor(opts) {
|
|
79
87
|
super({
|
|
80
88
|
name: "UnauthorizedException",
|
|
81
89
|
$fault: "client",
|
|
82
90
|
...opts,
|
|
83
91
|
});
|
|
84
|
-
this.name = "UnauthorizedException";
|
|
85
|
-
this.$fault = "client";
|
|
86
92
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
87
93
|
this.Message = opts.Message;
|
|
88
94
|
}
|
|
@@ -97,14 +103,15 @@ export const GroupConfigurationStatus = {
|
|
|
97
103
|
UPDATING: "UPDATING",
|
|
98
104
|
};
|
|
99
105
|
export class NotFoundException extends __BaseException {
|
|
106
|
+
name = "NotFoundException";
|
|
107
|
+
$fault = "client";
|
|
108
|
+
Message;
|
|
100
109
|
constructor(opts) {
|
|
101
110
|
super({
|
|
102
111
|
name: "NotFoundException",
|
|
103
112
|
$fault: "client",
|
|
104
113
|
...opts,
|
|
105
114
|
});
|
|
106
|
-
this.name = "NotFoundException";
|
|
107
|
-
this.$fault = "client";
|
|
108
115
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
109
116
|
this.Message = opts.Message;
|
|
110
117
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: ResourceGroupsClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.723.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,56 +20,56 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|