@aws-sdk/client-service-quotas 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/ServiceQuotas.d.ts +86 -133
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSupportCaseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAutoManagementConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetQuotaUtilizationReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartAutoManagementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartQuotaUtilizationReportCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StopAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +16 -67
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopAutoManagementRequest,
|
|
4
|
-
StopAutoManagementResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopAutoManagementRequest, StopAutoManagementResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopAutoManagementCommandInput
|
|
8
|
-
extends StopAutoManagementRequest {}
|
|
4
|
+
export interface StopAutoManagementCommandInput extends StopAutoManagementRequest {}
|
|
9
5
|
export interface StopAutoManagementCommandOutput
|
|
10
|
-
extends StopAutoManagementResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StopAutoManagementResponse, __MetadataBearer {}
|
|
12
7
|
declare const StopAutoManagementCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StopAutoManagementCommandInput
|
|
9
|
+
input: StopAutoManagementCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StopAutoManagementCommandInput,
|
|
17
12
|
StopAutoManagementCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateAutoManagementRequest,
|
|
4
|
-
UpdateAutoManagementResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateAutoManagementRequest, UpdateAutoManagementResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAutoManagementCommandInput
|
|
8
|
-
extends UpdateAutoManagementRequest {}
|
|
4
|
+
export interface UpdateAutoManagementCommandInput extends UpdateAutoManagementRequest {}
|
|
9
5
|
export interface UpdateAutoManagementCommandOutput
|
|
10
|
-
extends UpdateAutoManagementResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateAutoManagementResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateAutoManagementCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateAutoManagementCommandInput
|
|
9
|
+
input: UpdateAutoManagementCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateAutoManagementCommandInput,
|
|
17
12
|
UpdateAutoManagementCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ServiceQuotasExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const AppliedLevelEnum: {
|
|
|
3
3
|
readonly ALL: "ALL";
|
|
4
4
|
readonly RESOURCE: "RESOURCE";
|
|
5
5
|
};
|
|
6
|
-
export type AppliedLevelEnum =
|
|
7
|
-
(typeof AppliedLevelEnum)[keyof typeof AppliedLevelEnum];
|
|
6
|
+
export type AppliedLevelEnum = (typeof AppliedLevelEnum)[keyof typeof AppliedLevelEnum];
|
|
8
7
|
export declare const ErrorCode: {
|
|
9
8
|
readonly DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
10
9
|
readonly DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR";
|
|
@@ -46,8 +45,7 @@ export declare const QuotaContextScope: {
|
|
|
46
45
|
readonly ACCOUNT: "ACCOUNT";
|
|
47
46
|
readonly RESOURCE: "RESOURCE";
|
|
48
47
|
};
|
|
49
|
-
export type QuotaContextScope =
|
|
50
|
-
(typeof QuotaContextScope)[keyof typeof QuotaContextScope];
|
|
48
|
+
export type QuotaContextScope = (typeof QuotaContextScope)[keyof typeof QuotaContextScope];
|
|
51
49
|
export declare const ReportStatus: {
|
|
52
50
|
readonly COMPLETED: "COMPLETED";
|
|
53
51
|
readonly FAILED: "FAILED";
|
|
@@ -4,52 +4,32 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
12
10
|
readonly name: "AWSServiceAccessNotEnabledException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<
|
|
17
|
-
AWSServiceAccessNotEnabledException,
|
|
18
|
-
__BaseException
|
|
19
|
-
>
|
|
20
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AWSServiceAccessNotEnabledException, __BaseException>);
|
|
21
14
|
}
|
|
22
15
|
export declare class DependencyAccessDeniedException extends __BaseException {
|
|
23
16
|
readonly name: "DependencyAccessDeniedException";
|
|
24
17
|
readonly $fault: "client";
|
|
25
18
|
Message?: string | undefined;
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<
|
|
28
|
-
DependencyAccessDeniedException,
|
|
29
|
-
__BaseException
|
|
30
|
-
>
|
|
31
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<DependencyAccessDeniedException, __BaseException>);
|
|
32
20
|
}
|
|
33
21
|
export declare class NoAvailableOrganizationException extends __BaseException {
|
|
34
22
|
readonly name: "NoAvailableOrganizationException";
|
|
35
23
|
readonly $fault: "client";
|
|
36
24
|
Message?: string | undefined;
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<
|
|
39
|
-
NoAvailableOrganizationException,
|
|
40
|
-
__BaseException
|
|
41
|
-
>
|
|
42
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<NoAvailableOrganizationException, __BaseException>);
|
|
43
26
|
}
|
|
44
27
|
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
45
28
|
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
46
29
|
readonly $fault: "client";
|
|
47
30
|
Message?: string | undefined;
|
|
48
31
|
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<
|
|
50
|
-
OrganizationNotInAllFeaturesModeException,
|
|
51
|
-
__BaseException
|
|
52
|
-
>
|
|
32
|
+
opts: __ExceptionOptionType<OrganizationNotInAllFeaturesModeException, __BaseException>,
|
|
53
33
|
);
|
|
54
34
|
}
|
|
55
35
|
export declare class ServiceException extends __BaseException {
|
|
@@ -62,96 +42,65 @@ export declare class TemplatesNotAvailableInRegionException extends __BaseExcept
|
|
|
62
42
|
readonly name: "TemplatesNotAvailableInRegionException";
|
|
63
43
|
readonly $fault: "client";
|
|
64
44
|
Message?: string | undefined;
|
|
65
|
-
constructor(
|
|
66
|
-
opts: __ExceptionOptionType<
|
|
67
|
-
TemplatesNotAvailableInRegionException,
|
|
68
|
-
__BaseException
|
|
69
|
-
>
|
|
70
|
-
);
|
|
45
|
+
constructor(opts: __ExceptionOptionType<TemplatesNotAvailableInRegionException, __BaseException>);
|
|
71
46
|
}
|
|
72
47
|
export declare class TooManyRequestsException extends __BaseException {
|
|
73
48
|
readonly name: "TooManyRequestsException";
|
|
74
49
|
readonly $fault: "client";
|
|
75
50
|
Message?: string | undefined;
|
|
76
|
-
constructor(
|
|
77
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
78
|
-
);
|
|
51
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
79
52
|
}
|
|
80
53
|
export declare class IllegalArgumentException extends __BaseException {
|
|
81
54
|
readonly name: "IllegalArgumentException";
|
|
82
55
|
readonly $fault: "client";
|
|
83
56
|
Message?: string | undefined;
|
|
84
|
-
constructor(
|
|
85
|
-
opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
|
|
86
|
-
);
|
|
57
|
+
constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
|
|
87
58
|
}
|
|
88
59
|
export declare class InvalidResourceStateException extends __BaseException {
|
|
89
60
|
readonly name: "InvalidResourceStateException";
|
|
90
61
|
readonly $fault: "client";
|
|
91
62
|
Message?: string | undefined;
|
|
92
|
-
constructor(
|
|
93
|
-
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
94
|
-
);
|
|
63
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
|
|
95
64
|
}
|
|
96
65
|
export declare class NoSuchResourceException extends __BaseException {
|
|
97
66
|
readonly name: "NoSuchResourceException";
|
|
98
67
|
readonly $fault: "client";
|
|
99
68
|
Message?: string | undefined;
|
|
100
|
-
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>
|
|
102
|
-
);
|
|
69
|
+
constructor(opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>);
|
|
103
70
|
}
|
|
104
71
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
105
72
|
readonly name: "ResourceAlreadyExistsException";
|
|
106
73
|
readonly $fault: "client";
|
|
107
74
|
Message?: string | undefined;
|
|
108
|
-
constructor(
|
|
109
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
110
|
-
);
|
|
75
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
111
76
|
}
|
|
112
77
|
export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
113
78
|
readonly name: "ServiceQuotaTemplateNotInUseException";
|
|
114
79
|
readonly $fault: "client";
|
|
115
80
|
Message?: string | undefined;
|
|
116
|
-
constructor(
|
|
117
|
-
opts: __ExceptionOptionType<
|
|
118
|
-
ServiceQuotaTemplateNotInUseException,
|
|
119
|
-
__BaseException
|
|
120
|
-
>
|
|
121
|
-
);
|
|
81
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaTemplateNotInUseException, __BaseException>);
|
|
122
82
|
}
|
|
123
83
|
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
124
84
|
readonly name: "InvalidPaginationTokenException";
|
|
125
85
|
readonly $fault: "client";
|
|
126
86
|
Message?: string | undefined;
|
|
127
|
-
constructor(
|
|
128
|
-
opts: __ExceptionOptionType<
|
|
129
|
-
InvalidPaginationTokenException,
|
|
130
|
-
__BaseException
|
|
131
|
-
>
|
|
132
|
-
);
|
|
87
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
133
88
|
}
|
|
134
89
|
export declare class QuotaExceededException extends __BaseException {
|
|
135
90
|
readonly name: "QuotaExceededException";
|
|
136
91
|
readonly $fault: "client";
|
|
137
92
|
Message?: string | undefined;
|
|
138
|
-
constructor(
|
|
139
|
-
opts: __ExceptionOptionType<QuotaExceededException, __BaseException>
|
|
140
|
-
);
|
|
93
|
+
constructor(opts: __ExceptionOptionType<QuotaExceededException, __BaseException>);
|
|
141
94
|
}
|
|
142
95
|
export declare class TagPolicyViolationException extends __BaseException {
|
|
143
96
|
readonly name: "TagPolicyViolationException";
|
|
144
97
|
readonly $fault: "client";
|
|
145
98
|
Message?: string | undefined;
|
|
146
|
-
constructor(
|
|
147
|
-
opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
|
|
148
|
-
);
|
|
99
|
+
constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
|
|
149
100
|
}
|
|
150
101
|
export declare class TooManyTagsException extends __BaseException {
|
|
151
102
|
readonly name: "TooManyTagsException";
|
|
152
103
|
readonly $fault: "client";
|
|
153
104
|
Message?: string | undefined;
|
|
154
|
-
constructor(
|
|
155
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
156
|
-
);
|
|
105
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
157
106
|
}
|
|
@@ -35,9 +35,7 @@ export interface QuotaInfo {
|
|
|
35
35
|
}
|
|
36
36
|
export interface GetAssociationForServiceQuotaTemplateRequest {}
|
|
37
37
|
export interface GetAssociationForServiceQuotaTemplateResponse {
|
|
38
|
-
ServiceQuotaTemplateAssociationStatus?:
|
|
39
|
-
| ServiceQuotaTemplateAssociationStatus
|
|
40
|
-
| undefined;
|
|
38
|
+
ServiceQuotaTemplateAssociationStatus?: ServiceQuotaTemplateAssociationStatus | undefined;
|
|
41
39
|
}
|
|
42
40
|
export interface GetAutoManagementConfigurationRequest {}
|
|
43
41
|
export interface GetAutoManagementConfigurationResponse {
|
|
@@ -161,9 +159,7 @@ export interface ServiceQuotaIncreaseRequestInTemplate {
|
|
|
161
159
|
GlobalQuota?: boolean | undefined;
|
|
162
160
|
}
|
|
163
161
|
export interface GetServiceQuotaIncreaseRequestFromTemplateResponse {
|
|
164
|
-
ServiceQuotaIncreaseRequestInTemplate?:
|
|
165
|
-
| ServiceQuotaIncreaseRequestInTemplate
|
|
166
|
-
| undefined;
|
|
162
|
+
ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate | undefined;
|
|
167
163
|
}
|
|
168
164
|
export interface Tag {
|
|
169
165
|
Key: string | undefined;
|
|
@@ -208,9 +204,7 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateRequest {
|
|
|
208
204
|
MaxResults?: number | undefined;
|
|
209
205
|
}
|
|
210
206
|
export interface ListServiceQuotaIncreaseRequestsInTemplateResponse {
|
|
211
|
-
ServiceQuotaIncreaseRequestInTemplateList?:
|
|
212
|
-
| ServiceQuotaIncreaseRequestInTemplate[]
|
|
213
|
-
| undefined;
|
|
207
|
+
ServiceQuotaIncreaseRequestInTemplateList?: ServiceQuotaIncreaseRequestInTemplate[] | undefined;
|
|
214
208
|
NextToken?: string | undefined;
|
|
215
209
|
}
|
|
216
210
|
export interface ListServiceQuotasRequest {
|
|
@@ -249,9 +243,7 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateRequest {
|
|
|
249
243
|
DesiredValue: number | undefined;
|
|
250
244
|
}
|
|
251
245
|
export interface PutServiceQuotaIncreaseRequestIntoTemplateResponse {
|
|
252
|
-
ServiceQuotaIncreaseRequestInTemplate?:
|
|
253
|
-
| ServiceQuotaIncreaseRequestInTemplate
|
|
254
|
-
| undefined;
|
|
246
|
+
ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate | undefined;
|
|
255
247
|
}
|
|
256
248
|
export interface RequestServiceQuotaIncreaseRequest {
|
|
257
249
|
ServiceCode: string | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ServiceQuotasClient } from "../ServiceQuotasClient";
|
|
3
|
-
export interface ServiceQuotasPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ServiceQuotasPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ServiceQuotasClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServiceQuotasHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var ServiceQuotasServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var AWSServiceAccessNotEnabledException$: StaticErrorSchema;
|