@aws-sdk/client-service-quotas 3.50.0 → 3.53.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 (53) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ServiceQuotasServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +241 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +269 -1060
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ServiceQuotasServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +223 -1
  9. package/dist-es/protocols/Aws_json1_1.js +552 -1103
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ServiceQuotasServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +121 -52
  13. package/dist-types/ts3.4/ServiceQuotas.d.ts +100 -0
  14. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +92 -0
  15. package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  36. package/dist-types/ts3.4/index.d.ts +6 -0
  37. package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +6 -0
  38. package/dist-types/ts3.4/models/index.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +670 -0
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  41. package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  48. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  53. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./ServiceQuotasClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ServiceQuotasServiceException } from "./models/ServiceQuotasServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var ServiceQuotasServiceException = (function (_super) {
4
+ __extends(ServiceQuotasServiceException, _super);
5
+ function ServiceQuotasServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, ServiceQuotasServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return ServiceQuotasServiceException;
11
+ }(__ServiceException));
12
+ export { ServiceQuotasServiceException };
@@ -1,4 +1,18 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ 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;
12
+ }
13
+ return AccessDeniedException;
14
+ }(__BaseException));
15
+ export { AccessDeniedException };
2
16
  export var AssociateServiceQuotaTemplateRequest;
3
17
  (function (AssociateServiceQuotaTemplateRequest) {
4
18
  AssociateServiceQuotaTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -7,6 +21,97 @@ export var AssociateServiceQuotaTemplateResponse;
7
21
  (function (AssociateServiceQuotaTemplateResponse) {
8
22
  AssociateServiceQuotaTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
23
  })(AssociateServiceQuotaTemplateResponse || (AssociateServiceQuotaTemplateResponse = {}));
24
+ var AWSServiceAccessNotEnabledException = (function (_super) {
25
+ __extends(AWSServiceAccessNotEnabledException, _super);
26
+ function AWSServiceAccessNotEnabledException(opts) {
27
+ var _this = _super.call(this, __assign({ name: "AWSServiceAccessNotEnabledException", $fault: "client" }, opts)) || this;
28
+ _this.name = "AWSServiceAccessNotEnabledException";
29
+ _this.$fault = "client";
30
+ Object.setPrototypeOf(_this, AWSServiceAccessNotEnabledException.prototype);
31
+ _this.Message = opts.Message;
32
+ return _this;
33
+ }
34
+ return AWSServiceAccessNotEnabledException;
35
+ }(__BaseException));
36
+ export { AWSServiceAccessNotEnabledException };
37
+ var DependencyAccessDeniedException = (function (_super) {
38
+ __extends(DependencyAccessDeniedException, _super);
39
+ function DependencyAccessDeniedException(opts) {
40
+ var _this = _super.call(this, __assign({ name: "DependencyAccessDeniedException", $fault: "client" }, opts)) || this;
41
+ _this.name = "DependencyAccessDeniedException";
42
+ _this.$fault = "client";
43
+ Object.setPrototypeOf(_this, DependencyAccessDeniedException.prototype);
44
+ _this.Message = opts.Message;
45
+ return _this;
46
+ }
47
+ return DependencyAccessDeniedException;
48
+ }(__BaseException));
49
+ export { DependencyAccessDeniedException };
50
+ var NoAvailableOrganizationException = (function (_super) {
51
+ __extends(NoAvailableOrganizationException, _super);
52
+ function NoAvailableOrganizationException(opts) {
53
+ var _this = _super.call(this, __assign({ name: "NoAvailableOrganizationException", $fault: "client" }, opts)) || this;
54
+ _this.name = "NoAvailableOrganizationException";
55
+ _this.$fault = "client";
56
+ Object.setPrototypeOf(_this, NoAvailableOrganizationException.prototype);
57
+ _this.Message = opts.Message;
58
+ return _this;
59
+ }
60
+ return NoAvailableOrganizationException;
61
+ }(__BaseException));
62
+ export { NoAvailableOrganizationException };
63
+ var OrganizationNotInAllFeaturesModeException = (function (_super) {
64
+ __extends(OrganizationNotInAllFeaturesModeException, _super);
65
+ function OrganizationNotInAllFeaturesModeException(opts) {
66
+ var _this = _super.call(this, __assign({ name: "OrganizationNotInAllFeaturesModeException", $fault: "client" }, opts)) || this;
67
+ _this.name = "OrganizationNotInAllFeaturesModeException";
68
+ _this.$fault = "client";
69
+ Object.setPrototypeOf(_this, OrganizationNotInAllFeaturesModeException.prototype);
70
+ _this.Message = opts.Message;
71
+ return _this;
72
+ }
73
+ return OrganizationNotInAllFeaturesModeException;
74
+ }(__BaseException));
75
+ export { OrganizationNotInAllFeaturesModeException };
76
+ var ServiceException = (function (_super) {
77
+ __extends(ServiceException, _super);
78
+ function ServiceException(opts) {
79
+ var _this = _super.call(this, __assign({ name: "ServiceException", $fault: "server" }, opts)) || this;
80
+ _this.name = "ServiceException";
81
+ _this.$fault = "server";
82
+ Object.setPrototypeOf(_this, ServiceException.prototype);
83
+ _this.Message = opts.Message;
84
+ return _this;
85
+ }
86
+ return ServiceException;
87
+ }(__BaseException));
88
+ export { ServiceException };
89
+ var TemplatesNotAvailableInRegionException = (function (_super) {
90
+ __extends(TemplatesNotAvailableInRegionException, _super);
91
+ function TemplatesNotAvailableInRegionException(opts) {
92
+ var _this = _super.call(this, __assign({ name: "TemplatesNotAvailableInRegionException", $fault: "client" }, opts)) || this;
93
+ _this.name = "TemplatesNotAvailableInRegionException";
94
+ _this.$fault = "client";
95
+ Object.setPrototypeOf(_this, TemplatesNotAvailableInRegionException.prototype);
96
+ _this.Message = opts.Message;
97
+ return _this;
98
+ }
99
+ return TemplatesNotAvailableInRegionException;
100
+ }(__BaseException));
101
+ export { TemplatesNotAvailableInRegionException };
102
+ var TooManyRequestsException = (function (_super) {
103
+ __extends(TooManyRequestsException, _super);
104
+ function TooManyRequestsException(opts) {
105
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
106
+ _this.name = "TooManyRequestsException";
107
+ _this.$fault = "client";
108
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
109
+ _this.Message = opts.Message;
110
+ return _this;
111
+ }
112
+ return TooManyRequestsException;
113
+ }(__BaseException));
114
+ export { TooManyRequestsException };
10
115
  export var DeleteServiceQuotaIncreaseRequestFromTemplateRequest;
11
116
  (function (DeleteServiceQuotaIncreaseRequestFromTemplateRequest) {
12
117
  DeleteServiceQuotaIncreaseRequestFromTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -15,6 +120,32 @@ export var DeleteServiceQuotaIncreaseRequestFromTemplateResponse;
15
120
  (function (DeleteServiceQuotaIncreaseRequestFromTemplateResponse) {
16
121
  DeleteServiceQuotaIncreaseRequestFromTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
17
122
  })(DeleteServiceQuotaIncreaseRequestFromTemplateResponse || (DeleteServiceQuotaIncreaseRequestFromTemplateResponse = {}));
123
+ var IllegalArgumentException = (function (_super) {
124
+ __extends(IllegalArgumentException, _super);
125
+ function IllegalArgumentException(opts) {
126
+ var _this = _super.call(this, __assign({ name: "IllegalArgumentException", $fault: "client" }, opts)) || this;
127
+ _this.name = "IllegalArgumentException";
128
+ _this.$fault = "client";
129
+ Object.setPrototypeOf(_this, IllegalArgumentException.prototype);
130
+ _this.Message = opts.Message;
131
+ return _this;
132
+ }
133
+ return IllegalArgumentException;
134
+ }(__BaseException));
135
+ export { IllegalArgumentException };
136
+ var NoSuchResourceException = (function (_super) {
137
+ __extends(NoSuchResourceException, _super);
138
+ function NoSuchResourceException(opts) {
139
+ var _this = _super.call(this, __assign({ name: "NoSuchResourceException", $fault: "client" }, opts)) || this;
140
+ _this.name = "NoSuchResourceException";
141
+ _this.$fault = "client";
142
+ Object.setPrototypeOf(_this, NoSuchResourceException.prototype);
143
+ _this.Message = opts.Message;
144
+ return _this;
145
+ }
146
+ return NoSuchResourceException;
147
+ }(__BaseException));
148
+ export { NoSuchResourceException };
18
149
  export var DisassociateServiceQuotaTemplateRequest;
19
150
  (function (DisassociateServiceQuotaTemplateRequest) {
20
151
  DisassociateServiceQuotaTemplateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -23,6 +154,19 @@ export var DisassociateServiceQuotaTemplateResponse;
23
154
  (function (DisassociateServiceQuotaTemplateResponse) {
24
155
  DisassociateServiceQuotaTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
156
  })(DisassociateServiceQuotaTemplateResponse || (DisassociateServiceQuotaTemplateResponse = {}));
157
+ var ServiceQuotaTemplateNotInUseException = (function (_super) {
158
+ __extends(ServiceQuotaTemplateNotInUseException, _super);
159
+ function ServiceQuotaTemplateNotInUseException(opts) {
160
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaTemplateNotInUseException", $fault: "client" }, opts)) || this;
161
+ _this.name = "ServiceQuotaTemplateNotInUseException";
162
+ _this.$fault = "client";
163
+ Object.setPrototypeOf(_this, ServiceQuotaTemplateNotInUseException.prototype);
164
+ _this.Message = opts.Message;
165
+ return _this;
166
+ }
167
+ return ServiceQuotaTemplateNotInUseException;
168
+ }(__BaseException));
169
+ export { ServiceQuotaTemplateNotInUseException };
26
170
  export var ErrorCode;
27
171
  (function (ErrorCode) {
28
172
  ErrorCode["DEPENDENCY_ACCESS_DENIED_ERROR"] = "DEPENDENCY_ACCESS_DENIED_ERROR";
@@ -121,6 +265,32 @@ export var Tag;
121
265
  (function (Tag) {
122
266
  Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
123
267
  })(Tag || (Tag = {}));
268
+ var InvalidPaginationTokenException = (function (_super) {
269
+ __extends(InvalidPaginationTokenException, _super);
270
+ function InvalidPaginationTokenException(opts) {
271
+ var _this = _super.call(this, __assign({ name: "InvalidPaginationTokenException", $fault: "client" }, opts)) || this;
272
+ _this.name = "InvalidPaginationTokenException";
273
+ _this.$fault = "client";
274
+ Object.setPrototypeOf(_this, InvalidPaginationTokenException.prototype);
275
+ _this.Message = opts.Message;
276
+ return _this;
277
+ }
278
+ return InvalidPaginationTokenException;
279
+ }(__BaseException));
280
+ export { InvalidPaginationTokenException };
281
+ var InvalidResourceStateException = (function (_super) {
282
+ __extends(InvalidResourceStateException, _super);
283
+ function InvalidResourceStateException(opts) {
284
+ var _this = _super.call(this, __assign({ name: "InvalidResourceStateException", $fault: "client" }, opts)) || this;
285
+ _this.name = "InvalidResourceStateException";
286
+ _this.$fault = "client";
287
+ Object.setPrototypeOf(_this, InvalidResourceStateException.prototype);
288
+ _this.Message = opts.Message;
289
+ return _this;
290
+ }
291
+ return InvalidResourceStateException;
292
+ }(__BaseException));
293
+ export { InvalidResourceStateException };
124
294
  export var ListAWSDefaultServiceQuotasRequest;
125
295
  (function (ListAWSDefaultServiceQuotasRequest) {
126
296
  ListAWSDefaultServiceQuotasRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -189,6 +359,19 @@ export var PutServiceQuotaIncreaseRequestIntoTemplateResponse;
189
359
  (function (PutServiceQuotaIncreaseRequestIntoTemplateResponse) {
190
360
  PutServiceQuotaIncreaseRequestIntoTemplateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
361
  })(PutServiceQuotaIncreaseRequestIntoTemplateResponse || (PutServiceQuotaIncreaseRequestIntoTemplateResponse = {}));
362
+ var QuotaExceededException = (function (_super) {
363
+ __extends(QuotaExceededException, _super);
364
+ function QuotaExceededException(opts) {
365
+ var _this = _super.call(this, __assign({ name: "QuotaExceededException", $fault: "client" }, opts)) || this;
366
+ _this.name = "QuotaExceededException";
367
+ _this.$fault = "client";
368
+ Object.setPrototypeOf(_this, QuotaExceededException.prototype);
369
+ _this.Message = opts.Message;
370
+ return _this;
371
+ }
372
+ return QuotaExceededException;
373
+ }(__BaseException));
374
+ export { QuotaExceededException };
192
375
  export var RequestServiceQuotaIncreaseRequest;
193
376
  (function (RequestServiceQuotaIncreaseRequest) {
194
377
  RequestServiceQuotaIncreaseRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -197,6 +380,32 @@ export var RequestServiceQuotaIncreaseResponse;
197
380
  (function (RequestServiceQuotaIncreaseResponse) {
198
381
  RequestServiceQuotaIncreaseResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
382
  })(RequestServiceQuotaIncreaseResponse || (RequestServiceQuotaIncreaseResponse = {}));
383
+ var ResourceAlreadyExistsException = (function (_super) {
384
+ __extends(ResourceAlreadyExistsException, _super);
385
+ function ResourceAlreadyExistsException(opts) {
386
+ var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
387
+ _this.name = "ResourceAlreadyExistsException";
388
+ _this.$fault = "client";
389
+ Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
390
+ _this.Message = opts.Message;
391
+ return _this;
392
+ }
393
+ return ResourceAlreadyExistsException;
394
+ }(__BaseException));
395
+ export { ResourceAlreadyExistsException };
396
+ var TagPolicyViolationException = (function (_super) {
397
+ __extends(TagPolicyViolationException, _super);
398
+ function TagPolicyViolationException(opts) {
399
+ var _this = _super.call(this, __assign({ name: "TagPolicyViolationException", $fault: "client" }, opts)) || this;
400
+ _this.name = "TagPolicyViolationException";
401
+ _this.$fault = "client";
402
+ Object.setPrototypeOf(_this, TagPolicyViolationException.prototype);
403
+ _this.Message = opts.Message;
404
+ return _this;
405
+ }
406
+ return TagPolicyViolationException;
407
+ }(__BaseException));
408
+ export { TagPolicyViolationException };
200
409
  export var TagResourceRequest;
201
410
  (function (TagResourceRequest) {
202
411
  TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -205,6 +414,19 @@ export var TagResourceResponse;
205
414
  (function (TagResourceResponse) {
206
415
  TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
416
  })(TagResourceResponse || (TagResourceResponse = {}));
417
+ var TooManyTagsException = (function (_super) {
418
+ __extends(TooManyTagsException, _super);
419
+ function TooManyTagsException(opts) {
420
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
421
+ _this.name = "TooManyTagsException";
422
+ _this.$fault = "client";
423
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
424
+ _this.Message = opts.Message;
425
+ return _this;
426
+ }
427
+ return TooManyTagsException;
428
+ }(__BaseException));
429
+ export { TooManyTagsException };
208
430
  export var UntagResourceRequest;
209
431
  (function (UntagResourceRequest) {
210
432
  UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };