@aws-sdk/client-resource-groups-tagging-api 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 +91 -64
- package/dist-es/ResourceGroupsTaggingAPIClient.js +1 -0
- package/dist-es/models/models_0.js +18 -12
- 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
|
@@ -145,7 +145,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
145
145
|
}, "resolveRuntimeExtensions");
|
|
146
146
|
|
|
147
147
|
// src/ResourceGroupsTaggingAPIClient.ts
|
|
148
|
-
var
|
|
148
|
+
var ResourceGroupsTaggingAPIClient = class extends import_smithy_client.Client {
|
|
149
|
+
static {
|
|
150
|
+
__name(this, "ResourceGroupsTaggingAPIClient");
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* The resolved configuration of ResourceGroupsTaggingAPIClient class. This is resolved and normalized from the {@link ResourceGroupsTaggingAPIClientConfig | constructor configuration interface}.
|
|
154
|
+
*/
|
|
155
|
+
config;
|
|
149
156
|
constructor(...[configuration]) {
|
|
150
157
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
151
158
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -155,7 +162,7 @@ var _ResourceGroupsTaggingAPIClient = class _ResourceGroupsTaggingAPIClient exte
|
|
|
155
162
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
156
163
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
157
164
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
158
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
165
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
159
166
|
super(_config_8);
|
|
160
167
|
this.config = _config_8;
|
|
161
168
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -183,8 +190,6 @@ var _ResourceGroupsTaggingAPIClient = class _ResourceGroupsTaggingAPIClient exte
|
|
|
183
190
|
super.destroy();
|
|
184
191
|
}
|
|
185
192
|
};
|
|
186
|
-
__name(_ResourceGroupsTaggingAPIClient, "ResourceGroupsTaggingAPIClient");
|
|
187
|
-
var ResourceGroupsTaggingAPIClient = _ResourceGroupsTaggingAPIClient;
|
|
188
193
|
|
|
189
194
|
// src/ResourceGroupsTaggingAPI.ts
|
|
190
195
|
|
|
@@ -201,7 +206,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
201
206
|
|
|
202
207
|
// src/models/ResourceGroupsTaggingAPIServiceException.ts
|
|
203
208
|
|
|
204
|
-
var
|
|
209
|
+
var ResourceGroupsTaggingAPIServiceException = class _ResourceGroupsTaggingAPIServiceException extends import_smithy_client.ServiceException {
|
|
210
|
+
static {
|
|
211
|
+
__name(this, "ResourceGroupsTaggingAPIServiceException");
|
|
212
|
+
}
|
|
205
213
|
/**
|
|
206
214
|
* @internal
|
|
207
215
|
*/
|
|
@@ -210,11 +218,15 @@ var _ResourceGroupsTaggingAPIServiceException = class _ResourceGroupsTaggingAPIS
|
|
|
210
218
|
Object.setPrototypeOf(this, _ResourceGroupsTaggingAPIServiceException.prototype);
|
|
211
219
|
}
|
|
212
220
|
};
|
|
213
|
-
__name(_ResourceGroupsTaggingAPIServiceException, "ResourceGroupsTaggingAPIServiceException");
|
|
214
|
-
var ResourceGroupsTaggingAPIServiceException = _ResourceGroupsTaggingAPIServiceException;
|
|
215
221
|
|
|
216
222
|
// src/models/models_0.ts
|
|
217
|
-
var
|
|
223
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends ResourceGroupsTaggingAPIServiceException {
|
|
224
|
+
static {
|
|
225
|
+
__name(this, "ConcurrentModificationException");
|
|
226
|
+
}
|
|
227
|
+
name = "ConcurrentModificationException";
|
|
228
|
+
$fault = "client";
|
|
229
|
+
Message;
|
|
218
230
|
/**
|
|
219
231
|
* @internal
|
|
220
232
|
*/
|
|
@@ -224,15 +236,17 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
224
236
|
$fault: "client",
|
|
225
237
|
...opts
|
|
226
238
|
});
|
|
227
|
-
this.name = "ConcurrentModificationException";
|
|
228
|
-
this.$fault = "client";
|
|
229
239
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
230
240
|
this.Message = opts.Message;
|
|
231
241
|
}
|
|
232
242
|
};
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
243
|
+
var ConstraintViolationException = class _ConstraintViolationException extends ResourceGroupsTaggingAPIServiceException {
|
|
244
|
+
static {
|
|
245
|
+
__name(this, "ConstraintViolationException");
|
|
246
|
+
}
|
|
247
|
+
name = "ConstraintViolationException";
|
|
248
|
+
$fault = "client";
|
|
249
|
+
Message;
|
|
236
250
|
/**
|
|
237
251
|
* @internal
|
|
238
252
|
*/
|
|
@@ -242,15 +256,17 @@ var _ConstraintViolationException = class _ConstraintViolationException extends
|
|
|
242
256
|
$fault: "client",
|
|
243
257
|
...opts
|
|
244
258
|
});
|
|
245
|
-
this.name = "ConstraintViolationException";
|
|
246
|
-
this.$fault = "client";
|
|
247
259
|
Object.setPrototypeOf(this, _ConstraintViolationException.prototype);
|
|
248
260
|
this.Message = opts.Message;
|
|
249
261
|
}
|
|
250
262
|
};
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
263
|
+
var InternalServiceException = class _InternalServiceException extends ResourceGroupsTaggingAPIServiceException {
|
|
264
|
+
static {
|
|
265
|
+
__name(this, "InternalServiceException");
|
|
266
|
+
}
|
|
267
|
+
name = "InternalServiceException";
|
|
268
|
+
$fault = "server";
|
|
269
|
+
Message;
|
|
254
270
|
/**
|
|
255
271
|
* @internal
|
|
256
272
|
*/
|
|
@@ -260,15 +276,17 @@ var _InternalServiceException = class _InternalServiceException extends Resource
|
|
|
260
276
|
$fault: "server",
|
|
261
277
|
...opts
|
|
262
278
|
});
|
|
263
|
-
this.name = "InternalServiceException";
|
|
264
|
-
this.$fault = "server";
|
|
265
279
|
Object.setPrototypeOf(this, _InternalServiceException.prototype);
|
|
266
280
|
this.Message = opts.Message;
|
|
267
281
|
}
|
|
268
282
|
};
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
283
|
+
var InvalidParameterException = class _InvalidParameterException extends ResourceGroupsTaggingAPIServiceException {
|
|
284
|
+
static {
|
|
285
|
+
__name(this, "InvalidParameterException");
|
|
286
|
+
}
|
|
287
|
+
name = "InvalidParameterException";
|
|
288
|
+
$fault = "client";
|
|
289
|
+
Message;
|
|
272
290
|
/**
|
|
273
291
|
* @internal
|
|
274
292
|
*/
|
|
@@ -278,15 +296,17 @@ var _InvalidParameterException = class _InvalidParameterException extends Resour
|
|
|
278
296
|
$fault: "client",
|
|
279
297
|
...opts
|
|
280
298
|
});
|
|
281
|
-
this.name = "InvalidParameterException";
|
|
282
|
-
this.$fault = "client";
|
|
283
299
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
284
300
|
this.Message = opts.Message;
|
|
285
301
|
}
|
|
286
302
|
};
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
303
|
+
var ThrottledException = class _ThrottledException extends ResourceGroupsTaggingAPIServiceException {
|
|
304
|
+
static {
|
|
305
|
+
__name(this, "ThrottledException");
|
|
306
|
+
}
|
|
307
|
+
name = "ThrottledException";
|
|
308
|
+
$fault = "client";
|
|
309
|
+
Message;
|
|
290
310
|
/**
|
|
291
311
|
* @internal
|
|
292
312
|
*/
|
|
@@ -296,14 +316,10 @@ var _ThrottledException = class _ThrottledException extends ResourceGroupsTaggin
|
|
|
296
316
|
$fault: "client",
|
|
297
317
|
...opts
|
|
298
318
|
});
|
|
299
|
-
this.name = "ThrottledException";
|
|
300
|
-
this.$fault = "client";
|
|
301
319
|
Object.setPrototypeOf(this, _ThrottledException.prototype);
|
|
302
320
|
this.Message = opts.Message;
|
|
303
321
|
}
|
|
304
322
|
};
|
|
305
|
-
__name(_ThrottledException, "ThrottledException");
|
|
306
|
-
var ThrottledException = _ThrottledException;
|
|
307
323
|
var ErrorCode = {
|
|
308
324
|
INTERNAL_SERVICE_EXCEPTION: "InternalServiceException",
|
|
309
325
|
INVALID_PARAMETER_EXCEPTION: "InvalidParameterException"
|
|
@@ -318,7 +334,13 @@ var TargetIdType = {
|
|
|
318
334
|
OU: "OU",
|
|
319
335
|
ROOT: "ROOT"
|
|
320
336
|
};
|
|
321
|
-
var
|
|
337
|
+
var PaginationTokenExpiredException = class _PaginationTokenExpiredException extends ResourceGroupsTaggingAPIServiceException {
|
|
338
|
+
static {
|
|
339
|
+
__name(this, "PaginationTokenExpiredException");
|
|
340
|
+
}
|
|
341
|
+
name = "PaginationTokenExpiredException";
|
|
342
|
+
$fault = "client";
|
|
343
|
+
Message;
|
|
322
344
|
/**
|
|
323
345
|
* @internal
|
|
324
346
|
*/
|
|
@@ -328,14 +350,10 @@ var _PaginationTokenExpiredException = class _PaginationTokenExpiredException ex
|
|
|
328
350
|
$fault: "client",
|
|
329
351
|
...opts
|
|
330
352
|
});
|
|
331
|
-
this.name = "PaginationTokenExpiredException";
|
|
332
|
-
this.$fault = "client";
|
|
333
353
|
Object.setPrototypeOf(this, _PaginationTokenExpiredException.prototype);
|
|
334
354
|
this.Message = opts.Message;
|
|
335
355
|
}
|
|
336
356
|
};
|
|
337
|
-
__name(_PaginationTokenExpiredException, "PaginationTokenExpiredException");
|
|
338
|
-
var PaginationTokenExpiredException = _PaginationTokenExpiredException;
|
|
339
357
|
|
|
340
358
|
// src/protocols/Aws_json1_1.ts
|
|
341
359
|
var se_DescribeReportCreationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -612,113 +630,121 @@ function sharedHeaders(operation) {
|
|
|
612
630
|
__name(sharedHeaders, "sharedHeaders");
|
|
613
631
|
|
|
614
632
|
// src/commands/DescribeReportCreationCommand.ts
|
|
615
|
-
var
|
|
633
|
+
var DescribeReportCreationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
616
634
|
return [
|
|
617
635
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
618
636
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
619
637
|
];
|
|
620
638
|
}).s("ResourceGroupsTaggingAPI_20170126", "DescribeReportCreation", {}).n("ResourceGroupsTaggingAPIClient", "DescribeReportCreationCommand").f(void 0, void 0).ser(se_DescribeReportCreationCommand).de(de_DescribeReportCreationCommand).build() {
|
|
639
|
+
static {
|
|
640
|
+
__name(this, "DescribeReportCreationCommand");
|
|
641
|
+
}
|
|
621
642
|
};
|
|
622
|
-
__name(_DescribeReportCreationCommand, "DescribeReportCreationCommand");
|
|
623
|
-
var DescribeReportCreationCommand = _DescribeReportCreationCommand;
|
|
624
643
|
|
|
625
644
|
// src/commands/GetComplianceSummaryCommand.ts
|
|
626
645
|
|
|
627
646
|
|
|
628
647
|
|
|
629
|
-
var
|
|
648
|
+
var GetComplianceSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
630
649
|
return [
|
|
631
650
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
632
651
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
633
652
|
];
|
|
634
653
|
}).s("ResourceGroupsTaggingAPI_20170126", "GetComplianceSummary", {}).n("ResourceGroupsTaggingAPIClient", "GetComplianceSummaryCommand").f(void 0, void 0).ser(se_GetComplianceSummaryCommand).de(de_GetComplianceSummaryCommand).build() {
|
|
654
|
+
static {
|
|
655
|
+
__name(this, "GetComplianceSummaryCommand");
|
|
656
|
+
}
|
|
635
657
|
};
|
|
636
|
-
__name(_GetComplianceSummaryCommand, "GetComplianceSummaryCommand");
|
|
637
|
-
var GetComplianceSummaryCommand = _GetComplianceSummaryCommand;
|
|
638
658
|
|
|
639
659
|
// src/commands/GetResourcesCommand.ts
|
|
640
660
|
|
|
641
661
|
|
|
642
662
|
|
|
643
|
-
var
|
|
663
|
+
var GetResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
644
664
|
return [
|
|
645
665
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
646
666
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
647
667
|
];
|
|
648
668
|
}).s("ResourceGroupsTaggingAPI_20170126", "GetResources", {}).n("ResourceGroupsTaggingAPIClient", "GetResourcesCommand").f(void 0, void 0).ser(se_GetResourcesCommand).de(de_GetResourcesCommand).build() {
|
|
669
|
+
static {
|
|
670
|
+
__name(this, "GetResourcesCommand");
|
|
671
|
+
}
|
|
649
672
|
};
|
|
650
|
-
__name(_GetResourcesCommand, "GetResourcesCommand");
|
|
651
|
-
var GetResourcesCommand = _GetResourcesCommand;
|
|
652
673
|
|
|
653
674
|
// src/commands/GetTagKeysCommand.ts
|
|
654
675
|
|
|
655
676
|
|
|
656
677
|
|
|
657
|
-
var
|
|
678
|
+
var GetTagKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
658
679
|
return [
|
|
659
680
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
660
681
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
661
682
|
];
|
|
662
683
|
}).s("ResourceGroupsTaggingAPI_20170126", "GetTagKeys", {}).n("ResourceGroupsTaggingAPIClient", "GetTagKeysCommand").f(void 0, void 0).ser(se_GetTagKeysCommand).de(de_GetTagKeysCommand).build() {
|
|
684
|
+
static {
|
|
685
|
+
__name(this, "GetTagKeysCommand");
|
|
686
|
+
}
|
|
663
687
|
};
|
|
664
|
-
__name(_GetTagKeysCommand, "GetTagKeysCommand");
|
|
665
|
-
var GetTagKeysCommand = _GetTagKeysCommand;
|
|
666
688
|
|
|
667
689
|
// src/commands/GetTagValuesCommand.ts
|
|
668
690
|
|
|
669
691
|
|
|
670
692
|
|
|
671
|
-
var
|
|
693
|
+
var GetTagValuesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
672
694
|
return [
|
|
673
695
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
674
696
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
675
697
|
];
|
|
676
698
|
}).s("ResourceGroupsTaggingAPI_20170126", "GetTagValues", {}).n("ResourceGroupsTaggingAPIClient", "GetTagValuesCommand").f(void 0, void 0).ser(se_GetTagValuesCommand).de(de_GetTagValuesCommand).build() {
|
|
699
|
+
static {
|
|
700
|
+
__name(this, "GetTagValuesCommand");
|
|
701
|
+
}
|
|
677
702
|
};
|
|
678
|
-
__name(_GetTagValuesCommand, "GetTagValuesCommand");
|
|
679
|
-
var GetTagValuesCommand = _GetTagValuesCommand;
|
|
680
703
|
|
|
681
704
|
// src/commands/StartReportCreationCommand.ts
|
|
682
705
|
|
|
683
706
|
|
|
684
707
|
|
|
685
|
-
var
|
|
708
|
+
var StartReportCreationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
686
709
|
return [
|
|
687
710
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
688
711
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
689
712
|
];
|
|
690
713
|
}).s("ResourceGroupsTaggingAPI_20170126", "StartReportCreation", {}).n("ResourceGroupsTaggingAPIClient", "StartReportCreationCommand").f(void 0, void 0).ser(se_StartReportCreationCommand).de(de_StartReportCreationCommand).build() {
|
|
714
|
+
static {
|
|
715
|
+
__name(this, "StartReportCreationCommand");
|
|
716
|
+
}
|
|
691
717
|
};
|
|
692
|
-
__name(_StartReportCreationCommand, "StartReportCreationCommand");
|
|
693
|
-
var StartReportCreationCommand = _StartReportCreationCommand;
|
|
694
718
|
|
|
695
719
|
// src/commands/TagResourcesCommand.ts
|
|
696
720
|
|
|
697
721
|
|
|
698
722
|
|
|
699
|
-
var
|
|
723
|
+
var TagResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
700
724
|
return [
|
|
701
725
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
702
726
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
703
727
|
];
|
|
704
728
|
}).s("ResourceGroupsTaggingAPI_20170126", "TagResources", {}).n("ResourceGroupsTaggingAPIClient", "TagResourcesCommand").f(void 0, void 0).ser(se_TagResourcesCommand).de(de_TagResourcesCommand).build() {
|
|
729
|
+
static {
|
|
730
|
+
__name(this, "TagResourcesCommand");
|
|
731
|
+
}
|
|
705
732
|
};
|
|
706
|
-
__name(_TagResourcesCommand, "TagResourcesCommand");
|
|
707
|
-
var TagResourcesCommand = _TagResourcesCommand;
|
|
708
733
|
|
|
709
734
|
// src/commands/UntagResourcesCommand.ts
|
|
710
735
|
|
|
711
736
|
|
|
712
737
|
|
|
713
|
-
var
|
|
738
|
+
var UntagResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
714
739
|
return [
|
|
715
740
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
716
741
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
717
742
|
];
|
|
718
743
|
}).s("ResourceGroupsTaggingAPI_20170126", "UntagResources", {}).n("ResourceGroupsTaggingAPIClient", "UntagResourcesCommand").f(void 0, void 0).ser(se_UntagResourcesCommand).de(de_UntagResourcesCommand).build() {
|
|
744
|
+
static {
|
|
745
|
+
__name(this, "UntagResourcesCommand");
|
|
746
|
+
}
|
|
719
747
|
};
|
|
720
|
-
__name(_UntagResourcesCommand, "UntagResourcesCommand");
|
|
721
|
-
var UntagResourcesCommand = _UntagResourcesCommand;
|
|
722
748
|
|
|
723
749
|
// src/ResourceGroupsTaggingAPI.ts
|
|
724
750
|
var commands = {
|
|
@@ -731,10 +757,11 @@ var commands = {
|
|
|
731
757
|
TagResourcesCommand,
|
|
732
758
|
UntagResourcesCommand
|
|
733
759
|
};
|
|
734
|
-
var
|
|
760
|
+
var ResourceGroupsTaggingAPI = class extends ResourceGroupsTaggingAPIClient {
|
|
761
|
+
static {
|
|
762
|
+
__name(this, "ResourceGroupsTaggingAPI");
|
|
763
|
+
}
|
|
735
764
|
};
|
|
736
|
-
__name(_ResourceGroupsTaggingAPI, "ResourceGroupsTaggingAPI");
|
|
737
|
-
var ResourceGroupsTaggingAPI = _ResourceGroupsTaggingAPI;
|
|
738
765
|
(0, import_smithy_client.createAggregatedClient)(commands, ResourceGroupsTaggingAPI);
|
|
739
766
|
|
|
740
767
|
// src/pagination/GetComplianceSummaryPaginator.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 ResourceGroupsTaggingAPIClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,65 +1,70 @@
|
|
|
1
1
|
import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException";
|
|
2
2
|
export class ConcurrentModificationException extends __BaseException {
|
|
3
|
+
name = "ConcurrentModificationException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "ConcurrentModificationException",
|
|
6
9
|
$fault: "client",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "ConcurrentModificationException";
|
|
10
|
-
this.$fault = "client";
|
|
11
12
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
12
13
|
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export class ConstraintViolationException extends __BaseException {
|
|
17
|
+
name = "ConstraintViolationException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
16
20
|
constructor(opts) {
|
|
17
21
|
super({
|
|
18
22
|
name: "ConstraintViolationException",
|
|
19
23
|
$fault: "client",
|
|
20
24
|
...opts,
|
|
21
25
|
});
|
|
22
|
-
this.name = "ConstraintViolationException";
|
|
23
|
-
this.$fault = "client";
|
|
24
26
|
Object.setPrototypeOf(this, ConstraintViolationException.prototype);
|
|
25
27
|
this.Message = opts.Message;
|
|
26
28
|
}
|
|
27
29
|
}
|
|
28
30
|
export class InternalServiceException extends __BaseException {
|
|
31
|
+
name = "InternalServiceException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
Message;
|
|
29
34
|
constructor(opts) {
|
|
30
35
|
super({
|
|
31
36
|
name: "InternalServiceException",
|
|
32
37
|
$fault: "server",
|
|
33
38
|
...opts,
|
|
34
39
|
});
|
|
35
|
-
this.name = "InternalServiceException";
|
|
36
|
-
this.$fault = "server";
|
|
37
40
|
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
38
41
|
this.Message = opts.Message;
|
|
39
42
|
}
|
|
40
43
|
}
|
|
41
44
|
export class InvalidParameterException extends __BaseException {
|
|
45
|
+
name = "InvalidParameterException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
42
48
|
constructor(opts) {
|
|
43
49
|
super({
|
|
44
50
|
name: "InvalidParameterException",
|
|
45
51
|
$fault: "client",
|
|
46
52
|
...opts,
|
|
47
53
|
});
|
|
48
|
-
this.name = "InvalidParameterException";
|
|
49
|
-
this.$fault = "client";
|
|
50
54
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
51
55
|
this.Message = opts.Message;
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
58
|
export class ThrottledException extends __BaseException {
|
|
59
|
+
name = "ThrottledException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
Message;
|
|
55
62
|
constructor(opts) {
|
|
56
63
|
super({
|
|
57
64
|
name: "ThrottledException",
|
|
58
65
|
$fault: "client",
|
|
59
66
|
...opts,
|
|
60
67
|
});
|
|
61
|
-
this.name = "ThrottledException";
|
|
62
|
-
this.$fault = "client";
|
|
63
68
|
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
64
69
|
this.Message = opts.Message;
|
|
65
70
|
}
|
|
@@ -79,14 +84,15 @@ export const TargetIdType = {
|
|
|
79
84
|
ROOT: "ROOT",
|
|
80
85
|
};
|
|
81
86
|
export class PaginationTokenExpiredException extends __BaseException {
|
|
87
|
+
name = "PaginationTokenExpiredException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
Message;
|
|
82
90
|
constructor(opts) {
|
|
83
91
|
super({
|
|
84
92
|
name: "PaginationTokenExpiredException",
|
|
85
93
|
$fault: "client",
|
|
86
94
|
...opts,
|
|
87
95
|
});
|
|
88
|
-
this.name = "PaginationTokenExpiredException";
|
|
89
|
-
this.$fault = "client";
|
|
90
96
|
Object.setPrototypeOf(this, PaginationTokenExpiredException.prototype);
|
|
91
97
|
this.Message = opts.Message;
|
|
92
98
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ResourceGroupsTaggingAPIClientCo
|
|
|
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: ResourceGroupsTaggingAPIClientCo
|
|
|
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: ResourceGroupsTaggingAPIClientCo
|
|
|
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: ResourceGroupsTaggingAPIClientCo
|
|
|
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;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups-tagging-api",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Tagging Api 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-tagging-api",
|
|
@@ -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": {
|