@aws-sdk/client-service-quotas 3.51.0 → 3.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ServiceQuotasServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +241 -1
- package/dist-cjs/protocols/Aws_json1_1.js +269 -1060
- package/dist-es/index.js +1 -0
- package/dist-es/models/ServiceQuotasServiceException.js +12 -0
- package/dist-es/models/models_0.js +223 -1
- package/dist-es/protocols/Aws_json1_1.js +552 -1103
- package/dist-types/ServiceQuotasClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ServiceQuotasServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +121 -52
- 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/ServiceQuotasClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -52
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-service-quotas
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-service-quotas
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-service-quotas
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServiceQuotasServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./ServiceQuotas"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./ServiceQuotasClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var ServiceQuotasServiceException_1 = require("./models/ServiceQuotasServiceException");
|
|
11
|
+
Object.defineProperty(exports, "ServiceQuotasServiceException", { enumerable: true, get: function () { return ServiceQuotasServiceException_1.ServiceQuotasServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ServiceQuotasServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class ServiceQuotasServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, ServiceQuotasServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ServiceQuotasServiceException = ServiceQuotasServiceException;
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ListServiceQuotasResponse = exports.ListServiceQuotasRequest = exports.ListServiceQuotaIncreaseRequestsInTemplateResponse = exports.ListServiceQuotaIncreaseRequestsInTemplateRequest = exports.ListRequestedServiceQuotaChangeHistoryByQuotaResponse = exports.ListRequestedServiceQuotaChangeHistoryByQuotaRequest = exports.ListRequestedServiceQuotaChangeHistoryResponse = exports.ListRequestedServiceQuotaChangeHistoryRequest = exports.ListAWSDefaultServiceQuotasResponse = exports.ListAWSDefaultServiceQuotasRequest = exports.InvalidResourceStateException = exports.InvalidPaginationTokenException = exports.Tag = exports.GetServiceQuotaIncreaseRequestFromTemplateResponse = exports.ServiceQuotaIncreaseRequestInTemplate = exports.GetServiceQuotaIncreaseRequestFromTemplateRequest = exports.GetServiceQuotaResponse = exports.GetServiceQuotaRequest = exports.GetRequestedServiceQuotaChangeResponse = exports.RequestedServiceQuotaChange = exports.RequestStatus = exports.GetRequestedServiceQuotaChangeRequest = exports.GetAWSDefaultServiceQuotaResponse = exports.ServiceQuota = exports.MetricInfo = exports.QuotaPeriod = exports.PeriodUnit = exports.GetAWSDefaultServiceQuotaRequest = exports.GetAssociationForServiceQuotaTemplateResponse = exports.ServiceQuotaTemplateAssociationStatus = exports.GetAssociationForServiceQuotaTemplateRequest = exports.ErrorReason = exports.ErrorCode = exports.ServiceQuotaTemplateNotInUseException = exports.DisassociateServiceQuotaTemplateResponse = exports.DisassociateServiceQuotaTemplateRequest = exports.NoSuchResourceException = exports.IllegalArgumentException = exports.DeleteServiceQuotaIncreaseRequestFromTemplateResponse = exports.DeleteServiceQuotaIncreaseRequestFromTemplateRequest = exports.TooManyRequestsException = exports.TemplatesNotAvailableInRegionException = exports.ServiceException = exports.OrganizationNotInAllFeaturesModeException = exports.NoAvailableOrganizationException = exports.DependencyAccessDeniedException = exports.AWSServiceAccessNotEnabledException = exports.AssociateServiceQuotaTemplateResponse = exports.AssociateServiceQuotaTemplateRequest = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TooManyTagsException = exports.TagResourceResponse = exports.TagResourceRequest = exports.TagPolicyViolationException = exports.ResourceAlreadyExistsException = exports.RequestServiceQuotaIncreaseResponse = exports.RequestServiceQuotaIncreaseRequest = exports.QuotaExceededException = exports.PutServiceQuotaIncreaseRequestIntoTemplateResponse = exports.PutServiceQuotaIncreaseRequestIntoTemplateRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListServicesResponse = exports.ServiceInfo = exports.ListServicesRequest = void 0;
|
|
5
|
+
const ServiceQuotasServiceException_1 = require("./ServiceQuotasServiceException");
|
|
6
|
+
class AccessDeniedException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
7
|
+
constructor(opts) {
|
|
8
|
+
super({
|
|
9
|
+
name: "AccessDeniedException",
|
|
10
|
+
$fault: "client",
|
|
11
|
+
...opts,
|
|
12
|
+
});
|
|
13
|
+
this.name = "AccessDeniedException";
|
|
14
|
+
this.$fault = "client";
|
|
15
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
+
this.Message = opts.Message;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4
20
|
var AssociateServiceQuotaTemplateRequest;
|
|
5
21
|
(function (AssociateServiceQuotaTemplateRequest) {
|
|
6
22
|
AssociateServiceQuotaTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -13,6 +29,104 @@ var AssociateServiceQuotaTemplateResponse;
|
|
|
13
29
|
...obj,
|
|
14
30
|
});
|
|
15
31
|
})(AssociateServiceQuotaTemplateResponse = exports.AssociateServiceQuotaTemplateResponse || (exports.AssociateServiceQuotaTemplateResponse = {}));
|
|
32
|
+
class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
33
|
+
constructor(opts) {
|
|
34
|
+
super({
|
|
35
|
+
name: "AWSServiceAccessNotEnabledException",
|
|
36
|
+
$fault: "client",
|
|
37
|
+
...opts,
|
|
38
|
+
});
|
|
39
|
+
this.name = "AWSServiceAccessNotEnabledException";
|
|
40
|
+
this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
|
|
42
|
+
this.Message = opts.Message;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException;
|
|
46
|
+
class DependencyAccessDeniedException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
47
|
+
constructor(opts) {
|
|
48
|
+
super({
|
|
49
|
+
name: "DependencyAccessDeniedException",
|
|
50
|
+
$fault: "client",
|
|
51
|
+
...opts,
|
|
52
|
+
});
|
|
53
|
+
this.name = "DependencyAccessDeniedException";
|
|
54
|
+
this.$fault = "client";
|
|
55
|
+
Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
|
|
56
|
+
this.Message = opts.Message;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.DependencyAccessDeniedException = DependencyAccessDeniedException;
|
|
60
|
+
class NoAvailableOrganizationException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
61
|
+
constructor(opts) {
|
|
62
|
+
super({
|
|
63
|
+
name: "NoAvailableOrganizationException",
|
|
64
|
+
$fault: "client",
|
|
65
|
+
...opts,
|
|
66
|
+
});
|
|
67
|
+
this.name = "NoAvailableOrganizationException";
|
|
68
|
+
this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
70
|
+
this.Message = opts.Message;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
|
|
74
|
+
class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
75
|
+
constructor(opts) {
|
|
76
|
+
super({
|
|
77
|
+
name: "OrganizationNotInAllFeaturesModeException",
|
|
78
|
+
$fault: "client",
|
|
79
|
+
...opts,
|
|
80
|
+
});
|
|
81
|
+
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
82
|
+
this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
84
|
+
this.Message = opts.Message;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
|
|
88
|
+
class ServiceException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "ServiceException",
|
|
92
|
+
$fault: "server",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
this.name = "ServiceException";
|
|
96
|
+
this.$fault = "server";
|
|
97
|
+
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
98
|
+
this.Message = opts.Message;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.ServiceException = ServiceException;
|
|
102
|
+
class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
103
|
+
constructor(opts) {
|
|
104
|
+
super({
|
|
105
|
+
name: "TemplatesNotAvailableInRegionException",
|
|
106
|
+
$fault: "client",
|
|
107
|
+
...opts,
|
|
108
|
+
});
|
|
109
|
+
this.name = "TemplatesNotAvailableInRegionException";
|
|
110
|
+
this.$fault = "client";
|
|
111
|
+
Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
|
|
112
|
+
this.Message = opts.Message;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException;
|
|
116
|
+
class TooManyRequestsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
117
|
+
constructor(opts) {
|
|
118
|
+
super({
|
|
119
|
+
name: "TooManyRequestsException",
|
|
120
|
+
$fault: "client",
|
|
121
|
+
...opts,
|
|
122
|
+
});
|
|
123
|
+
this.name = "TooManyRequestsException";
|
|
124
|
+
this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
126
|
+
this.Message = opts.Message;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
16
130
|
var DeleteServiceQuotaIncreaseRequestFromTemplateRequest;
|
|
17
131
|
(function (DeleteServiceQuotaIncreaseRequestFromTemplateRequest) {
|
|
18
132
|
DeleteServiceQuotaIncreaseRequestFromTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -25,6 +139,34 @@ var DeleteServiceQuotaIncreaseRequestFromTemplateResponse;
|
|
|
25
139
|
...obj,
|
|
26
140
|
});
|
|
27
141
|
})(DeleteServiceQuotaIncreaseRequestFromTemplateResponse = exports.DeleteServiceQuotaIncreaseRequestFromTemplateResponse || (exports.DeleteServiceQuotaIncreaseRequestFromTemplateResponse = {}));
|
|
142
|
+
class IllegalArgumentException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "IllegalArgumentException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
this.name = "IllegalArgumentException";
|
|
150
|
+
this.$fault = "client";
|
|
151
|
+
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
152
|
+
this.Message = opts.Message;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
exports.IllegalArgumentException = IllegalArgumentException;
|
|
156
|
+
class NoSuchResourceException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "NoSuchResourceException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
this.name = "NoSuchResourceException";
|
|
164
|
+
this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(this, NoSuchResourceException.prototype);
|
|
166
|
+
this.Message = opts.Message;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
exports.NoSuchResourceException = NoSuchResourceException;
|
|
28
170
|
var DisassociateServiceQuotaTemplateRequest;
|
|
29
171
|
(function (DisassociateServiceQuotaTemplateRequest) {
|
|
30
172
|
DisassociateServiceQuotaTemplateRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -37,6 +179,20 @@ var DisassociateServiceQuotaTemplateResponse;
|
|
|
37
179
|
...obj,
|
|
38
180
|
});
|
|
39
181
|
})(DisassociateServiceQuotaTemplateResponse = exports.DisassociateServiceQuotaTemplateResponse || (exports.DisassociateServiceQuotaTemplateResponse = {}));
|
|
182
|
+
class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "ServiceQuotaTemplateNotInUseException",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
this.name = "ServiceQuotaTemplateNotInUseException";
|
|
190
|
+
this.$fault = "client";
|
|
191
|
+
Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException;
|
|
40
196
|
var ErrorCode;
|
|
41
197
|
(function (ErrorCode) {
|
|
42
198
|
ErrorCode["DEPENDENCY_ACCESS_DENIED_ERROR"] = "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
@@ -169,6 +325,34 @@ var Tag;
|
|
|
169
325
|
...obj,
|
|
170
326
|
});
|
|
171
327
|
})(Tag = exports.Tag || (exports.Tag = {}));
|
|
328
|
+
class InvalidPaginationTokenException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "InvalidPaginationTokenException",
|
|
332
|
+
$fault: "client",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
this.name = "InvalidPaginationTokenException";
|
|
336
|
+
this.$fault = "client";
|
|
337
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
338
|
+
this.Message = opts.Message;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
342
|
+
class InvalidResourceStateException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "InvalidResourceStateException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
this.name = "InvalidResourceStateException";
|
|
350
|
+
this.$fault = "client";
|
|
351
|
+
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
352
|
+
this.Message = opts.Message;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
172
356
|
var ListAWSDefaultServiceQuotasRequest;
|
|
173
357
|
(function (ListAWSDefaultServiceQuotasRequest) {
|
|
174
358
|
ListAWSDefaultServiceQuotasRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -271,6 +455,20 @@ var PutServiceQuotaIncreaseRequestIntoTemplateResponse;
|
|
|
271
455
|
...obj,
|
|
272
456
|
});
|
|
273
457
|
})(PutServiceQuotaIncreaseRequestIntoTemplateResponse = exports.PutServiceQuotaIncreaseRequestIntoTemplateResponse || (exports.PutServiceQuotaIncreaseRequestIntoTemplateResponse = {}));
|
|
458
|
+
class QuotaExceededException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
459
|
+
constructor(opts) {
|
|
460
|
+
super({
|
|
461
|
+
name: "QuotaExceededException",
|
|
462
|
+
$fault: "client",
|
|
463
|
+
...opts,
|
|
464
|
+
});
|
|
465
|
+
this.name = "QuotaExceededException";
|
|
466
|
+
this.$fault = "client";
|
|
467
|
+
Object.setPrototypeOf(this, QuotaExceededException.prototype);
|
|
468
|
+
this.Message = opts.Message;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
exports.QuotaExceededException = QuotaExceededException;
|
|
274
472
|
var RequestServiceQuotaIncreaseRequest;
|
|
275
473
|
(function (RequestServiceQuotaIncreaseRequest) {
|
|
276
474
|
RequestServiceQuotaIncreaseRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -283,6 +481,34 @@ var RequestServiceQuotaIncreaseResponse;
|
|
|
283
481
|
...obj,
|
|
284
482
|
});
|
|
285
483
|
})(RequestServiceQuotaIncreaseResponse = exports.RequestServiceQuotaIncreaseResponse || (exports.RequestServiceQuotaIncreaseResponse = {}));
|
|
484
|
+
class ResourceAlreadyExistsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
485
|
+
constructor(opts) {
|
|
486
|
+
super({
|
|
487
|
+
name: "ResourceAlreadyExistsException",
|
|
488
|
+
$fault: "client",
|
|
489
|
+
...opts,
|
|
490
|
+
});
|
|
491
|
+
this.name = "ResourceAlreadyExistsException";
|
|
492
|
+
this.$fault = "client";
|
|
493
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
494
|
+
this.Message = opts.Message;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
498
|
+
class TagPolicyViolationException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
499
|
+
constructor(opts) {
|
|
500
|
+
super({
|
|
501
|
+
name: "TagPolicyViolationException",
|
|
502
|
+
$fault: "client",
|
|
503
|
+
...opts,
|
|
504
|
+
});
|
|
505
|
+
this.name = "TagPolicyViolationException";
|
|
506
|
+
this.$fault = "client";
|
|
507
|
+
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
508
|
+
this.Message = opts.Message;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
exports.TagPolicyViolationException = TagPolicyViolationException;
|
|
286
512
|
var TagResourceRequest;
|
|
287
513
|
(function (TagResourceRequest) {
|
|
288
514
|
TagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -295,6 +521,20 @@ var TagResourceResponse;
|
|
|
295
521
|
...obj,
|
|
296
522
|
});
|
|
297
523
|
})(TagResourceResponse = exports.TagResourceResponse || (exports.TagResourceResponse = {}));
|
|
524
|
+
class TooManyTagsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
525
|
+
constructor(opts) {
|
|
526
|
+
super({
|
|
527
|
+
name: "TooManyTagsException",
|
|
528
|
+
$fault: "client",
|
|
529
|
+
...opts,
|
|
530
|
+
});
|
|
531
|
+
this.name = "TooManyTagsException";
|
|
532
|
+
this.$fault = "client";
|
|
533
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
534
|
+
this.Message = opts.Message;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
298
538
|
var UntagResourceRequest;
|
|
299
539
|
(function (UntagResourceRequest) {
|
|
300
540
|
UntagResourceRequest.filterSensitiveLog = (obj) => ({
|