@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 +49 -48
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +48 -0
- package/dist-es/models/errors.js +239 -0
- package/dist-es/models/models_0.js +1 -287
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +120 -0
- package/dist-types/models/errors.d.ts +229 -0
- package/dist-types/models/models_0.d.ts +1 -349
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +60 -0
- package/dist-types/ts3.4/models/errors.d.ts +157 -0
- package/dist-types/ts3.4/models/models_0.d.ts +11 -217
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,31 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient permission to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
* @enum
|
|
19
|
-
*/
|
|
20
|
-
export declare const AppliedLevelEnum: {
|
|
21
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
22
|
-
readonly ALL: "ALL";
|
|
23
|
-
readonly RESOURCE: "RESOURCE";
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* @public
|
|
27
|
-
*/
|
|
28
|
-
export type AppliedLevelEnum = (typeof AppliedLevelEnum)[keyof typeof AppliedLevelEnum];
|
|
1
|
+
import { AppliedLevelEnum, ErrorCode, OptInLevel, OptInStatus, OptInType, PeriodUnit, QuotaContextScope, RequestStatus, ServiceQuotaTemplateAssociationStatus } from "./enums";
|
|
29
2
|
/**
|
|
30
3
|
* @public
|
|
31
4
|
*/
|
|
@@ -36,100 +9,6 @@ export interface AssociateServiceQuotaTemplateRequest {
|
|
|
36
9
|
*/
|
|
37
10
|
export interface AssociateServiceQuotaTemplateResponse {
|
|
38
11
|
}
|
|
39
|
-
/**
|
|
40
|
-
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is enabled in
|
|
41
|
-
* your organization.</p>
|
|
42
|
-
* @public
|
|
43
|
-
*/
|
|
44
|
-
export declare class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
45
|
-
readonly name: "AWSServiceAccessNotEnabledException";
|
|
46
|
-
readonly $fault: "client";
|
|
47
|
-
Message?: string | undefined;
|
|
48
|
-
/**
|
|
49
|
-
* @internal
|
|
50
|
-
*/
|
|
51
|
-
constructor(opts: __ExceptionOptionType<AWSServiceAccessNotEnabledException, __BaseException>);
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* <p>You can't perform this action because a dependency does not have access.</p>
|
|
55
|
-
* @public
|
|
56
|
-
*/
|
|
57
|
-
export declare class DependencyAccessDeniedException extends __BaseException {
|
|
58
|
-
readonly name: "DependencyAccessDeniedException";
|
|
59
|
-
readonly $fault: "client";
|
|
60
|
-
Message?: string | undefined;
|
|
61
|
-
/**
|
|
62
|
-
* @internal
|
|
63
|
-
*/
|
|
64
|
-
constructor(opts: __ExceptionOptionType<DependencyAccessDeniedException, __BaseException>);
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* <p>The Amazon Web Services account making this call is not a member of an organization.</p>
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
export declare class NoAvailableOrganizationException extends __BaseException {
|
|
71
|
-
readonly name: "NoAvailableOrganizationException";
|
|
72
|
-
readonly $fault: "client";
|
|
73
|
-
Message?: string | undefined;
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
constructor(opts: __ExceptionOptionType<NoAvailableOrganizationException, __BaseException>);
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
|
-
* <p>The organization that your Amazon Web Services account belongs to is not in All Features
|
|
81
|
-
* mode.</p>
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
85
|
-
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
86
|
-
readonly $fault: "client";
|
|
87
|
-
Message?: string | undefined;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
constructor(opts: __ExceptionOptionType<OrganizationNotInAllFeaturesModeException, __BaseException>);
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* <p>Something went wrong.</p>
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
export declare class ServiceException extends __BaseException {
|
|
98
|
-
readonly name: "ServiceException";
|
|
99
|
-
readonly $fault: "server";
|
|
100
|
-
Message?: string | undefined;
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* <p>The Service Quotas template is not available in this Amazon Web Services Region.</p>
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
export declare class TemplatesNotAvailableInRegionException extends __BaseException {
|
|
111
|
-
readonly name: "TemplatesNotAvailableInRegionException";
|
|
112
|
-
readonly $fault: "client";
|
|
113
|
-
Message?: string | undefined;
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
constructor(opts: __ExceptionOptionType<TemplatesNotAvailableInRegionException, __BaseException>);
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
121
|
-
* request an increase for this quota.</p>
|
|
122
|
-
* @public
|
|
123
|
-
*/
|
|
124
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
125
|
-
readonly name: "TooManyRequestsException";
|
|
126
|
-
readonly $fault: "client";
|
|
127
|
-
Message?: string | undefined;
|
|
128
|
-
/**
|
|
129
|
-
* @internal
|
|
130
|
-
*/
|
|
131
|
-
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
132
|
-
}
|
|
133
12
|
/**
|
|
134
13
|
* @public
|
|
135
14
|
*/
|
|
@@ -145,58 +24,6 @@ export interface CreateSupportCaseRequest {
|
|
|
145
24
|
*/
|
|
146
25
|
export interface CreateSupportCaseResponse {
|
|
147
26
|
}
|
|
148
|
-
/**
|
|
149
|
-
* <p>Invalid input was provided.</p>
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export declare class IllegalArgumentException extends __BaseException {
|
|
153
|
-
readonly name: "IllegalArgumentException";
|
|
154
|
-
readonly $fault: "client";
|
|
155
|
-
Message?: string | undefined;
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* <p>The resource is in an invalid state.</p>
|
|
163
|
-
* @public
|
|
164
|
-
*/
|
|
165
|
-
export declare class InvalidResourceStateException extends __BaseException {
|
|
166
|
-
readonly name: "InvalidResourceStateException";
|
|
167
|
-
readonly $fault: "client";
|
|
168
|
-
Message?: string | undefined;
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* <p>The specified resource does not exist.</p>
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
export declare class NoSuchResourceException extends __BaseException {
|
|
179
|
-
readonly name: "NoSuchResourceException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
Message?: string | undefined;
|
|
182
|
-
/**
|
|
183
|
-
* @internal
|
|
184
|
-
*/
|
|
185
|
-
constructor(opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>);
|
|
186
|
-
}
|
|
187
|
-
/**
|
|
188
|
-
* <p>The specified resource already exists.</p>
|
|
189
|
-
* @public
|
|
190
|
-
*/
|
|
191
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
192
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
193
|
-
readonly $fault: "client";
|
|
194
|
-
Message?: string | undefined;
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
199
|
-
}
|
|
200
27
|
/**
|
|
201
28
|
* @public
|
|
202
29
|
*/
|
|
@@ -235,33 +62,6 @@ export interface DisassociateServiceQuotaTemplateRequest {
|
|
|
235
62
|
*/
|
|
236
63
|
export interface DisassociateServiceQuotaTemplateResponse {
|
|
237
64
|
}
|
|
238
|
-
/**
|
|
239
|
-
* <p>The quota request template is not associated with your organization.</p>
|
|
240
|
-
* @public
|
|
241
|
-
*/
|
|
242
|
-
export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
243
|
-
readonly name: "ServiceQuotaTemplateNotInUseException";
|
|
244
|
-
readonly $fault: "client";
|
|
245
|
-
Message?: string | undefined;
|
|
246
|
-
/**
|
|
247
|
-
* @internal
|
|
248
|
-
*/
|
|
249
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaTemplateNotInUseException, __BaseException>);
|
|
250
|
-
}
|
|
251
|
-
/**
|
|
252
|
-
* @public
|
|
253
|
-
* @enum
|
|
254
|
-
*/
|
|
255
|
-
export declare const ErrorCode: {
|
|
256
|
-
readonly DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
257
|
-
readonly DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR";
|
|
258
|
-
readonly DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR";
|
|
259
|
-
readonly SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR";
|
|
260
|
-
};
|
|
261
|
-
/**
|
|
262
|
-
* @public
|
|
263
|
-
*/
|
|
264
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
265
65
|
/**
|
|
266
66
|
* <p>An error that explains why an action did not succeed.</p>
|
|
267
67
|
* @public
|
|
@@ -323,18 +123,6 @@ export interface QuotaInfo {
|
|
|
323
123
|
*/
|
|
324
124
|
export interface GetAssociationForServiceQuotaTemplateRequest {
|
|
325
125
|
}
|
|
326
|
-
/**
|
|
327
|
-
* @public
|
|
328
|
-
* @enum
|
|
329
|
-
*/
|
|
330
|
-
export declare const ServiceQuotaTemplateAssociationStatus: {
|
|
331
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
332
|
-
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
333
|
-
};
|
|
334
|
-
/**
|
|
335
|
-
* @public
|
|
336
|
-
*/
|
|
337
|
-
export type ServiceQuotaTemplateAssociationStatus = (typeof ServiceQuotaTemplateAssociationStatus)[keyof typeof ServiceQuotaTemplateAssociationStatus];
|
|
338
126
|
/**
|
|
339
127
|
* @public
|
|
340
128
|
*/
|
|
@@ -352,41 +140,6 @@ export interface GetAssociationForServiceQuotaTemplateResponse {
|
|
|
352
140
|
*/
|
|
353
141
|
export interface GetAutoManagementConfigurationRequest {
|
|
354
142
|
}
|
|
355
|
-
/**
|
|
356
|
-
* @public
|
|
357
|
-
* @enum
|
|
358
|
-
*/
|
|
359
|
-
export declare const OptInLevel: {
|
|
360
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
361
|
-
};
|
|
362
|
-
/**
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export type OptInLevel = (typeof OptInLevel)[keyof typeof OptInLevel];
|
|
366
|
-
/**
|
|
367
|
-
* @public
|
|
368
|
-
* @enum
|
|
369
|
-
*/
|
|
370
|
-
export declare const OptInStatus: {
|
|
371
|
-
readonly DISABLED: "DISABLED";
|
|
372
|
-
readonly ENABLED: "ENABLED";
|
|
373
|
-
};
|
|
374
|
-
/**
|
|
375
|
-
* @public
|
|
376
|
-
*/
|
|
377
|
-
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
378
|
-
/**
|
|
379
|
-
* @public
|
|
380
|
-
* @enum
|
|
381
|
-
*/
|
|
382
|
-
export declare const OptInType: {
|
|
383
|
-
readonly NotifyAndAdjust: "NotifyAndAdjust";
|
|
384
|
-
readonly NotifyOnly: "NotifyOnly";
|
|
385
|
-
};
|
|
386
|
-
/**
|
|
387
|
-
* @public
|
|
388
|
-
*/
|
|
389
|
-
export type OptInType = (typeof OptInType)[keyof typeof OptInType];
|
|
390
143
|
/**
|
|
391
144
|
* @public
|
|
392
145
|
*/
|
|
@@ -439,23 +192,6 @@ export interface GetAWSDefaultServiceQuotaRequest {
|
|
|
439
192
|
*/
|
|
440
193
|
QuotaCode: string | undefined;
|
|
441
194
|
}
|
|
442
|
-
/**
|
|
443
|
-
* @public
|
|
444
|
-
* @enum
|
|
445
|
-
*/
|
|
446
|
-
export declare const PeriodUnit: {
|
|
447
|
-
readonly DAY: "DAY";
|
|
448
|
-
readonly HOUR: "HOUR";
|
|
449
|
-
readonly MICROSECOND: "MICROSECOND";
|
|
450
|
-
readonly MILLISECOND: "MILLISECOND";
|
|
451
|
-
readonly MINUTE: "MINUTE";
|
|
452
|
-
readonly SECOND: "SECOND";
|
|
453
|
-
readonly WEEK: "WEEK";
|
|
454
|
-
};
|
|
455
|
-
/**
|
|
456
|
-
* @public
|
|
457
|
-
*/
|
|
458
|
-
export type PeriodUnit = (typeof PeriodUnit)[keyof typeof PeriodUnit];
|
|
459
195
|
/**
|
|
460
196
|
* <p>Information about the quota period.</p>
|
|
461
197
|
* @public
|
|
@@ -472,18 +208,6 @@ export interface QuotaPeriod {
|
|
|
472
208
|
*/
|
|
473
209
|
PeriodUnit?: PeriodUnit | undefined;
|
|
474
210
|
}
|
|
475
|
-
/**
|
|
476
|
-
* @public
|
|
477
|
-
* @enum
|
|
478
|
-
*/
|
|
479
|
-
export declare const QuotaContextScope: {
|
|
480
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
481
|
-
readonly RESOURCE: "RESOURCE";
|
|
482
|
-
};
|
|
483
|
-
/**
|
|
484
|
-
* @public
|
|
485
|
-
*/
|
|
486
|
-
export type QuotaContextScope = (typeof QuotaContextScope)[keyof typeof QuotaContextScope];
|
|
487
211
|
/**
|
|
488
212
|
* <p>A structure that describes the context for a resource-level quota. For resource-level quotas, such as <code>Instances per OpenSearch Service Domain</code>, you can apply the quota value at the resource-level for each OpenSearch Service Domain in your Amazon Web Services account. Together the attributes of this structure help you understand how the quota is implemented by Amazon Web Services and how you can manage it. For quotas such as <code>Amazon OpenSearch Service Domains</code> which can be managed at the account-level for each Amazon Web Services Region, the <code>QuotaContext</code> field is absent. See the attribute descriptions below to further understand how to use them.</p>
|
|
489
213
|
* @public
|
|
@@ -636,23 +360,6 @@ export interface GetRequestedServiceQuotaChangeRequest {
|
|
|
636
360
|
*/
|
|
637
361
|
RequestId: string | undefined;
|
|
638
362
|
}
|
|
639
|
-
/**
|
|
640
|
-
* @public
|
|
641
|
-
* @enum
|
|
642
|
-
*/
|
|
643
|
-
export declare const RequestStatus: {
|
|
644
|
-
readonly APPROVED: "APPROVED";
|
|
645
|
-
readonly CASE_CLOSED: "CASE_CLOSED";
|
|
646
|
-
readonly CASE_OPENED: "CASE_OPENED";
|
|
647
|
-
readonly DENIED: "DENIED";
|
|
648
|
-
readonly INVALID_REQUEST: "INVALID_REQUEST";
|
|
649
|
-
readonly NOT_APPROVED: "NOT_APPROVED";
|
|
650
|
-
readonly PENDING: "PENDING";
|
|
651
|
-
};
|
|
652
|
-
/**
|
|
653
|
-
* @public
|
|
654
|
-
*/
|
|
655
|
-
export type RequestStatus = (typeof RequestStatus)[keyof typeof RequestStatus];
|
|
656
363
|
/**
|
|
657
364
|
* <p>Information about a quota increase request.</p>
|
|
658
365
|
* @public
|
|
@@ -923,19 +630,6 @@ export interface Tag {
|
|
|
923
630
|
*/
|
|
924
631
|
Value: string | undefined;
|
|
925
632
|
}
|
|
926
|
-
/**
|
|
927
|
-
* <p>Invalid input was provided.</p>
|
|
928
|
-
* @public
|
|
929
|
-
*/
|
|
930
|
-
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
931
|
-
readonly name: "InvalidPaginationTokenException";
|
|
932
|
-
readonly $fault: "client";
|
|
933
|
-
Message?: string | undefined;
|
|
934
|
-
/**
|
|
935
|
-
* @internal
|
|
936
|
-
*/
|
|
937
|
-
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
938
|
-
}
|
|
939
633
|
/**
|
|
940
634
|
* @public
|
|
941
635
|
*/
|
|
@@ -1371,20 +1065,6 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateResponse {
|
|
|
1371
1065
|
*/
|
|
1372
1066
|
ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate | undefined;
|
|
1373
1067
|
}
|
|
1374
|
-
/**
|
|
1375
|
-
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
1376
|
-
* the relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
1377
|
-
* @public
|
|
1378
|
-
*/
|
|
1379
|
-
export declare class QuotaExceededException extends __BaseException {
|
|
1380
|
-
readonly name: "QuotaExceededException";
|
|
1381
|
-
readonly $fault: "client";
|
|
1382
|
-
Message?: string | undefined;
|
|
1383
|
-
/**
|
|
1384
|
-
* @internal
|
|
1385
|
-
*/
|
|
1386
|
-
constructor(opts: __ExceptionOptionType<QuotaExceededException, __BaseException>);
|
|
1387
|
-
}
|
|
1388
1068
|
/**
|
|
1389
1069
|
* @public
|
|
1390
1070
|
*/
|
|
@@ -1476,19 +1156,6 @@ export interface StopAutoManagementRequest {
|
|
|
1476
1156
|
*/
|
|
1477
1157
|
export interface StopAutoManagementResponse {
|
|
1478
1158
|
}
|
|
1479
|
-
/**
|
|
1480
|
-
* <p>The specified tag is a reserved word and cannot be used.</p>
|
|
1481
|
-
* @public
|
|
1482
|
-
*/
|
|
1483
|
-
export declare class TagPolicyViolationException extends __BaseException {
|
|
1484
|
-
readonly name: "TagPolicyViolationException";
|
|
1485
|
-
readonly $fault: "client";
|
|
1486
|
-
Message?: string | undefined;
|
|
1487
|
-
/**
|
|
1488
|
-
* @internal
|
|
1489
|
-
*/
|
|
1490
|
-
constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
|
|
1491
|
-
}
|
|
1492
1159
|
/**
|
|
1493
1160
|
* @public
|
|
1494
1161
|
*/
|
|
@@ -1510,21 +1177,6 @@ export interface TagResourceRequest {
|
|
|
1510
1177
|
*/
|
|
1511
1178
|
export interface TagResourceResponse {
|
|
1512
1179
|
}
|
|
1513
|
-
/**
|
|
1514
|
-
* <p>You've exceeded the number of tags allowed for a resource. For more information, see
|
|
1515
|
-
* <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/sq-tagging.html#sq-tagging-restrictions">Tag
|
|
1516
|
-
* restrictions</a> in the <i>Service Quotas User Guide</i>.</p>
|
|
1517
|
-
* @public
|
|
1518
|
-
*/
|
|
1519
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1520
|
-
readonly name: "TooManyTagsException";
|
|
1521
|
-
readonly $fault: "client";
|
|
1522
|
-
Message?: string | undefined;
|
|
1523
|
-
/**
|
|
1524
|
-
* @internal
|
|
1525
|
-
*/
|
|
1526
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1527
|
-
}
|
|
1528
1180
|
/**
|
|
1529
1181
|
* @public
|
|
1530
1182
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ServiceQuotasExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ServiceQuotasServiceException } from "./models/ServiceQuotasServiceException";
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export declare const AppliedLevelEnum: {
|
|
2
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
3
|
+
readonly ALL: "ALL";
|
|
4
|
+
readonly RESOURCE: "RESOURCE";
|
|
5
|
+
};
|
|
6
|
+
export type AppliedLevelEnum =
|
|
7
|
+
(typeof AppliedLevelEnum)[keyof typeof AppliedLevelEnum];
|
|
8
|
+
export declare const ErrorCode: {
|
|
9
|
+
readonly DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
10
|
+
readonly DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR";
|
|
11
|
+
readonly DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR";
|
|
12
|
+
readonly SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR";
|
|
13
|
+
};
|
|
14
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
15
|
+
export declare const ServiceQuotaTemplateAssociationStatus: {
|
|
16
|
+
readonly ASSOCIATED: "ASSOCIATED";
|
|
17
|
+
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
18
|
+
};
|
|
19
|
+
export type ServiceQuotaTemplateAssociationStatus =
|
|
20
|
+
(typeof ServiceQuotaTemplateAssociationStatus)[keyof typeof ServiceQuotaTemplateAssociationStatus];
|
|
21
|
+
export declare const OptInLevel: {
|
|
22
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
23
|
+
};
|
|
24
|
+
export type OptInLevel = (typeof OptInLevel)[keyof typeof OptInLevel];
|
|
25
|
+
export declare const OptInStatus: {
|
|
26
|
+
readonly DISABLED: "DISABLED";
|
|
27
|
+
readonly ENABLED: "ENABLED";
|
|
28
|
+
};
|
|
29
|
+
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
30
|
+
export declare const OptInType: {
|
|
31
|
+
readonly NotifyAndAdjust: "NotifyAndAdjust";
|
|
32
|
+
readonly NotifyOnly: "NotifyOnly";
|
|
33
|
+
};
|
|
34
|
+
export type OptInType = (typeof OptInType)[keyof typeof OptInType];
|
|
35
|
+
export declare const PeriodUnit: {
|
|
36
|
+
readonly DAY: "DAY";
|
|
37
|
+
readonly HOUR: "HOUR";
|
|
38
|
+
readonly MICROSECOND: "MICROSECOND";
|
|
39
|
+
readonly MILLISECOND: "MILLISECOND";
|
|
40
|
+
readonly MINUTE: "MINUTE";
|
|
41
|
+
readonly SECOND: "SECOND";
|
|
42
|
+
readonly WEEK: "WEEK";
|
|
43
|
+
};
|
|
44
|
+
export type PeriodUnit = (typeof PeriodUnit)[keyof typeof PeriodUnit];
|
|
45
|
+
export declare const QuotaContextScope: {
|
|
46
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
47
|
+
readonly RESOURCE: "RESOURCE";
|
|
48
|
+
};
|
|
49
|
+
export type QuotaContextScope =
|
|
50
|
+
(typeof QuotaContextScope)[keyof typeof QuotaContextScope];
|
|
51
|
+
export declare const RequestStatus: {
|
|
52
|
+
readonly APPROVED: "APPROVED";
|
|
53
|
+
readonly CASE_CLOSED: "CASE_CLOSED";
|
|
54
|
+
readonly CASE_OPENED: "CASE_OPENED";
|
|
55
|
+
readonly DENIED: "DENIED";
|
|
56
|
+
readonly INVALID_REQUEST: "INVALID_REQUEST";
|
|
57
|
+
readonly NOT_APPROVED: "NOT_APPROVED";
|
|
58
|
+
readonly PENDING: "PENDING";
|
|
59
|
+
};
|
|
60
|
+
export type RequestStatus = (typeof RequestStatus)[keyof typeof RequestStatus];
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
12
|
+
readonly name: "AWSServiceAccessNotEnabledException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<
|
|
17
|
+
AWSServiceAccessNotEnabledException,
|
|
18
|
+
__BaseException
|
|
19
|
+
>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class DependencyAccessDeniedException extends __BaseException {
|
|
23
|
+
readonly name: "DependencyAccessDeniedException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string | undefined;
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<
|
|
28
|
+
DependencyAccessDeniedException,
|
|
29
|
+
__BaseException
|
|
30
|
+
>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class NoAvailableOrganizationException extends __BaseException {
|
|
34
|
+
readonly name: "NoAvailableOrganizationException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<
|
|
39
|
+
NoAvailableOrganizationException,
|
|
40
|
+
__BaseException
|
|
41
|
+
>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
45
|
+
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
Message?: string | undefined;
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<
|
|
50
|
+
OrganizationNotInAllFeaturesModeException,
|
|
51
|
+
__BaseException
|
|
52
|
+
>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class ServiceException extends __BaseException {
|
|
56
|
+
readonly name: "ServiceException";
|
|
57
|
+
readonly $fault: "server";
|
|
58
|
+
Message?: string | undefined;
|
|
59
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
60
|
+
}
|
|
61
|
+
export declare class TemplatesNotAvailableInRegionException extends __BaseException {
|
|
62
|
+
readonly name: "TemplatesNotAvailableInRegionException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
Message?: string | undefined;
|
|
65
|
+
constructor(
|
|
66
|
+
opts: __ExceptionOptionType<
|
|
67
|
+
TemplatesNotAvailableInRegionException,
|
|
68
|
+
__BaseException
|
|
69
|
+
>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
73
|
+
readonly name: "TooManyRequestsException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
constructor(
|
|
77
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
export declare class IllegalArgumentException extends __BaseException {
|
|
81
|
+
readonly name: "IllegalArgumentException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
Message?: string | undefined;
|
|
84
|
+
constructor(
|
|
85
|
+
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
export declare class InvalidResourceStateException extends __BaseException {
|
|
89
|
+
readonly name: "InvalidResourceStateException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
Message?: string | undefined;
|
|
92
|
+
constructor(
|
|
93
|
+
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
export declare class NoSuchResourceException extends __BaseException {
|
|
97
|
+
readonly name: "NoSuchResourceException";
|
|
98
|
+
readonly $fault: "client";
|
|
99
|
+
Message?: string | undefined;
|
|
100
|
+
constructor(
|
|
101
|
+
opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
105
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
106
|
+
readonly $fault: "client";
|
|
107
|
+
Message?: string | undefined;
|
|
108
|
+
constructor(
|
|
109
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
113
|
+
readonly name: "ServiceQuotaTemplateNotInUseException";
|
|
114
|
+
readonly $fault: "client";
|
|
115
|
+
Message?: string | undefined;
|
|
116
|
+
constructor(
|
|
117
|
+
opts: __ExceptionOptionType<
|
|
118
|
+
ServiceQuotaTemplateNotInUseException,
|
|
119
|
+
__BaseException
|
|
120
|
+
>
|
|
121
|
+
);
|
|
122
|
+
}
|
|
123
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
124
|
+
readonly name: "InvalidPaginationTokenException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
Message?: string | undefined;
|
|
127
|
+
constructor(
|
|
128
|
+
opts: __ExceptionOptionType<
|
|
129
|
+
InvalidPaginationTokenException,
|
|
130
|
+
__BaseException
|
|
131
|
+
>
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
export declare class QuotaExceededException extends __BaseException {
|
|
135
|
+
readonly name: "QuotaExceededException";
|
|
136
|
+
readonly $fault: "client";
|
|
137
|
+
Message?: string | undefined;
|
|
138
|
+
constructor(
|
|
139
|
+
opts: __ExceptionOptionType<QuotaExceededException, __BaseException>
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
export declare class TagPolicyViolationException extends __BaseException {
|
|
143
|
+
readonly name: "TagPolicyViolationException";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
Message?: string | undefined;
|
|
146
|
+
constructor(
|
|
147
|
+
opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
150
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
151
|
+
readonly name: "TooManyTagsException";
|
|
152
|
+
readonly $fault: "client";
|
|
153
|
+
Message?: string | undefined;
|
|
154
|
+
constructor(
|
|
155
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
156
|
+
);
|
|
157
|
+
}
|