@aws-sdk/client-service-quotas 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ServiceQuotas.js +85 -78
- package/dist-es/ServiceQuotasClient.js +28 -22
- package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +28 -21
- package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +28 -21
- package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +28 -21
- package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +28 -21
- package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +28 -21
- package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +28 -21
- package/dist-es/commands/GetServiceQuotaCommand.js +28 -21
- package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +28 -21
- package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +28 -21
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +28 -21
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +28 -21
- package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +28 -21
- package/dist-es/commands/ListServiceQuotasCommand.js +28 -21
- package/dist-es/commands/ListServicesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +28 -21
- package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ServiceQuotasServiceException.js +10 -5
- package/dist-es/models/models_0.js +251 -342
- package/dist-es/pagination/ListAWSDefaultServiceQuotasPaginator.js +68 -25
- package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +68 -25
- package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +68 -25
- package/dist-es/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +68 -25
- package/dist-es/pagination/ListServiceQuotasPaginator.js +68 -25
- package/dist-es/pagination/ListServicesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +1952 -1501
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,147 +1,148 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
16
|
+
var AWSServiceAccessNotEnabledException = (function (_super) {
|
|
17
|
+
__extends(AWSServiceAccessNotEnabledException, _super);
|
|
18
|
+
function AWSServiceAccessNotEnabledException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "AWSServiceAccessNotEnabledException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "AWSServiceAccessNotEnabledException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, AWSServiceAccessNotEnabledException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return AWSServiceAccessNotEnabledException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { AWSServiceAccessNotEnabledException };
|
|
29
|
+
var DependencyAccessDeniedException = (function (_super) {
|
|
30
|
+
__extends(DependencyAccessDeniedException, _super);
|
|
31
|
+
function DependencyAccessDeniedException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "DependencyAccessDeniedException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "DependencyAccessDeniedException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, DependencyAccessDeniedException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return DependencyAccessDeniedException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { DependencyAccessDeniedException };
|
|
42
|
+
var NoAvailableOrganizationException = (function (_super) {
|
|
43
|
+
__extends(NoAvailableOrganizationException, _super);
|
|
44
|
+
function NoAvailableOrganizationException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "NoAvailableOrganizationException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "NoAvailableOrganizationException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, NoAvailableOrganizationException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return NoAvailableOrganizationException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { NoAvailableOrganizationException };
|
|
55
|
+
var OrganizationNotInAllFeaturesModeException = (function (_super) {
|
|
56
|
+
__extends(OrganizationNotInAllFeaturesModeException, _super);
|
|
57
|
+
function OrganizationNotInAllFeaturesModeException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "OrganizationNotInAllFeaturesModeException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "OrganizationNotInAllFeaturesModeException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
65
|
+
return OrganizationNotInAllFeaturesModeException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { OrganizationNotInAllFeaturesModeException };
|
|
68
|
+
var ServiceException = (function (_super) {
|
|
69
|
+
__extends(ServiceException, _super);
|
|
70
|
+
function ServiceException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ServiceException", $fault: "server" }, opts)) || this;
|
|
72
|
+
_this.name = "ServiceException";
|
|
73
|
+
_this.$fault = "server";
|
|
74
|
+
Object.setPrototypeOf(_this, ServiceException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
78
77
|
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
78
|
+
return ServiceException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ServiceException };
|
|
81
|
+
var TemplatesNotAvailableInRegionException = (function (_super) {
|
|
82
|
+
__extends(TemplatesNotAvailableInRegionException, _super);
|
|
83
|
+
function TemplatesNotAvailableInRegionException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "TemplatesNotAvailableInRegionException", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "TemplatesNotAvailableInRegionException";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, TemplatesNotAvailableInRegionException.prototype);
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
return _this;
|
|
91
90
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
91
|
+
return TemplatesNotAvailableInRegionException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { TemplatesNotAvailableInRegionException };
|
|
94
|
+
var TooManyRequestsException = (function (_super) {
|
|
95
|
+
__extends(TooManyRequestsException, _super);
|
|
96
|
+
function TooManyRequestsException(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
98
|
+
_this.name = "TooManyRequestsException";
|
|
99
|
+
_this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
101
|
+
_this.Message = opts.Message;
|
|
102
|
+
return _this;
|
|
104
103
|
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
104
|
+
return TooManyRequestsException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { TooManyRequestsException };
|
|
107
|
+
var IllegalArgumentException = (function (_super) {
|
|
108
|
+
__extends(IllegalArgumentException, _super);
|
|
109
|
+
function IllegalArgumentException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "IllegalArgumentException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "IllegalArgumentException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, IllegalArgumentException.prototype);
|
|
114
|
+
_this.Message = opts.Message;
|
|
115
|
+
return _this;
|
|
117
116
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
117
|
+
return IllegalArgumentException;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { IllegalArgumentException };
|
|
120
|
+
var NoSuchResourceException = (function (_super) {
|
|
121
|
+
__extends(NoSuchResourceException, _super);
|
|
122
|
+
function NoSuchResourceException(opts) {
|
|
123
|
+
var _this = _super.call(this, __assign({ name: "NoSuchResourceException", $fault: "client" }, opts)) || this;
|
|
124
|
+
_this.name = "NoSuchResourceException";
|
|
125
|
+
_this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(_this, NoSuchResourceException.prototype);
|
|
127
|
+
_this.Message = opts.Message;
|
|
128
|
+
return _this;
|
|
130
129
|
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
130
|
+
return NoSuchResourceException;
|
|
131
|
+
}(__BaseException));
|
|
132
|
+
export { NoSuchResourceException };
|
|
133
|
+
var ServiceQuotaTemplateNotInUseException = (function (_super) {
|
|
134
|
+
__extends(ServiceQuotaTemplateNotInUseException, _super);
|
|
135
|
+
function ServiceQuotaTemplateNotInUseException(opts) {
|
|
136
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaTemplateNotInUseException", $fault: "client" }, opts)) || this;
|
|
137
|
+
_this.name = "ServiceQuotaTemplateNotInUseException";
|
|
138
|
+
_this.$fault = "client";
|
|
139
|
+
Object.setPrototypeOf(_this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
140
|
+
_this.Message = opts.Message;
|
|
141
|
+
return _this;
|
|
143
142
|
}
|
|
144
|
-
|
|
143
|
+
return ServiceQuotaTemplateNotInUseException;
|
|
144
|
+
}(__BaseException));
|
|
145
|
+
export { ServiceQuotaTemplateNotInUseException };
|
|
145
146
|
export var ErrorCode;
|
|
146
147
|
(function (ErrorCode) {
|
|
147
148
|
ErrorCode["DEPENDENCY_ACCESS_DENIED_ERROR"] = "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
@@ -172,219 +173,127 @@ export var RequestStatus;
|
|
|
172
173
|
RequestStatus["DENIED"] = "DENIED";
|
|
173
174
|
RequestStatus["PENDING"] = "PENDING";
|
|
174
175
|
})(RequestStatus || (RequestStatus = {}));
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
185
|
-
this.Message = opts.Message;
|
|
176
|
+
var InvalidPaginationTokenException = (function (_super) {
|
|
177
|
+
__extends(InvalidPaginationTokenException, _super);
|
|
178
|
+
function InvalidPaginationTokenException(opts) {
|
|
179
|
+
var _this = _super.call(this, __assign({ name: "InvalidPaginationTokenException", $fault: "client" }, opts)) || this;
|
|
180
|
+
_this.name = "InvalidPaginationTokenException";
|
|
181
|
+
_this.$fault = "client";
|
|
182
|
+
Object.setPrototypeOf(_this, InvalidPaginationTokenException.prototype);
|
|
183
|
+
_this.Message = opts.Message;
|
|
184
|
+
return _this;
|
|
186
185
|
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
186
|
+
return InvalidPaginationTokenException;
|
|
187
|
+
}(__BaseException));
|
|
188
|
+
export { InvalidPaginationTokenException };
|
|
189
|
+
var InvalidResourceStateException = (function (_super) {
|
|
190
|
+
__extends(InvalidResourceStateException, _super);
|
|
191
|
+
function InvalidResourceStateException(opts) {
|
|
192
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceStateException", $fault: "client" }, opts)) || this;
|
|
193
|
+
_this.name = "InvalidResourceStateException";
|
|
194
|
+
_this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(_this, InvalidResourceStateException.prototype);
|
|
196
|
+
_this.Message = opts.Message;
|
|
197
|
+
return _this;
|
|
199
198
|
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
199
|
+
return InvalidResourceStateException;
|
|
200
|
+
}(__BaseException));
|
|
201
|
+
export { InvalidResourceStateException };
|
|
202
|
+
var QuotaExceededException = (function (_super) {
|
|
203
|
+
__extends(QuotaExceededException, _super);
|
|
204
|
+
function QuotaExceededException(opts) {
|
|
205
|
+
var _this = _super.call(this, __assign({ name: "QuotaExceededException", $fault: "client" }, opts)) || this;
|
|
206
|
+
_this.name = "QuotaExceededException";
|
|
207
|
+
_this.$fault = "client";
|
|
208
|
+
Object.setPrototypeOf(_this, QuotaExceededException.prototype);
|
|
209
|
+
_this.Message = opts.Message;
|
|
210
|
+
return _this;
|
|
212
211
|
}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
212
|
+
return QuotaExceededException;
|
|
213
|
+
}(__BaseException));
|
|
214
|
+
export { QuotaExceededException };
|
|
215
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
216
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
217
|
+
function ResourceAlreadyExistsException(opts) {
|
|
218
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
219
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
220
|
+
_this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
222
|
+
_this.Message = opts.Message;
|
|
223
|
+
return _this;
|
|
225
224
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
225
|
+
return ResourceAlreadyExistsException;
|
|
226
|
+
}(__BaseException));
|
|
227
|
+
export { ResourceAlreadyExistsException };
|
|
228
|
+
var TagPolicyViolationException = (function (_super) {
|
|
229
|
+
__extends(TagPolicyViolationException, _super);
|
|
230
|
+
function TagPolicyViolationException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyViolationException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "TagPolicyViolationException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, TagPolicyViolationException.prototype);
|
|
235
|
+
_this.Message = opts.Message;
|
|
236
|
+
return _this;
|
|
238
237
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
238
|
+
return TagPolicyViolationException;
|
|
239
|
+
}(__BaseException));
|
|
240
|
+
export { TagPolicyViolationException };
|
|
241
|
+
var TooManyTagsException = (function (_super) {
|
|
242
|
+
__extends(TooManyTagsException, _super);
|
|
243
|
+
function TooManyTagsException(opts) {
|
|
244
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
245
|
+
_this.name = "TooManyTagsException";
|
|
246
|
+
_this.$fault = "client";
|
|
247
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
248
|
+
_this.Message = opts.Message;
|
|
249
|
+
return _this;
|
|
251
250
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
});
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
});
|
|
259
|
-
export
|
|
260
|
-
|
|
261
|
-
});
|
|
262
|
-
export
|
|
263
|
-
|
|
264
|
-
});
|
|
265
|
-
export
|
|
266
|
-
|
|
267
|
-
});
|
|
268
|
-
export
|
|
269
|
-
|
|
270
|
-
});
|
|
271
|
-
export
|
|
272
|
-
|
|
273
|
-
});
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
});
|
|
277
|
-
export
|
|
278
|
-
|
|
279
|
-
});
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
});
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
});
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
});
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
});
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
});
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
});
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
});
|
|
301
|
-
export const GetRequestedServiceQuotaChangeResponseFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const GetServiceQuotaRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const GetServiceQuotaResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const GetServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
export const ServiceQuotaIncreaseRequestInTemplateFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
export const GetServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
|
-
export const ListAWSDefaultServiceQuotasRequestFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
});
|
|
325
|
-
export const ListAWSDefaultServiceQuotasResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
-
...obj,
|
|
327
|
-
});
|
|
328
|
-
export const ListRequestedServiceQuotaChangeHistoryRequestFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
});
|
|
331
|
-
export const ListRequestedServiceQuotaChangeHistoryResponseFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
});
|
|
334
|
-
export const ListRequestedServiceQuotaChangeHistoryByQuotaRequestFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
});
|
|
337
|
-
export const ListRequestedServiceQuotaChangeHistoryByQuotaResponseFilterSensitiveLog = (obj) => ({
|
|
338
|
-
...obj,
|
|
339
|
-
});
|
|
340
|
-
export const ListServiceQuotaIncreaseRequestsInTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
});
|
|
343
|
-
export const ListServiceQuotaIncreaseRequestsInTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
});
|
|
346
|
-
export const ListServiceQuotasRequestFilterSensitiveLog = (obj) => ({
|
|
347
|
-
...obj,
|
|
348
|
-
});
|
|
349
|
-
export const ListServiceQuotasResponseFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
});
|
|
352
|
-
export const ListServicesRequestFilterSensitiveLog = (obj) => ({
|
|
353
|
-
...obj,
|
|
354
|
-
});
|
|
355
|
-
export const ServiceInfoFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
});
|
|
358
|
-
export const ListServicesResponseFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
});
|
|
361
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
});
|
|
364
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
});
|
|
367
|
-
export const PutServiceQuotaIncreaseRequestIntoTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
368
|
-
...obj,
|
|
369
|
-
});
|
|
370
|
-
export const PutServiceQuotaIncreaseRequestIntoTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
371
|
-
...obj,
|
|
372
|
-
});
|
|
373
|
-
export const RequestServiceQuotaIncreaseRequestFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
});
|
|
376
|
-
export const RequestServiceQuotaIncreaseResponseFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
});
|
|
379
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
380
|
-
...obj,
|
|
381
|
-
});
|
|
382
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
251
|
+
return TooManyTagsException;
|
|
252
|
+
}(__BaseException));
|
|
253
|
+
export { TooManyTagsException };
|
|
254
|
+
export var AssociateServiceQuotaTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var AssociateServiceQuotaTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var DeleteServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var DeleteServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var DisassociateServiceQuotaTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var DisassociateServiceQuotaTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var ErrorReasonFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var GetAssociationForServiceQuotaTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var GetAssociationForServiceQuotaTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var GetAWSDefaultServiceQuotaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var QuotaPeriodFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var MetricInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var ServiceQuotaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var GetAWSDefaultServiceQuotaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var GetRequestedServiceQuotaChangeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var RequestedServiceQuotaChangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var GetRequestedServiceQuotaChangeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var GetServiceQuotaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var GetServiceQuotaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var GetServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var ServiceQuotaIncreaseRequestInTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var GetServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var ListAWSDefaultServiceQuotasRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var ListAWSDefaultServiceQuotasResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var ListRequestedServiceQuotaChangeHistoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var ListRequestedServiceQuotaChangeHistoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var ListRequestedServiceQuotaChangeHistoryByQuotaRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var ListRequestedServiceQuotaChangeHistoryByQuotaResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var ListServiceQuotaIncreaseRequestsInTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var ListServiceQuotaIncreaseRequestsInTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var ListServiceQuotasRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var ListServiceQuotasResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var ListServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var ServiceInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var ListServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var PutServiceQuotaIncreaseRequestIntoTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var PutServiceQuotaIncreaseRequestIntoTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var RequestServiceQuotaIncreaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var RequestServiceQuotaIncreaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|