@aws-sdk/client-service-quotas 3.933.0 → 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -131,11 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends ServiceQuotasS
131
131
  this.Message = opts.Message;
132
132
  }
133
133
  };
134
- const AppliedLevelEnum = {
135
- ACCOUNT: "ACCOUNT",
136
- ALL: "ALL",
137
- RESOURCE: "RESOURCE",
138
- };
139
134
  let AWSServiceAccessNotEnabledException$1 = class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException$1 {
140
135
  name = "AWSServiceAccessNotEnabledException";
141
136
  $fault = "client";
@@ -304,49 +299,6 @@ let ServiceQuotaTemplateNotInUseException$1 = class ServiceQuotaTemplateNotInUse
304
299
  this.Message = opts.Message;
305
300
  }
306
301
  };
307
- const ErrorCode = {
308
- DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
309
- DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
310
- DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR",
311
- SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
312
- };
313
- const ServiceQuotaTemplateAssociationStatus = {
314
- ASSOCIATED: "ASSOCIATED",
315
- DISASSOCIATED: "DISASSOCIATED",
316
- };
317
- const OptInLevel = {
318
- ACCOUNT: "ACCOUNT",
319
- };
320
- const OptInStatus = {
321
- DISABLED: "DISABLED",
322
- ENABLED: "ENABLED",
323
- };
324
- const OptInType = {
325
- NotifyAndAdjust: "NotifyAndAdjust",
326
- NotifyOnly: "NotifyOnly",
327
- };
328
- const PeriodUnit = {
329
- DAY: "DAY",
330
- HOUR: "HOUR",
331
- MICROSECOND: "MICROSECOND",
332
- MILLISECOND: "MILLISECOND",
333
- MINUTE: "MINUTE",
334
- SECOND: "SECOND",
335
- WEEK: "WEEK",
336
- };
337
- const QuotaContextScope = {
338
- ACCOUNT: "ACCOUNT",
339
- RESOURCE: "RESOURCE",
340
- };
341
- const RequestStatus = {
342
- APPROVED: "APPROVED",
343
- CASE_CLOSED: "CASE_CLOSED",
344
- CASE_OPENED: "CASE_OPENED",
345
- DENIED: "DENIED",
346
- INVALID_REQUEST: "INVALID_REQUEST",
347
- NOT_APPROVED: "NOT_APPROVED",
348
- PENDING: "PENDING",
349
- };
350
302
  let InvalidPaginationTokenException$1 = class InvalidPaginationTokenException extends ServiceQuotasServiceException$1 {
351
303
  name = "InvalidPaginationTokenException";
352
304
  $fault = "client";
@@ -1553,6 +1505,55 @@ const paginateListServiceQuotas = core.createPaginator(ServiceQuotasClient, List
1553
1505
 
1554
1506
  const paginateListServices = core.createPaginator(ServiceQuotasClient, ListServicesCommand, "NextToken", "NextToken", "MaxResults");
1555
1507
 
1508
+ const AppliedLevelEnum = {
1509
+ ACCOUNT: "ACCOUNT",
1510
+ ALL: "ALL",
1511
+ RESOURCE: "RESOURCE",
1512
+ };
1513
+ const ErrorCode = {
1514
+ DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
1515
+ DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
1516
+ DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR",
1517
+ SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
1518
+ };
1519
+ const ServiceQuotaTemplateAssociationStatus = {
1520
+ ASSOCIATED: "ASSOCIATED",
1521
+ DISASSOCIATED: "DISASSOCIATED",
1522
+ };
1523
+ const OptInLevel = {
1524
+ ACCOUNT: "ACCOUNT",
1525
+ };
1526
+ const OptInStatus = {
1527
+ DISABLED: "DISABLED",
1528
+ ENABLED: "ENABLED",
1529
+ };
1530
+ const OptInType = {
1531
+ NotifyAndAdjust: "NotifyAndAdjust",
1532
+ NotifyOnly: "NotifyOnly",
1533
+ };
1534
+ const PeriodUnit = {
1535
+ DAY: "DAY",
1536
+ HOUR: "HOUR",
1537
+ MICROSECOND: "MICROSECOND",
1538
+ MILLISECOND: "MILLISECOND",
1539
+ MINUTE: "MINUTE",
1540
+ SECOND: "SECOND",
1541
+ WEEK: "WEEK",
1542
+ };
1543
+ const QuotaContextScope = {
1544
+ ACCOUNT: "ACCOUNT",
1545
+ RESOURCE: "RESOURCE",
1546
+ };
1547
+ const RequestStatus = {
1548
+ APPROVED: "APPROVED",
1549
+ CASE_CLOSED: "CASE_CLOSED",
1550
+ CASE_OPENED: "CASE_OPENED",
1551
+ DENIED: "DENIED",
1552
+ INVALID_REQUEST: "INVALID_REQUEST",
1553
+ NOT_APPROVED: "NOT_APPROVED",
1554
+ PENDING: "PENDING",
1555
+ };
1556
+
1556
1557
  Object.defineProperty(exports, "$Command", {
1557
1558
  enumerable: true,
1558
1559
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./ServiceQuotasClient";
2
2
  export * from "./ServiceQuotas";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { ServiceQuotasServiceException } from "./models/ServiceQuotasServiceException";
@@ -0,0 +1,48 @@
1
+ export const AppliedLevelEnum = {
2
+ ACCOUNT: "ACCOUNT",
3
+ ALL: "ALL",
4
+ RESOURCE: "RESOURCE",
5
+ };
6
+ export const ErrorCode = {
7
+ DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
8
+ DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
9
+ DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR",
10
+ SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
11
+ };
12
+ export const ServiceQuotaTemplateAssociationStatus = {
13
+ ASSOCIATED: "ASSOCIATED",
14
+ DISASSOCIATED: "DISASSOCIATED",
15
+ };
16
+ export const OptInLevel = {
17
+ ACCOUNT: "ACCOUNT",
18
+ };
19
+ export const OptInStatus = {
20
+ DISABLED: "DISABLED",
21
+ ENABLED: "ENABLED",
22
+ };
23
+ export const OptInType = {
24
+ NotifyAndAdjust: "NotifyAndAdjust",
25
+ NotifyOnly: "NotifyOnly",
26
+ };
27
+ export const PeriodUnit = {
28
+ DAY: "DAY",
29
+ HOUR: "HOUR",
30
+ MICROSECOND: "MICROSECOND",
31
+ MILLISECOND: "MILLISECOND",
32
+ MINUTE: "MINUTE",
33
+ SECOND: "SECOND",
34
+ WEEK: "WEEK",
35
+ };
36
+ export const QuotaContextScope = {
37
+ ACCOUNT: "ACCOUNT",
38
+ RESOURCE: "RESOURCE",
39
+ };
40
+ export const RequestStatus = {
41
+ APPROVED: "APPROVED",
42
+ CASE_CLOSED: "CASE_CLOSED",
43
+ CASE_OPENED: "CASE_OPENED",
44
+ DENIED: "DENIED",
45
+ INVALID_REQUEST: "INVALID_REQUEST",
46
+ NOT_APPROVED: "NOT_APPROVED",
47
+ PENDING: "PENDING",
48
+ };
@@ -0,0 +1,239 @@
1
+ import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class AWSServiceAccessNotEnabledException extends __BaseException {
17
+ name = "AWSServiceAccessNotEnabledException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "AWSServiceAccessNotEnabledException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class DependencyAccessDeniedException extends __BaseException {
31
+ name = "DependencyAccessDeniedException";
32
+ $fault = "client";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "DependencyAccessDeniedException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class NoAvailableOrganizationException extends __BaseException {
45
+ name = "NoAvailableOrganizationException";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "NoAvailableOrganizationException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class OrganizationNotInAllFeaturesModeException extends __BaseException {
59
+ name = "OrganizationNotInAllFeaturesModeException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "OrganizationNotInAllFeaturesModeException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ export class ServiceException extends __BaseException {
73
+ name = "ServiceException";
74
+ $fault = "server";
75
+ Message;
76
+ constructor(opts) {
77
+ super({
78
+ name: "ServiceException",
79
+ $fault: "server",
80
+ ...opts,
81
+ });
82
+ Object.setPrototypeOf(this, ServiceException.prototype);
83
+ this.Message = opts.Message;
84
+ }
85
+ }
86
+ export class TemplatesNotAvailableInRegionException extends __BaseException {
87
+ name = "TemplatesNotAvailableInRegionException";
88
+ $fault = "client";
89
+ Message;
90
+ constructor(opts) {
91
+ super({
92
+ name: "TemplatesNotAvailableInRegionException",
93
+ $fault: "client",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
97
+ this.Message = opts.Message;
98
+ }
99
+ }
100
+ export class TooManyRequestsException extends __BaseException {
101
+ name = "TooManyRequestsException";
102
+ $fault = "client";
103
+ Message;
104
+ constructor(opts) {
105
+ super({
106
+ name: "TooManyRequestsException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
111
+ this.Message = opts.Message;
112
+ }
113
+ }
114
+ export class IllegalArgumentException extends __BaseException {
115
+ name = "IllegalArgumentException";
116
+ $fault = "client";
117
+ Message;
118
+ constructor(opts) {
119
+ super({
120
+ name: "IllegalArgumentException",
121
+ $fault: "client",
122
+ ...opts,
123
+ });
124
+ Object.setPrototypeOf(this, IllegalArgumentException.prototype);
125
+ this.Message = opts.Message;
126
+ }
127
+ }
128
+ export class InvalidResourceStateException extends __BaseException {
129
+ name = "InvalidResourceStateException";
130
+ $fault = "client";
131
+ Message;
132
+ constructor(opts) {
133
+ super({
134
+ name: "InvalidResourceStateException",
135
+ $fault: "client",
136
+ ...opts,
137
+ });
138
+ Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
139
+ this.Message = opts.Message;
140
+ }
141
+ }
142
+ export class NoSuchResourceException extends __BaseException {
143
+ name = "NoSuchResourceException";
144
+ $fault = "client";
145
+ Message;
146
+ constructor(opts) {
147
+ super({
148
+ name: "NoSuchResourceException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, NoSuchResourceException.prototype);
153
+ this.Message = opts.Message;
154
+ }
155
+ }
156
+ export class ResourceAlreadyExistsException extends __BaseException {
157
+ name = "ResourceAlreadyExistsException";
158
+ $fault = "client";
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "ResourceAlreadyExistsException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
167
+ this.Message = opts.Message;
168
+ }
169
+ }
170
+ export class ServiceQuotaTemplateNotInUseException extends __BaseException {
171
+ name = "ServiceQuotaTemplateNotInUseException";
172
+ $fault = "client";
173
+ Message;
174
+ constructor(opts) {
175
+ super({
176
+ name: "ServiceQuotaTemplateNotInUseException",
177
+ $fault: "client",
178
+ ...opts,
179
+ });
180
+ Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
181
+ this.Message = opts.Message;
182
+ }
183
+ }
184
+ export class InvalidPaginationTokenException extends __BaseException {
185
+ name = "InvalidPaginationTokenException";
186
+ $fault = "client";
187
+ Message;
188
+ constructor(opts) {
189
+ super({
190
+ name: "InvalidPaginationTokenException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
195
+ this.Message = opts.Message;
196
+ }
197
+ }
198
+ export class QuotaExceededException extends __BaseException {
199
+ name = "QuotaExceededException";
200
+ $fault = "client";
201
+ Message;
202
+ constructor(opts) {
203
+ super({
204
+ name: "QuotaExceededException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, QuotaExceededException.prototype);
209
+ this.Message = opts.Message;
210
+ }
211
+ }
212
+ export class TagPolicyViolationException extends __BaseException {
213
+ name = "TagPolicyViolationException";
214
+ $fault = "client";
215
+ Message;
216
+ constructor(opts) {
217
+ super({
218
+ name: "TagPolicyViolationException",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
223
+ this.Message = opts.Message;
224
+ }
225
+ }
226
+ export class TooManyTagsException extends __BaseException {
227
+ name = "TooManyTagsException";
228
+ $fault = "client";
229
+ Message;
230
+ constructor(opts) {
231
+ super({
232
+ name: "TooManyTagsException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
237
+ this.Message = opts.Message;
238
+ }
239
+ }
@@ -1,287 +1 @@
1
- import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const AppliedLevelEnum = {
17
- ACCOUNT: "ACCOUNT",
18
- ALL: "ALL",
19
- RESOURCE: "RESOURCE",
20
- };
21
- export class AWSServiceAccessNotEnabledException extends __BaseException {
22
- name = "AWSServiceAccessNotEnabledException";
23
- $fault = "client";
24
- Message;
25
- constructor(opts) {
26
- super({
27
- name: "AWSServiceAccessNotEnabledException",
28
- $fault: "client",
29
- ...opts,
30
- });
31
- Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
32
- this.Message = opts.Message;
33
- }
34
- }
35
- export class DependencyAccessDeniedException extends __BaseException {
36
- name = "DependencyAccessDeniedException";
37
- $fault = "client";
38
- Message;
39
- constructor(opts) {
40
- super({
41
- name: "DependencyAccessDeniedException",
42
- $fault: "client",
43
- ...opts,
44
- });
45
- Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
46
- this.Message = opts.Message;
47
- }
48
- }
49
- export class NoAvailableOrganizationException extends __BaseException {
50
- name = "NoAvailableOrganizationException";
51
- $fault = "client";
52
- Message;
53
- constructor(opts) {
54
- super({
55
- name: "NoAvailableOrganizationException",
56
- $fault: "client",
57
- ...opts,
58
- });
59
- Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
60
- this.Message = opts.Message;
61
- }
62
- }
63
- export class OrganizationNotInAllFeaturesModeException extends __BaseException {
64
- name = "OrganizationNotInAllFeaturesModeException";
65
- $fault = "client";
66
- Message;
67
- constructor(opts) {
68
- super({
69
- name: "OrganizationNotInAllFeaturesModeException",
70
- $fault: "client",
71
- ...opts,
72
- });
73
- Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
74
- this.Message = opts.Message;
75
- }
76
- }
77
- export class ServiceException extends __BaseException {
78
- name = "ServiceException";
79
- $fault = "server";
80
- Message;
81
- constructor(opts) {
82
- super({
83
- name: "ServiceException",
84
- $fault: "server",
85
- ...opts,
86
- });
87
- Object.setPrototypeOf(this, ServiceException.prototype);
88
- this.Message = opts.Message;
89
- }
90
- }
91
- export class TemplatesNotAvailableInRegionException extends __BaseException {
92
- name = "TemplatesNotAvailableInRegionException";
93
- $fault = "client";
94
- Message;
95
- constructor(opts) {
96
- super({
97
- name: "TemplatesNotAvailableInRegionException",
98
- $fault: "client",
99
- ...opts,
100
- });
101
- Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
102
- this.Message = opts.Message;
103
- }
104
- }
105
- export class TooManyRequestsException extends __BaseException {
106
- name = "TooManyRequestsException";
107
- $fault = "client";
108
- Message;
109
- constructor(opts) {
110
- super({
111
- name: "TooManyRequestsException",
112
- $fault: "client",
113
- ...opts,
114
- });
115
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
116
- this.Message = opts.Message;
117
- }
118
- }
119
- export class IllegalArgumentException extends __BaseException {
120
- name = "IllegalArgumentException";
121
- $fault = "client";
122
- Message;
123
- constructor(opts) {
124
- super({
125
- name: "IllegalArgumentException",
126
- $fault: "client",
127
- ...opts,
128
- });
129
- Object.setPrototypeOf(this, IllegalArgumentException.prototype);
130
- this.Message = opts.Message;
131
- }
132
- }
133
- export class InvalidResourceStateException extends __BaseException {
134
- name = "InvalidResourceStateException";
135
- $fault = "client";
136
- Message;
137
- constructor(opts) {
138
- super({
139
- name: "InvalidResourceStateException",
140
- $fault: "client",
141
- ...opts,
142
- });
143
- Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
144
- this.Message = opts.Message;
145
- }
146
- }
147
- export class NoSuchResourceException extends __BaseException {
148
- name = "NoSuchResourceException";
149
- $fault = "client";
150
- Message;
151
- constructor(opts) {
152
- super({
153
- name: "NoSuchResourceException",
154
- $fault: "client",
155
- ...opts,
156
- });
157
- Object.setPrototypeOf(this, NoSuchResourceException.prototype);
158
- this.Message = opts.Message;
159
- }
160
- }
161
- export class ResourceAlreadyExistsException extends __BaseException {
162
- name = "ResourceAlreadyExistsException";
163
- $fault = "client";
164
- Message;
165
- constructor(opts) {
166
- super({
167
- name: "ResourceAlreadyExistsException",
168
- $fault: "client",
169
- ...opts,
170
- });
171
- Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
172
- this.Message = opts.Message;
173
- }
174
- }
175
- export class ServiceQuotaTemplateNotInUseException extends __BaseException {
176
- name = "ServiceQuotaTemplateNotInUseException";
177
- $fault = "client";
178
- Message;
179
- constructor(opts) {
180
- super({
181
- name: "ServiceQuotaTemplateNotInUseException",
182
- $fault: "client",
183
- ...opts,
184
- });
185
- Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
186
- this.Message = opts.Message;
187
- }
188
- }
189
- export const ErrorCode = {
190
- DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
191
- DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
192
- DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR",
193
- SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
194
- };
195
- export const ServiceQuotaTemplateAssociationStatus = {
196
- ASSOCIATED: "ASSOCIATED",
197
- DISASSOCIATED: "DISASSOCIATED",
198
- };
199
- export const OptInLevel = {
200
- ACCOUNT: "ACCOUNT",
201
- };
202
- export const OptInStatus = {
203
- DISABLED: "DISABLED",
204
- ENABLED: "ENABLED",
205
- };
206
- export const OptInType = {
207
- NotifyAndAdjust: "NotifyAndAdjust",
208
- NotifyOnly: "NotifyOnly",
209
- };
210
- export const PeriodUnit = {
211
- DAY: "DAY",
212
- HOUR: "HOUR",
213
- MICROSECOND: "MICROSECOND",
214
- MILLISECOND: "MILLISECOND",
215
- MINUTE: "MINUTE",
216
- SECOND: "SECOND",
217
- WEEK: "WEEK",
218
- };
219
- export const QuotaContextScope = {
220
- ACCOUNT: "ACCOUNT",
221
- RESOURCE: "RESOURCE",
222
- };
223
- export const RequestStatus = {
224
- APPROVED: "APPROVED",
225
- CASE_CLOSED: "CASE_CLOSED",
226
- CASE_OPENED: "CASE_OPENED",
227
- DENIED: "DENIED",
228
- INVALID_REQUEST: "INVALID_REQUEST",
229
- NOT_APPROVED: "NOT_APPROVED",
230
- PENDING: "PENDING",
231
- };
232
- export class InvalidPaginationTokenException extends __BaseException {
233
- name = "InvalidPaginationTokenException";
234
- $fault = "client";
235
- Message;
236
- constructor(opts) {
237
- super({
238
- name: "InvalidPaginationTokenException",
239
- $fault: "client",
240
- ...opts,
241
- });
242
- Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
243
- this.Message = opts.Message;
244
- }
245
- }
246
- export class QuotaExceededException extends __BaseException {
247
- name = "QuotaExceededException";
248
- $fault = "client";
249
- Message;
250
- constructor(opts) {
251
- super({
252
- name: "QuotaExceededException",
253
- $fault: "client",
254
- ...opts,
255
- });
256
- Object.setPrototypeOf(this, QuotaExceededException.prototype);
257
- this.Message = opts.Message;
258
- }
259
- }
260
- export class TagPolicyViolationException extends __BaseException {
261
- name = "TagPolicyViolationException";
262
- $fault = "client";
263
- Message;
264
- constructor(opts) {
265
- super({
266
- name: "TagPolicyViolationException",
267
- $fault: "client",
268
- ...opts,
269
- });
270
- Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
271
- this.Message = opts.Message;
272
- }
273
- }
274
- export class TooManyTagsException extends __BaseException {
275
- name = "TooManyTagsException";
276
- $fault = "client";
277
- Message;
278
- constructor(opts) {
279
- super({
280
- name: "TooManyTagsException",
281
- $fault: "client",
282
- ...opts,
283
- });
284
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
285
- this.Message = opts.Message;
286
- }
287
- }
1
+ export {};