@aws-sdk/client-service-quotas 3.296.0 → 3.297.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-types/ServiceQuotas.d.ts +20 -0
- package/dist-types/ServiceQuotasClient.d.ts +24 -4
- package/dist-types/commands/AssociateServiceQuotaTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateServiceQuotaTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetAWSDefaultServiceQuotaCommand.d.ts +16 -0
- package/dist-types/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +16 -0
- package/dist-types/commands/GetRequestedServiceQuotaChangeCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceQuotaCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListAWSDefaultServiceQuotasCommand.d.ts +16 -0
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +16 -0
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListServiceQuotasCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +16 -0
- package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/ServiceQuotasServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +151 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +3 -0
- package/dist-types/pagination/ListServiceQuotasPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -20,12 +20,14 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
20
20
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { ServiceQuotasClient } from "./ServiceQuotasClient";
|
|
22
22
|
/**
|
|
23
|
+
* @public
|
|
23
24
|
* <p>With Service Quotas, you can view and manage your quotas easily as your AWS workloads
|
|
24
25
|
* grow. Quotas, also referred to as limits, are the maximum number of resources that you can
|
|
25
26
|
* create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>.</p>
|
|
26
27
|
*/
|
|
27
28
|
export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
28
29
|
/**
|
|
30
|
+
* @public
|
|
29
31
|
* <p>Associates your quota request template with your organization. When a new account is
|
|
30
32
|
* created in your organization, the quota increase requests in the template are automatically
|
|
31
33
|
* applied to the account. You can add a quota increase request for any adjustable quota to your
|
|
@@ -35,6 +37,7 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
35
37
|
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
36
38
|
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
37
39
|
/**
|
|
40
|
+
* @public
|
|
38
41
|
* <p>Deletes the quota increase request for the specified quota from your quota request
|
|
39
42
|
* template.</p>
|
|
40
43
|
*/
|
|
@@ -42,6 +45,7 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
42
45
|
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
43
46
|
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
44
47
|
/**
|
|
48
|
+
* @public
|
|
45
49
|
* <p>Disables your quota request template. After a template is disabled, the quota increase
|
|
46
50
|
* requests in the template are not applied to new accounts in your organization. Disabling a
|
|
47
51
|
* quota request template does not apply its quota increase requests.</p>
|
|
@@ -50,12 +54,14 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
50
54
|
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
51
55
|
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
52
56
|
/**
|
|
57
|
+
* @public
|
|
53
58
|
* <p>Retrieves the status of the association for the quota request template.</p>
|
|
54
59
|
*/
|
|
55
60
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
56
61
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
57
62
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
58
63
|
/**
|
|
64
|
+
* @public
|
|
59
65
|
* <p>Retrieves the default value for the specified quota. The default value does not reflect
|
|
60
66
|
* any quota increases.</p>
|
|
61
67
|
*/
|
|
@@ -63,12 +69,14 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
63
69
|
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
64
70
|
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
65
71
|
/**
|
|
72
|
+
* @public
|
|
66
73
|
* <p>Retrieves information about the specified quota increase request.</p>
|
|
67
74
|
*/
|
|
68
75
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options?: __HttpHandlerOptions): Promise<GetRequestedServiceQuotaChangeCommandOutput>;
|
|
69
76
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
70
77
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
71
78
|
/**
|
|
79
|
+
* @public
|
|
72
80
|
* <p>Retrieves the applied quota value for the specified quota. For some quotas, only the
|
|
73
81
|
* default values are available. If the applied quota value is not available for a quota, the
|
|
74
82
|
* quota is not retrieved.</p>
|
|
@@ -77,6 +85,7 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
77
85
|
getServiceQuota(args: GetServiceQuotaCommandInput, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
78
86
|
getServiceQuota(args: GetServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
79
87
|
/**
|
|
88
|
+
* @public
|
|
80
89
|
* <p>Retrieves information about the specified quota increase request in your quota request
|
|
81
90
|
* template.</p>
|
|
82
91
|
*/
|
|
@@ -84,6 +93,7 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
84
93
|
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
85
94
|
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
86
95
|
/**
|
|
96
|
+
* @public
|
|
87
97
|
* <p>Lists the default values for the quotas for the specified AWS service. A default value
|
|
88
98
|
* does not reflect any quota increases.</p>
|
|
89
99
|
*/
|
|
@@ -91,24 +101,28 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
91
101
|
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
92
102
|
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
93
103
|
/**
|
|
104
|
+
* @public
|
|
94
105
|
* <p>Retrieves the quota increase requests for the specified service.</p>
|
|
95
106
|
*/
|
|
96
107
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
97
108
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
98
109
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
99
110
|
/**
|
|
111
|
+
* @public
|
|
100
112
|
* <p>Retrieves the quota increase requests for the specified quota.</p>
|
|
101
113
|
*/
|
|
102
114
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
|
|
103
115
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
104
116
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
105
117
|
/**
|
|
118
|
+
* @public
|
|
106
119
|
* <p>Lists the quota increase requests in the specified quota request template.</p>
|
|
107
120
|
*/
|
|
108
121
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
109
122
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
110
123
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
111
124
|
/**
|
|
125
|
+
* @public
|
|
112
126
|
* <p>Lists the applied quota values for the specified AWS service. For some quotas, only the
|
|
113
127
|
* default values are available. If the applied quota value is not available for a quota, the
|
|
114
128
|
* quota is not retrieved.</p>
|
|
@@ -117,30 +131,35 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
117
131
|
listServiceQuotas(args: ListServiceQuotasCommandInput, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
118
132
|
listServiceQuotas(args: ListServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
119
133
|
/**
|
|
134
|
+
* @public
|
|
120
135
|
* <p>Lists the names and codes for the services integrated with Service Quotas.</p>
|
|
121
136
|
*/
|
|
122
137
|
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
123
138
|
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
124
139
|
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
125
140
|
/**
|
|
141
|
+
* @public
|
|
126
142
|
* <p>Returns a list of the tags assigned to the specified applied quota.</p>
|
|
127
143
|
*/
|
|
128
144
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
129
145
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
130
146
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
131
147
|
/**
|
|
148
|
+
* @public
|
|
132
149
|
* <p>Adds a quota increase request to your quota request template.</p>
|
|
133
150
|
*/
|
|
134
151
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options?: __HttpHandlerOptions): Promise<PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput>;
|
|
135
152
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
136
153
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
137
154
|
/**
|
|
155
|
+
* @public
|
|
138
156
|
* <p>Submits a quota increase request for the specified quota.</p>
|
|
139
157
|
*/
|
|
140
158
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options?: __HttpHandlerOptions): Promise<RequestServiceQuotaIncreaseCommandOutput>;
|
|
141
159
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
142
160
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
143
161
|
/**
|
|
162
|
+
* @public
|
|
144
163
|
* <p>Adds tags to the specified applied quota. You can include one or more tags to add to the
|
|
145
164
|
* quota.</p>
|
|
146
165
|
*/
|
|
@@ -148,6 +167,7 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
148
167
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
149
168
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
150
169
|
/**
|
|
170
|
+
* @public
|
|
151
171
|
* <p>Removes tags from the specified applied quota. You can specify one or more tags to
|
|
152
172
|
* remove.</p>
|
|
153
173
|
*/
|
|
@@ -27,15 +27,24 @@ import { RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCom
|
|
|
27
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
29
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
30
33
|
export type ServiceInputTypes = AssociateServiceQuotaTemplateCommandInput | DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput | DisassociateServiceQuotaTemplateCommandInput | GetAWSDefaultServiceQuotaCommandInput | GetAssociationForServiceQuotaTemplateCommandInput | GetRequestedServiceQuotaChangeCommandInput | GetServiceQuotaCommandInput | GetServiceQuotaIncreaseRequestFromTemplateCommandInput | ListAWSDefaultServiceQuotasCommandInput | ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput | ListRequestedServiceQuotaChangeHistoryCommandInput | ListServiceQuotaIncreaseRequestsInTemplateCommandInput | ListServiceQuotasCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutServiceQuotaIncreaseRequestIntoTemplateCommandInput | RequestServiceQuotaIncreaseCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
31
37
|
export type ServiceOutputTypes = AssociateServiceQuotaTemplateCommandOutput | DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput | DisassociateServiceQuotaTemplateCommandOutput | GetAWSDefaultServiceQuotaCommandOutput | GetAssociationForServiceQuotaTemplateCommandOutput | GetRequestedServiceQuotaChangeCommandOutput | GetServiceQuotaCommandOutput | GetServiceQuotaIncreaseRequestFromTemplateCommandOutput | ListAWSDefaultServiceQuotasCommandOutput | ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput | ListRequestedServiceQuotaChangeHistoryCommandOutput | ListServiceQuotaIncreaseRequestsInTemplateCommandOutput | ListServiceQuotasCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput | RequestServiceQuotaIncreaseCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
38
|
+
/**
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
32
41
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
33
42
|
/**
|
|
34
43
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
35
44
|
*/
|
|
36
45
|
requestHandler?: __HttpHandler;
|
|
37
46
|
/**
|
|
38
|
-
* A constructor for a class implementing the {@link
|
|
47
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
39
48
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
40
49
|
* @internal
|
|
41
50
|
*/
|
|
@@ -125,23 +134,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
125
134
|
*/
|
|
126
135
|
logger?: __Logger;
|
|
127
136
|
/**
|
|
128
|
-
* The {@link
|
|
137
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
129
138
|
*/
|
|
130
139
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
131
140
|
}
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
132
144
|
type ServiceQuotasClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
133
145
|
/**
|
|
134
|
-
*
|
|
146
|
+
* @public
|
|
147
|
+
*
|
|
148
|
+
* The configuration interface of ServiceQuotasClient class constructor that set the region, credentials and other options.
|
|
135
149
|
*/
|
|
136
150
|
export interface ServiceQuotasClientConfig extends ServiceQuotasClientConfigType {
|
|
137
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
138
155
|
type ServiceQuotasClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
139
156
|
/**
|
|
140
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The resolved configuration interface of ServiceQuotasClient class. This is resolved and normalized from the {@link ServiceQuotasClientConfig | constructor configuration interface}.
|
|
141
160
|
*/
|
|
142
161
|
export interface ServiceQuotasClientResolvedConfig extends ServiceQuotasClientResolvedConfigType {
|
|
143
162
|
}
|
|
144
163
|
/**
|
|
164
|
+
* @public
|
|
145
165
|
* <p>With Service Quotas, you can view and manage your quotas easily as your AWS workloads
|
|
146
166
|
* grow. Quotas, also referred to as limits, are the maximum number of resources that you can
|
|
147
167
|
* create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>.</p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AssociateServiceQuotaTemplateRequest, AssociateServiceQuotaTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateServiceQuotaTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateServiceQuotaTemplateCommandInput extends AssociateServiceQuotaTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateServiceQuotaTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateServiceQuotaTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates your quota request template with your organization. When a new account is
|
|
18
23
|
* created in your organization, the quota increase requests in the template are automatically
|
|
19
24
|
* applied to the account. You can add a quota increase request for any adjustable quota to your
|
|
@@ -28,6 +33,8 @@ export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateSer
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param AssociateServiceQuotaTemplateCommandInput - {@link AssociateServiceQuotaTemplateCommandInput}
|
|
37
|
+
* @returns {@link AssociateServiceQuotaTemplateCommandOutput}
|
|
31
38
|
* @see {@link AssociateServiceQuotaTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link AssociateServiceQuotaTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateSer
|
|
|
63
70
|
export declare class AssociateServiceQuotaTemplateCommand extends $Command<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
64
71
|
readonly input: AssociateServiceQuotaTemplateCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: AssociateServiceQuotaTemplateCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteServiceQuotaIncreaseRequestFromTemplateRequest, DeleteServiceQuotaIncreaseRequestFromTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput extends DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput extends DeleteServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the quota increase request for the specified quota from your quota request
|
|
18
23
|
* template.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput exte
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput - {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput}
|
|
35
|
+
* @returns {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput}
|
|
29
36
|
* @see {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput exte
|
|
|
64
71
|
export declare class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Command<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
65
72
|
readonly input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DisassociateServiceQuotaTemplateRequest, DisassociateServiceQuotaTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateServiceQuotaTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateServiceQuotaTemplateCommandInput extends DisassociateServiceQuotaTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateServiceQuotaTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateServiceQuotaTemplateCommandOutput extends DisassociateServiceQuotaTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables your quota request template. After a template is disabled, the quota increase
|
|
18
23
|
* requests in the template are not applied to new accounts in your organization. Disabling a
|
|
19
24
|
* quota request template does not apply its quota increase requests.</p>
|
|
@@ -27,6 +32,8 @@ export interface DisassociateServiceQuotaTemplateCommandOutput extends Disassoci
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DisassociateServiceQuotaTemplateCommandInput - {@link DisassociateServiceQuotaTemplateCommandInput}
|
|
36
|
+
* @returns {@link DisassociateServiceQuotaTemplateCommandOutput}
|
|
30
37
|
* @see {@link DisassociateServiceQuotaTemplateCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DisassociateServiceQuotaTemplateCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DisassociateServiceQuotaTemplateCommandOutput extends Disassoci
|
|
|
62
69
|
export declare class DisassociateServiceQuotaTemplateCommand extends $Command<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
63
70
|
readonly input: DisassociateServiceQuotaTemplateCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DisassociateServiceQuotaTemplateCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAWSDefaultServiceQuotaRequest, GetAWSDefaultServiceQuotaResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAWSDefaultServiceQuotaCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAWSDefaultServiceQuotaCommandInput extends GetAWSDefaultServiceQuotaRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAWSDefaultServiceQuotaCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultServiceQuotaResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the default value for the specified quota. The default value does not reflect
|
|
18
23
|
* any quota increases.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultSer
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetAWSDefaultServiceQuotaCommandInput - {@link GetAWSDefaultServiceQuotaCommandInput}
|
|
35
|
+
* @returns {@link GetAWSDefaultServiceQuotaCommandOutput}
|
|
29
36
|
* @see {@link GetAWSDefaultServiceQuotaCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetAWSDefaultServiceQuotaCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultSer
|
|
|
51
58
|
export declare class GetAWSDefaultServiceQuotaCommand extends $Command<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
52
59
|
readonly input: GetAWSDefaultServiceQuotaCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetAWSDefaultServiceQuotaCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAssociationForServiceQuotaTemplateRequest, GetAssociationForServiceQuotaTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAssociationForServiceQuotaTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAssociationForServiceQuotaTemplateCommandInput extends GetAssociationForServiceQuotaTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAssociationForServiceQuotaTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAssociationForServiceQuotaTemplateCommandOutput extends GetAssociationForServiceQuotaTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the status of the association for the quota request template.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAssociationForServiceQuotaTemplateCommandOutput extends GetA
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAssociationForServiceQuotaTemplateCommandInput - {@link GetAssociationForServiceQuotaTemplateCommandInput}
|
|
34
|
+
* @returns {@link GetAssociationForServiceQuotaTemplateCommandOutput}
|
|
28
35
|
* @see {@link GetAssociationForServiceQuotaTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAssociationForServiceQuotaTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface GetAssociationForServiceQuotaTemplateCommandOutput extends GetA
|
|
|
60
67
|
export declare class GetAssociationForServiceQuotaTemplateCommand extends $Command<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
61
68
|
readonly input: GetAssociationForServiceQuotaTemplateCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: GetAssociationForServiceQuotaTemplateCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRequestedServiceQuotaChangeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRequestedServiceQuotaChangeCommandInput extends GetRequestedServiceQuotaChangeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRequestedServiceQuotaChangeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequestedServiceQuotaChangeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about the specified quota increase request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequeste
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRequestedServiceQuotaChangeCommandInput - {@link GetRequestedServiceQuotaChangeCommandInput}
|
|
34
|
+
* @returns {@link GetRequestedServiceQuotaChangeCommandOutput}
|
|
28
35
|
* @see {@link GetRequestedServiceQuotaChangeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRequestedServiceQuotaChangeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequeste
|
|
|
50
57
|
export declare class GetRequestedServiceQuotaChangeCommand extends $Command<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
51
58
|
readonly input: GetRequestedServiceQuotaChangeCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetRequestedServiceQuotaChangeCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetServiceQuotaCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetServiceQuotaCommandInput extends GetServiceQuotaRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetServiceQuotaCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the applied quota value for the specified quota. For some quotas, only the
|
|
18
23
|
* default values are available. If the applied quota value is not available for a quota, the
|
|
19
24
|
* quota is not retrieved.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, _
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetServiceQuotaCommandInput - {@link GetServiceQuotaCommandInput}
|
|
36
|
+
* @returns {@link GetServiceQuotaCommandOutput}
|
|
30
37
|
* @see {@link GetServiceQuotaCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetServiceQuotaCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, _
|
|
|
52
59
|
export declare class GetServiceQuotaCommand extends $Command<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
53
60
|
readonly input: GetServiceQuotaCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetServiceQuotaCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetServiceQuotaIncreaseRequestFromTemplateRequest, GetServiceQuotaIncreaseRequestFromTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetServiceQuotaIncreaseRequestFromTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetServiceQuotaIncreaseRequestFromTemplateCommandInput extends GetServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetServiceQuotaIncreaseRequestFromTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends GetServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves information about the specified quota increase request in your quota request
|
|
18
23
|
* template.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetServiceQuotaIncreaseRequestFromTemplateCommandInput - {@link GetServiceQuotaIncreaseRequestFromTemplateCommandInput}
|
|
35
|
+
* @returns {@link GetServiceQuotaIncreaseRequestFromTemplateCommandOutput}
|
|
29
36
|
* @see {@link GetServiceQuotaIncreaseRequestFromTemplateCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetServiceQuotaIncreaseRequestFromTemplateCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends
|
|
|
64
71
|
export declare class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
65
72
|
readonly input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|