@aws-sdk/client-service-quotas 3.186.0 → 3.188.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ServiceQuotas.js +78 -85
  3. package/dist-es/ServiceQuotasClient.js +22 -28
  4. package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +21 -28
  5. package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +21 -28
  6. package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +21 -28
  7. package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +21 -28
  8. package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +21 -28
  9. package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +21 -28
  10. package/dist-es/commands/GetServiceQuotaCommand.js +21 -28
  11. package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +21 -28
  12. package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +21 -28
  13. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +21 -28
  14. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +21 -28
  15. package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +21 -28
  16. package/dist-es/commands/ListServiceQuotasCommand.js +21 -28
  17. package/dist-es/commands/ListServicesCommand.js +21 -28
  18. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  19. package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +21 -28
  20. package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +21 -28
  21. package/dist-es/commands/TagResourceCommand.js +21 -28
  22. package/dist-es/commands/UntagResourceCommand.js +21 -28
  23. package/dist-es/endpoints.js +8 -8
  24. package/dist-es/models/ServiceQuotasServiceException.js +5 -10
  25. package/dist-es/models/models_0.js +342 -251
  26. package/dist-es/pagination/ListAWSDefaultServiceQuotasPaginator.js +25 -68
  27. package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +25 -68
  28. package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +25 -68
  29. package/dist-es/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +25 -68
  30. package/dist-es/pagination/ListServiceQuotasPaginator.js +25 -68
  31. package/dist-es/pagination/ListServicesPaginator.js +25 -68
  32. package/dist-es/protocols/Aws_json1_1.js +1501 -1952
  33. package/dist-es/runtimeConfig.browser.js +26 -12
  34. package/dist-es/runtimeConfig.js +30 -12
  35. package/dist-es/runtimeConfig.native.js +8 -5
  36. package/dist-es/runtimeConfig.shared.js +8 -11
  37. package/package.json +33 -33
@@ -1,148 +1,147 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
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;
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
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;
14
+ }
15
+ export class AWSServiceAccessNotEnabledException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "AWSServiceAccessNotEnabledException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "AWSServiceAccessNotEnabledException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
25
+ this.Message = opts.Message;
25
26
  }
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;
27
+ }
28
+ export class DependencyAccessDeniedException extends __BaseException {
29
+ constructor(opts) {
30
+ super({
31
+ name: "DependencyAccessDeniedException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ this.name = "DependencyAccessDeniedException";
36
+ this.$fault = "client";
37
+ Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
38
+ this.Message = opts.Message;
38
39
  }
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;
40
+ }
41
+ export class NoAvailableOrganizationException extends __BaseException {
42
+ constructor(opts) {
43
+ super({
44
+ name: "NoAvailableOrganizationException",
45
+ $fault: "client",
46
+ ...opts,
47
+ });
48
+ this.name = "NoAvailableOrganizationException";
49
+ this.$fault = "client";
50
+ Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
51
+ this.Message = opts.Message;
51
52
  }
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;
53
+ }
54
+ export class OrganizationNotInAllFeaturesModeException extends __BaseException {
55
+ constructor(opts) {
56
+ super({
57
+ name: "OrganizationNotInAllFeaturesModeException",
58
+ $fault: "client",
59
+ ...opts,
60
+ });
61
+ this.name = "OrganizationNotInAllFeaturesModeException";
62
+ this.$fault = "client";
63
+ Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
64
+ this.Message = opts.Message;
64
65
  }
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;
66
+ }
67
+ export class ServiceException extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "ServiceException",
71
+ $fault: "server",
72
+ ...opts,
73
+ });
74
+ this.name = "ServiceException";
75
+ this.$fault = "server";
76
+ Object.setPrototypeOf(this, ServiceException.prototype);
77
+ this.Message = opts.Message;
77
78
  }
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;
79
+ }
80
+ export class TemplatesNotAvailableInRegionException extends __BaseException {
81
+ constructor(opts) {
82
+ super({
83
+ name: "TemplatesNotAvailableInRegionException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ this.name = "TemplatesNotAvailableInRegionException";
88
+ this.$fault = "client";
89
+ Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
90
+ this.Message = opts.Message;
90
91
  }
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;
92
+ }
93
+ export class TooManyRequestsException extends __BaseException {
94
+ constructor(opts) {
95
+ super({
96
+ name: "TooManyRequestsException",
97
+ $fault: "client",
98
+ ...opts,
99
+ });
100
+ this.name = "TooManyRequestsException";
101
+ this.$fault = "client";
102
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
103
+ this.Message = opts.Message;
103
104
  }
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;
105
+ }
106
+ export class IllegalArgumentException extends __BaseException {
107
+ constructor(opts) {
108
+ super({
109
+ name: "IllegalArgumentException",
110
+ $fault: "client",
111
+ ...opts,
112
+ });
113
+ this.name = "IllegalArgumentException";
114
+ this.$fault = "client";
115
+ Object.setPrototypeOf(this, IllegalArgumentException.prototype);
116
+ this.Message = opts.Message;
116
117
  }
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;
118
+ }
119
+ export class NoSuchResourceException extends __BaseException {
120
+ constructor(opts) {
121
+ super({
122
+ name: "NoSuchResourceException",
123
+ $fault: "client",
124
+ ...opts,
125
+ });
126
+ this.name = "NoSuchResourceException";
127
+ this.$fault = "client";
128
+ Object.setPrototypeOf(this, NoSuchResourceException.prototype);
129
+ this.Message = opts.Message;
129
130
  }
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;
131
+ }
132
+ export class ServiceQuotaTemplateNotInUseException extends __BaseException {
133
+ constructor(opts) {
134
+ super({
135
+ name: "ServiceQuotaTemplateNotInUseException",
136
+ $fault: "client",
137
+ ...opts,
138
+ });
139
+ this.name = "ServiceQuotaTemplateNotInUseException";
140
+ this.$fault = "client";
141
+ Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
142
+ this.Message = opts.Message;
142
143
  }
143
- return ServiceQuotaTemplateNotInUseException;
144
- }(__BaseException));
145
- export { ServiceQuotaTemplateNotInUseException };
144
+ }
146
145
  export var ErrorCode;
147
146
  (function (ErrorCode) {
148
147
  ErrorCode["DEPENDENCY_ACCESS_DENIED_ERROR"] = "DEPENDENCY_ACCESS_DENIED_ERROR";
@@ -173,127 +172,219 @@ export var RequestStatus;
173
172
  RequestStatus["DENIED"] = "DENIED";
174
173
  RequestStatus["PENDING"] = "PENDING";
175
174
  })(RequestStatus || (RequestStatus = {}));
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;
175
+ export class InvalidPaginationTokenException extends __BaseException {
176
+ constructor(opts) {
177
+ super({
178
+ name: "InvalidPaginationTokenException",
179
+ $fault: "client",
180
+ ...opts,
181
+ });
182
+ this.name = "InvalidPaginationTokenException";
183
+ this.$fault = "client";
184
+ Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
185
+ this.Message = opts.Message;
185
186
  }
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;
187
+ }
188
+ export class InvalidResourceStateException extends __BaseException {
189
+ constructor(opts) {
190
+ super({
191
+ name: "InvalidResourceStateException",
192
+ $fault: "client",
193
+ ...opts,
194
+ });
195
+ this.name = "InvalidResourceStateException";
196
+ this.$fault = "client";
197
+ Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
198
+ this.Message = opts.Message;
198
199
  }
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;
200
+ }
201
+ export class QuotaExceededException extends __BaseException {
202
+ constructor(opts) {
203
+ super({
204
+ name: "QuotaExceededException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ this.name = "QuotaExceededException";
209
+ this.$fault = "client";
210
+ Object.setPrototypeOf(this, QuotaExceededException.prototype);
211
+ this.Message = opts.Message;
211
212
  }
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;
213
+ }
214
+ export class ResourceAlreadyExistsException extends __BaseException {
215
+ constructor(opts) {
216
+ super({
217
+ name: "ResourceAlreadyExistsException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ this.name = "ResourceAlreadyExistsException";
222
+ this.$fault = "client";
223
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
224
+ this.Message = opts.Message;
224
225
  }
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;
226
+ }
227
+ export class TagPolicyViolationException extends __BaseException {
228
+ constructor(opts) {
229
+ super({
230
+ name: "TagPolicyViolationException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ this.name = "TagPolicyViolationException";
235
+ this.$fault = "client";
236
+ Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
237
+ this.Message = opts.Message;
237
238
  }
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;
239
+ }
240
+ export class TooManyTagsException extends __BaseException {
241
+ constructor(opts) {
242
+ super({
243
+ name: "TooManyTagsException",
244
+ $fault: "client",
245
+ ...opts,
246
+ });
247
+ this.name = "TooManyTagsException";
248
+ this.$fault = "client";
249
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
250
+ this.Message = opts.Message;
250
251
  }
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)); };
252
+ }
253
+ export const AssociateServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ });
256
+ export const AssociateServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
257
+ ...obj,
258
+ });
259
+ export const DeleteServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = (obj) => ({
260
+ ...obj,
261
+ });
262
+ export const DeleteServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = (obj) => ({
263
+ ...obj,
264
+ });
265
+ export const DisassociateServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
266
+ ...obj,
267
+ });
268
+ export const DisassociateServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
269
+ ...obj,
270
+ });
271
+ export const ErrorReasonFilterSensitiveLog = (obj) => ({
272
+ ...obj,
273
+ });
274
+ export const GetAssociationForServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
275
+ ...obj,
276
+ });
277
+ export const GetAssociationForServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ });
280
+ export const GetAWSDefaultServiceQuotaRequestFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ });
283
+ export const QuotaPeriodFilterSensitiveLog = (obj) => ({
284
+ ...obj,
285
+ });
286
+ export const MetricInfoFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const ServiceQuotaFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const GetAWSDefaultServiceQuotaResponseFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const GetRequestedServiceQuotaChangeRequestFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const RequestedServiceQuotaChangeFilterSensitiveLog = (obj) => ({
299
+ ...obj,
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
+ });