@aws-sdk/client-service-quotas 3.934.0 → 3.936.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 +19 -19
- 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,127 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
13
|
-
readonly ALL: "ALL";
|
|
14
|
-
readonly RESOURCE: "RESOURCE";
|
|
15
|
-
};
|
|
16
|
-
export type AppliedLevelEnum =
|
|
17
|
-
(typeof AppliedLevelEnum)[keyof typeof AppliedLevelEnum];
|
|
1
|
+
import {
|
|
2
|
+
AppliedLevelEnum,
|
|
3
|
+
ErrorCode,
|
|
4
|
+
OptInLevel,
|
|
5
|
+
OptInStatus,
|
|
6
|
+
OptInType,
|
|
7
|
+
PeriodUnit,
|
|
8
|
+
QuotaContextScope,
|
|
9
|
+
RequestStatus,
|
|
10
|
+
ServiceQuotaTemplateAssociationStatus,
|
|
11
|
+
} from "./enums";
|
|
18
12
|
export interface AssociateServiceQuotaTemplateRequest {}
|
|
19
13
|
export interface AssociateServiceQuotaTemplateResponse {}
|
|
20
|
-
export declare class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
21
|
-
readonly name: "AWSServiceAccessNotEnabledException";
|
|
22
|
-
readonly $fault: "client";
|
|
23
|
-
Message?: string | undefined;
|
|
24
|
-
constructor(
|
|
25
|
-
opts: __ExceptionOptionType<
|
|
26
|
-
AWSServiceAccessNotEnabledException,
|
|
27
|
-
__BaseException
|
|
28
|
-
>
|
|
29
|
-
);
|
|
30
|
-
}
|
|
31
|
-
export declare class DependencyAccessDeniedException extends __BaseException {
|
|
32
|
-
readonly name: "DependencyAccessDeniedException";
|
|
33
|
-
readonly $fault: "client";
|
|
34
|
-
Message?: string | undefined;
|
|
35
|
-
constructor(
|
|
36
|
-
opts: __ExceptionOptionType<
|
|
37
|
-
DependencyAccessDeniedException,
|
|
38
|
-
__BaseException
|
|
39
|
-
>
|
|
40
|
-
);
|
|
41
|
-
}
|
|
42
|
-
export declare class NoAvailableOrganizationException extends __BaseException {
|
|
43
|
-
readonly name: "NoAvailableOrganizationException";
|
|
44
|
-
readonly $fault: "client";
|
|
45
|
-
Message?: string | undefined;
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<
|
|
48
|
-
NoAvailableOrganizationException,
|
|
49
|
-
__BaseException
|
|
50
|
-
>
|
|
51
|
-
);
|
|
52
|
-
}
|
|
53
|
-
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
54
|
-
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
55
|
-
readonly $fault: "client";
|
|
56
|
-
Message?: string | undefined;
|
|
57
|
-
constructor(
|
|
58
|
-
opts: __ExceptionOptionType<
|
|
59
|
-
OrganizationNotInAllFeaturesModeException,
|
|
60
|
-
__BaseException
|
|
61
|
-
>
|
|
62
|
-
);
|
|
63
|
-
}
|
|
64
|
-
export declare class ServiceException extends __BaseException {
|
|
65
|
-
readonly name: "ServiceException";
|
|
66
|
-
readonly $fault: "server";
|
|
67
|
-
Message?: string | undefined;
|
|
68
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
69
|
-
}
|
|
70
|
-
export declare class TemplatesNotAvailableInRegionException extends __BaseException {
|
|
71
|
-
readonly name: "TemplatesNotAvailableInRegionException";
|
|
72
|
-
readonly $fault: "client";
|
|
73
|
-
Message?: string | undefined;
|
|
74
|
-
constructor(
|
|
75
|
-
opts: __ExceptionOptionType<
|
|
76
|
-
TemplatesNotAvailableInRegionException,
|
|
77
|
-
__BaseException
|
|
78
|
-
>
|
|
79
|
-
);
|
|
80
|
-
}
|
|
81
|
-
export declare class TooManyRequestsException extends __BaseException {
|
|
82
|
-
readonly name: "TooManyRequestsException";
|
|
83
|
-
readonly $fault: "client";
|
|
84
|
-
Message?: string | undefined;
|
|
85
|
-
constructor(
|
|
86
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
87
|
-
);
|
|
88
|
-
}
|
|
89
14
|
export interface CreateSupportCaseRequest {
|
|
90
15
|
RequestId: string | undefined;
|
|
91
16
|
}
|
|
92
17
|
export interface CreateSupportCaseResponse {}
|
|
93
|
-
export declare class IllegalArgumentException extends __BaseException {
|
|
94
|
-
readonly name: "IllegalArgumentException";
|
|
95
|
-
readonly $fault: "client";
|
|
96
|
-
Message?: string | undefined;
|
|
97
|
-
constructor(
|
|
98
|
-
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
|
-
export declare class InvalidResourceStateException extends __BaseException {
|
|
102
|
-
readonly name: "InvalidResourceStateException";
|
|
103
|
-
readonly $fault: "client";
|
|
104
|
-
Message?: string | undefined;
|
|
105
|
-
constructor(
|
|
106
|
-
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
107
|
-
);
|
|
108
|
-
}
|
|
109
|
-
export declare class NoSuchResourceException extends __BaseException {
|
|
110
|
-
readonly name: "NoSuchResourceException";
|
|
111
|
-
readonly $fault: "client";
|
|
112
|
-
Message?: string | undefined;
|
|
113
|
-
constructor(
|
|
114
|
-
opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>
|
|
115
|
-
);
|
|
116
|
-
}
|
|
117
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
118
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
119
|
-
readonly $fault: "client";
|
|
120
|
-
Message?: string | undefined;
|
|
121
|
-
constructor(
|
|
122
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
123
|
-
);
|
|
124
|
-
}
|
|
125
18
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
126
19
|
ServiceCode: string | undefined;
|
|
127
20
|
QuotaCode: string | undefined;
|
|
@@ -130,24 +23,6 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
|
130
23
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateResponse {}
|
|
131
24
|
export interface DisassociateServiceQuotaTemplateRequest {}
|
|
132
25
|
export interface DisassociateServiceQuotaTemplateResponse {}
|
|
133
|
-
export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
134
|
-
readonly name: "ServiceQuotaTemplateNotInUseException";
|
|
135
|
-
readonly $fault: "client";
|
|
136
|
-
Message?: string | undefined;
|
|
137
|
-
constructor(
|
|
138
|
-
opts: __ExceptionOptionType<
|
|
139
|
-
ServiceQuotaTemplateNotInUseException,
|
|
140
|
-
__BaseException
|
|
141
|
-
>
|
|
142
|
-
);
|
|
143
|
-
}
|
|
144
|
-
export declare const ErrorCode: {
|
|
145
|
-
readonly DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
146
|
-
readonly DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR";
|
|
147
|
-
readonly DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR";
|
|
148
|
-
readonly SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR";
|
|
149
|
-
};
|
|
150
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
151
26
|
export interface ErrorReason {
|
|
152
27
|
ErrorCode?: ErrorCode | undefined;
|
|
153
28
|
ErrorMessage?: string | undefined;
|
|
@@ -157,32 +32,12 @@ export interface QuotaInfo {
|
|
|
157
32
|
QuotaName?: string | undefined;
|
|
158
33
|
}
|
|
159
34
|
export interface GetAssociationForServiceQuotaTemplateRequest {}
|
|
160
|
-
export declare const ServiceQuotaTemplateAssociationStatus: {
|
|
161
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
162
|
-
readonly DISASSOCIATED: "DISASSOCIATED";
|
|
163
|
-
};
|
|
164
|
-
export type ServiceQuotaTemplateAssociationStatus =
|
|
165
|
-
(typeof ServiceQuotaTemplateAssociationStatus)[keyof typeof ServiceQuotaTemplateAssociationStatus];
|
|
166
35
|
export interface GetAssociationForServiceQuotaTemplateResponse {
|
|
167
36
|
ServiceQuotaTemplateAssociationStatus?:
|
|
168
37
|
| ServiceQuotaTemplateAssociationStatus
|
|
169
38
|
| undefined;
|
|
170
39
|
}
|
|
171
40
|
export interface GetAutoManagementConfigurationRequest {}
|
|
172
|
-
export declare const OptInLevel: {
|
|
173
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
174
|
-
};
|
|
175
|
-
export type OptInLevel = (typeof OptInLevel)[keyof typeof OptInLevel];
|
|
176
|
-
export declare const OptInStatus: {
|
|
177
|
-
readonly DISABLED: "DISABLED";
|
|
178
|
-
readonly ENABLED: "ENABLED";
|
|
179
|
-
};
|
|
180
|
-
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
181
|
-
export declare const OptInType: {
|
|
182
|
-
readonly NotifyAndAdjust: "NotifyAndAdjust";
|
|
183
|
-
readonly NotifyOnly: "NotifyOnly";
|
|
184
|
-
};
|
|
185
|
-
export type OptInType = (typeof OptInType)[keyof typeof OptInType];
|
|
186
41
|
export interface GetAutoManagementConfigurationResponse {
|
|
187
42
|
OptInLevel?: OptInLevel | undefined;
|
|
188
43
|
OptInType?: OptInType | undefined;
|
|
@@ -194,26 +49,10 @@ export interface GetAWSDefaultServiceQuotaRequest {
|
|
|
194
49
|
ServiceCode: string | undefined;
|
|
195
50
|
QuotaCode: string | undefined;
|
|
196
51
|
}
|
|
197
|
-
export declare const PeriodUnit: {
|
|
198
|
-
readonly DAY: "DAY";
|
|
199
|
-
readonly HOUR: "HOUR";
|
|
200
|
-
readonly MICROSECOND: "MICROSECOND";
|
|
201
|
-
readonly MILLISECOND: "MILLISECOND";
|
|
202
|
-
readonly MINUTE: "MINUTE";
|
|
203
|
-
readonly SECOND: "SECOND";
|
|
204
|
-
readonly WEEK: "WEEK";
|
|
205
|
-
};
|
|
206
|
-
export type PeriodUnit = (typeof PeriodUnit)[keyof typeof PeriodUnit];
|
|
207
52
|
export interface QuotaPeriod {
|
|
208
53
|
PeriodValue?: number | undefined;
|
|
209
54
|
PeriodUnit?: PeriodUnit | undefined;
|
|
210
55
|
}
|
|
211
|
-
export declare const QuotaContextScope: {
|
|
212
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
213
|
-
readonly RESOURCE: "RESOURCE";
|
|
214
|
-
};
|
|
215
|
-
export type QuotaContextScope =
|
|
216
|
-
(typeof QuotaContextScope)[keyof typeof QuotaContextScope];
|
|
217
56
|
export interface QuotaContextInfo {
|
|
218
57
|
ContextScope?: QuotaContextScope | undefined;
|
|
219
58
|
ContextScopeType?: string | undefined;
|
|
@@ -248,16 +87,6 @@ export interface GetAWSDefaultServiceQuotaResponse {
|
|
|
248
87
|
export interface GetRequestedServiceQuotaChangeRequest {
|
|
249
88
|
RequestId: string | undefined;
|
|
250
89
|
}
|
|
251
|
-
export declare const RequestStatus: {
|
|
252
|
-
readonly APPROVED: "APPROVED";
|
|
253
|
-
readonly CASE_CLOSED: "CASE_CLOSED";
|
|
254
|
-
readonly CASE_OPENED: "CASE_OPENED";
|
|
255
|
-
readonly DENIED: "DENIED";
|
|
256
|
-
readonly INVALID_REQUEST: "INVALID_REQUEST";
|
|
257
|
-
readonly NOT_APPROVED: "NOT_APPROVED";
|
|
258
|
-
readonly PENDING: "PENDING";
|
|
259
|
-
};
|
|
260
|
-
export type RequestStatus = (typeof RequestStatus)[keyof typeof RequestStatus];
|
|
261
90
|
export interface RequestedServiceQuotaChange {
|
|
262
91
|
Id?: string | undefined;
|
|
263
92
|
CaseId?: string | undefined;
|
|
@@ -311,17 +140,6 @@ export interface Tag {
|
|
|
311
140
|
Key: string | undefined;
|
|
312
141
|
Value: string | undefined;
|
|
313
142
|
}
|
|
314
|
-
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
315
|
-
readonly name: "InvalidPaginationTokenException";
|
|
316
|
-
readonly $fault: "client";
|
|
317
|
-
Message?: string | undefined;
|
|
318
|
-
constructor(
|
|
319
|
-
opts: __ExceptionOptionType<
|
|
320
|
-
InvalidPaginationTokenException,
|
|
321
|
-
__BaseException
|
|
322
|
-
>
|
|
323
|
-
);
|
|
324
|
-
}
|
|
325
143
|
export interface ListAWSDefaultServiceQuotasRequest {
|
|
326
144
|
ServiceCode: string | undefined;
|
|
327
145
|
NextToken?: string | undefined;
|
|
@@ -406,14 +224,6 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateResponse {
|
|
|
406
224
|
| ServiceQuotaIncreaseRequestInTemplate
|
|
407
225
|
| undefined;
|
|
408
226
|
}
|
|
409
|
-
export declare class QuotaExceededException extends __BaseException {
|
|
410
|
-
readonly name: "QuotaExceededException";
|
|
411
|
-
readonly $fault: "client";
|
|
412
|
-
Message?: string | undefined;
|
|
413
|
-
constructor(
|
|
414
|
-
opts: __ExceptionOptionType<QuotaExceededException, __BaseException>
|
|
415
|
-
);
|
|
416
|
-
}
|
|
417
227
|
export interface RequestServiceQuotaIncreaseRequest {
|
|
418
228
|
ServiceCode: string | undefined;
|
|
419
229
|
QuotaCode: string | undefined;
|
|
@@ -433,27 +243,11 @@ export interface StartAutoManagementRequest {
|
|
|
433
243
|
export interface StartAutoManagementResponse {}
|
|
434
244
|
export interface StopAutoManagementRequest {}
|
|
435
245
|
export interface StopAutoManagementResponse {}
|
|
436
|
-
export declare class TagPolicyViolationException extends __BaseException {
|
|
437
|
-
readonly name: "TagPolicyViolationException";
|
|
438
|
-
readonly $fault: "client";
|
|
439
|
-
Message?: string | undefined;
|
|
440
|
-
constructor(
|
|
441
|
-
opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
|
|
442
|
-
);
|
|
443
|
-
}
|
|
444
246
|
export interface TagResourceRequest {
|
|
445
247
|
ResourceARN: string | undefined;
|
|
446
248
|
Tags: Tag[] | undefined;
|
|
447
249
|
}
|
|
448
250
|
export interface TagResourceResponse {}
|
|
449
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
450
|
-
readonly name: "TooManyTagsException";
|
|
451
|
-
readonly $fault: "client";
|
|
452
|
-
Message?: string | undefined;
|
|
453
|
-
constructor(
|
|
454
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
455
|
-
);
|
|
456
|
-
}
|
|
457
251
|
export interface UntagResourceRequest {
|
|
458
252
|
ResourceARN: string | undefined;
|
|
459
253
|
TagKeys: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-quotas",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-service-quotas",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|