@aws-sdk/client-service-quotas 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ServiceQuotasServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +241 -1
- package/dist-cjs/protocols/Aws_json1_1.js +269 -1060
- package/dist-es/index.js +1 -0
- package/dist-es/models/ServiceQuotasServiceException.js +12 -0
- package/dist-es/models/models_0.js +223 -1
- package/dist-es/protocols/Aws_json1_1.js +552 -1103
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ServiceQuotasServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +121 -52
- package/dist-types/ts3.4/ServiceQuotas.d.ts +100 -0
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +92 -0
- package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +670 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ServiceQuotas service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ServiceQuotasServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient permission to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export interface AssociateServiceQuotaTemplateRequest {
|
|
11
16
|
}
|
|
@@ -27,59 +32,87 @@ export declare namespace AssociateServiceQuotaTemplateResponse {
|
|
|
27
32
|
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is
|
|
28
33
|
* enabled in your organization.</p>
|
|
29
34
|
*/
|
|
30
|
-
export
|
|
31
|
-
name: "AWSServiceAccessNotEnabledException";
|
|
32
|
-
$fault: "client";
|
|
35
|
+
export declare class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
36
|
+
readonly name: "AWSServiceAccessNotEnabledException";
|
|
37
|
+
readonly $fault: "client";
|
|
33
38
|
Message?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
constructor(opts: __ExceptionOptionType<AWSServiceAccessNotEnabledException, __BaseException>);
|
|
34
43
|
}
|
|
35
44
|
/**
|
|
36
45
|
* <p>You can't perform this action because a dependency does not have access.</p>
|
|
37
46
|
*/
|
|
38
|
-
export
|
|
39
|
-
name: "DependencyAccessDeniedException";
|
|
40
|
-
$fault: "client";
|
|
47
|
+
export declare class DependencyAccessDeniedException extends __BaseException {
|
|
48
|
+
readonly name: "DependencyAccessDeniedException";
|
|
49
|
+
readonly $fault: "client";
|
|
41
50
|
Message?: string;
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<DependencyAccessDeniedException, __BaseException>);
|
|
42
55
|
}
|
|
43
56
|
/**
|
|
44
57
|
* <p>The account making this call is not a member of an organization.</p>
|
|
45
58
|
*/
|
|
46
|
-
export
|
|
47
|
-
name: "NoAvailableOrganizationException";
|
|
48
|
-
$fault: "client";
|
|
59
|
+
export declare class NoAvailableOrganizationException extends __BaseException {
|
|
60
|
+
readonly name: "NoAvailableOrganizationException";
|
|
61
|
+
readonly $fault: "client";
|
|
49
62
|
Message?: string;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<NoAvailableOrganizationException, __BaseException>);
|
|
50
67
|
}
|
|
51
68
|
/**
|
|
52
69
|
* <p>The organization that your account belongs to is not in All Features mode.</p>
|
|
53
70
|
*/
|
|
54
|
-
export
|
|
55
|
-
name: "OrganizationNotInAllFeaturesModeException";
|
|
56
|
-
$fault: "client";
|
|
71
|
+
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
72
|
+
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
73
|
+
readonly $fault: "client";
|
|
57
74
|
Message?: string;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<OrganizationNotInAllFeaturesModeException, __BaseException>);
|
|
58
79
|
}
|
|
59
80
|
/**
|
|
60
81
|
* <p>Something went wrong.</p>
|
|
61
82
|
*/
|
|
62
|
-
export
|
|
63
|
-
name: "ServiceException";
|
|
64
|
-
$fault: "server";
|
|
83
|
+
export declare class ServiceException extends __BaseException {
|
|
84
|
+
readonly name: "ServiceException";
|
|
85
|
+
readonly $fault: "server";
|
|
65
86
|
Message?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
66
91
|
}
|
|
67
92
|
/**
|
|
68
93
|
* <p>The Service Quotas template is not available in this AWS Region.</p>
|
|
69
94
|
*/
|
|
70
|
-
export
|
|
71
|
-
name: "TemplatesNotAvailableInRegionException";
|
|
72
|
-
$fault: "client";
|
|
95
|
+
export declare class TemplatesNotAvailableInRegionException extends __BaseException {
|
|
96
|
+
readonly name: "TemplatesNotAvailableInRegionException";
|
|
97
|
+
readonly $fault: "client";
|
|
73
98
|
Message?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<TemplatesNotAvailableInRegionException, __BaseException>);
|
|
74
103
|
}
|
|
75
104
|
/**
|
|
76
105
|
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or request
|
|
77
106
|
* an increase for this quota.</p>
|
|
78
107
|
*/
|
|
79
|
-
export
|
|
80
|
-
name: "TooManyRequestsException";
|
|
81
|
-
$fault: "client";
|
|
108
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
109
|
+
readonly name: "TooManyRequestsException";
|
|
110
|
+
readonly $fault: "client";
|
|
82
111
|
Message?: string;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
83
116
|
}
|
|
84
117
|
export interface DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
85
118
|
/**
|
|
@@ -112,18 +145,26 @@ export declare namespace DeleteServiceQuotaIncreaseRequestFromTemplateResponse {
|
|
|
112
145
|
/**
|
|
113
146
|
* <p>Invalid input was provided.</p>
|
|
114
147
|
*/
|
|
115
|
-
export
|
|
116
|
-
name: "IllegalArgumentException";
|
|
117
|
-
$fault: "client";
|
|
148
|
+
export declare class IllegalArgumentException extends __BaseException {
|
|
149
|
+
readonly name: "IllegalArgumentException";
|
|
150
|
+
readonly $fault: "client";
|
|
118
151
|
Message?: string;
|
|
152
|
+
/**
|
|
153
|
+
* @internal
|
|
154
|
+
*/
|
|
155
|
+
constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
|
|
119
156
|
}
|
|
120
157
|
/**
|
|
121
158
|
* <p>The specified resource does not exist.</p>
|
|
122
159
|
*/
|
|
123
|
-
export
|
|
124
|
-
name: "NoSuchResourceException";
|
|
125
|
-
$fault: "client";
|
|
160
|
+
export declare class NoSuchResourceException extends __BaseException {
|
|
161
|
+
readonly name: "NoSuchResourceException";
|
|
162
|
+
readonly $fault: "client";
|
|
126
163
|
Message?: string;
|
|
164
|
+
/**
|
|
165
|
+
* @internal
|
|
166
|
+
*/
|
|
167
|
+
constructor(opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>);
|
|
127
168
|
}
|
|
128
169
|
export interface DisassociateServiceQuotaTemplateRequest {
|
|
129
170
|
}
|
|
@@ -144,10 +185,14 @@ export declare namespace DisassociateServiceQuotaTemplateResponse {
|
|
|
144
185
|
/**
|
|
145
186
|
* <p>The quota request template is not associated with your organization.</p>
|
|
146
187
|
*/
|
|
147
|
-
export
|
|
148
|
-
name: "ServiceQuotaTemplateNotInUseException";
|
|
149
|
-
$fault: "client";
|
|
188
|
+
export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
189
|
+
readonly name: "ServiceQuotaTemplateNotInUseException";
|
|
190
|
+
readonly $fault: "client";
|
|
150
191
|
Message?: string;
|
|
192
|
+
/**
|
|
193
|
+
* @internal
|
|
194
|
+
*/
|
|
195
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaTemplateNotInUseException, __BaseException>);
|
|
151
196
|
}
|
|
152
197
|
export declare enum ErrorCode {
|
|
153
198
|
DEPENDENCY_ACCESS_DENIED_ERROR = "DEPENDENCY_ACCESS_DENIED_ERROR",
|
|
@@ -595,18 +640,26 @@ export declare namespace Tag {
|
|
|
595
640
|
/**
|
|
596
641
|
* <p>Invalid input was provided.</p>
|
|
597
642
|
*/
|
|
598
|
-
export
|
|
599
|
-
name: "InvalidPaginationTokenException";
|
|
600
|
-
$fault: "client";
|
|
643
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
644
|
+
readonly name: "InvalidPaginationTokenException";
|
|
645
|
+
readonly $fault: "client";
|
|
601
646
|
Message?: string;
|
|
647
|
+
/**
|
|
648
|
+
* @internal
|
|
649
|
+
*/
|
|
650
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
602
651
|
}
|
|
603
652
|
/**
|
|
604
653
|
* <p>The resource is in an invalid state.</p>
|
|
605
654
|
*/
|
|
606
|
-
export
|
|
607
|
-
name: "InvalidResourceStateException";
|
|
608
|
-
$fault: "client";
|
|
655
|
+
export declare class InvalidResourceStateException extends __BaseException {
|
|
656
|
+
readonly name: "InvalidResourceStateException";
|
|
657
|
+
readonly $fault: "client";
|
|
609
658
|
Message?: string;
|
|
659
|
+
/**
|
|
660
|
+
* @internal
|
|
661
|
+
*/
|
|
662
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
|
|
610
663
|
}
|
|
611
664
|
export interface ListAWSDefaultServiceQuotasRequest {
|
|
612
665
|
/**
|
|
@@ -933,10 +986,14 @@ export declare namespace PutServiceQuotaIncreaseRequestIntoTemplateResponse {
|
|
|
933
986
|
* <p>You have exceeded your service quota. To perform the requested action, remove some of the
|
|
934
987
|
* relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
935
988
|
*/
|
|
936
|
-
export
|
|
937
|
-
name: "QuotaExceededException";
|
|
938
|
-
$fault: "client";
|
|
989
|
+
export declare class QuotaExceededException extends __BaseException {
|
|
990
|
+
readonly name: "QuotaExceededException";
|
|
991
|
+
readonly $fault: "client";
|
|
939
992
|
Message?: string;
|
|
993
|
+
/**
|
|
994
|
+
* @internal
|
|
995
|
+
*/
|
|
996
|
+
constructor(opts: __ExceptionOptionType<QuotaExceededException, __BaseException>);
|
|
940
997
|
}
|
|
941
998
|
export interface RequestServiceQuotaIncreaseRequest {
|
|
942
999
|
/**
|
|
@@ -973,18 +1030,26 @@ export declare namespace RequestServiceQuotaIncreaseResponse {
|
|
|
973
1030
|
/**
|
|
974
1031
|
* <p>The specified resource already exists.</p>
|
|
975
1032
|
*/
|
|
976
|
-
export
|
|
977
|
-
name: "ResourceAlreadyExistsException";
|
|
978
|
-
$fault: "client";
|
|
1033
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
1034
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
1035
|
+
readonly $fault: "client";
|
|
979
1036
|
Message?: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* @internal
|
|
1039
|
+
*/
|
|
1040
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
980
1041
|
}
|
|
981
1042
|
/**
|
|
982
1043
|
* <p>The specified tag is a reserved word and cannot be used.</p>
|
|
983
1044
|
*/
|
|
984
|
-
export
|
|
985
|
-
name: "TagPolicyViolationException";
|
|
986
|
-
$fault: "client";
|
|
1045
|
+
export declare class TagPolicyViolationException extends __BaseException {
|
|
1046
|
+
readonly name: "TagPolicyViolationException";
|
|
1047
|
+
readonly $fault: "client";
|
|
987
1048
|
Message?: string;
|
|
1049
|
+
/**
|
|
1050
|
+
* @internal
|
|
1051
|
+
*/
|
|
1052
|
+
constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
|
|
988
1053
|
}
|
|
989
1054
|
export interface TagResourceRequest {
|
|
990
1055
|
/**
|
|
@@ -1016,10 +1081,14 @@ export declare namespace TagResourceResponse {
|
|
|
1016
1081
|
* <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/sq-tagging.html#sq-tagging-restrictions">Tag
|
|
1017
1082
|
* restrictions</a> in the <i>Service Quotas User Guide</i>.</p>
|
|
1018
1083
|
*/
|
|
1019
|
-
export
|
|
1020
|
-
name: "TooManyTagsException";
|
|
1021
|
-
$fault: "client";
|
|
1084
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1085
|
+
readonly name: "TooManyTagsException";
|
|
1086
|
+
readonly $fault: "client";
|
|
1022
1087
|
Message?: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* @internal
|
|
1090
|
+
*/
|
|
1091
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1023
1092
|
}
|
|
1024
1093
|
export interface UntagResourceRequest {
|
|
1025
1094
|
/**
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput } from "./commands/AssociateServiceQuotaTemplateCommand";
|
|
3
|
+
import { DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput } from "./commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
4
|
+
import { DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput } from "./commands/DisassociateServiceQuotaTemplateCommand";
|
|
5
|
+
import { GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput } from "./commands/GetAssociationForServiceQuotaTemplateCommand";
|
|
6
|
+
import { GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput } from "./commands/GetAWSDefaultServiceQuotaCommand";
|
|
7
|
+
import { GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput } from "./commands/GetRequestedServiceQuotaChangeCommand";
|
|
8
|
+
import { GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput } from "./commands/GetServiceQuotaCommand";
|
|
9
|
+
import { GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput } from "./commands/GetServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
10
|
+
import { ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput } from "./commands/ListAWSDefaultServiceQuotasCommand";
|
|
11
|
+
import { ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput } from "./commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand";
|
|
12
|
+
import { ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput } from "./commands/ListRequestedServiceQuotaChangeHistoryCommand";
|
|
13
|
+
import { ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput } from "./commands/ListServiceQuotaIncreaseRequestsInTemplateCommand";
|
|
14
|
+
import { ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput } from "./commands/ListServiceQuotasCommand";
|
|
15
|
+
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
16
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput } from "./commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand";
|
|
18
|
+
import { RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput } from "./commands/RequestServiceQuotaIncreaseCommand";
|
|
19
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
20
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
|
+
import { ServiceQuotasClient } from "./ServiceQuotasClient";
|
|
22
|
+
|
|
23
|
+
export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
24
|
+
|
|
25
|
+
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceQuotaTemplateCommandOutput>;
|
|
26
|
+
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
27
|
+
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
28
|
+
|
|
29
|
+
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
30
|
+
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
31
|
+
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
|
|
34
|
+
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
35
|
+
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
38
|
+
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
39
|
+
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetAWSDefaultServiceQuotaCommandOutput>;
|
|
42
|
+
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
43
|
+
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options?: __HttpHandlerOptions): Promise<GetRequestedServiceQuotaChangeCommandOutput>;
|
|
46
|
+
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
47
|
+
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
getServiceQuota(args: GetServiceQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceQuotaCommandOutput>;
|
|
50
|
+
getServiceQuota(args: GetServiceQuotaCommandInput, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
51
|
+
getServiceQuota(args: GetServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
54
|
+
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
55
|
+
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, options?: __HttpHandlerOptions): Promise<ListAWSDefaultServiceQuotasCommandOutput>;
|
|
58
|
+
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
59
|
+
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
62
|
+
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
63
|
+
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
|
|
66
|
+
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
67
|
+
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
70
|
+
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
71
|
+
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
listServiceQuotas(args: ListServiceQuotasCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotasCommandOutput>;
|
|
74
|
+
listServiceQuotas(args: ListServiceQuotasCommandInput, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
75
|
+
listServiceQuotas(args: ListServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
78
|
+
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
79
|
+
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
80
|
+
|
|
81
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
82
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
83
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
84
|
+
|
|
85
|
+
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options?: __HttpHandlerOptions): Promise<PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput>;
|
|
86
|
+
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
87
|
+
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
88
|
+
|
|
89
|
+
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options?: __HttpHandlerOptions): Promise<RequestServiceQuotaIncreaseCommandOutput>;
|
|
90
|
+
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
91
|
+
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
92
|
+
|
|
93
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
94
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
95
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
96
|
+
|
|
97
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
98
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
99
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
100
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput } from "./commands/AssociateServiceQuotaTemplateCommand";
|
|
10
|
+
import { DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput } from "./commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
11
|
+
import { DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput } from "./commands/DisassociateServiceQuotaTemplateCommand";
|
|
12
|
+
import { GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput } from "./commands/GetAssociationForServiceQuotaTemplateCommand";
|
|
13
|
+
import { GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput } from "./commands/GetAWSDefaultServiceQuotaCommand";
|
|
14
|
+
import { GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput } from "./commands/GetRequestedServiceQuotaChangeCommand";
|
|
15
|
+
import { GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput } from "./commands/GetServiceQuotaCommand";
|
|
16
|
+
import { GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput } from "./commands/GetServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
17
|
+
import { ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput } from "./commands/ListAWSDefaultServiceQuotasCommand";
|
|
18
|
+
import { ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput } from "./commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand";
|
|
19
|
+
import { ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput } from "./commands/ListRequestedServiceQuotaChangeHistoryCommand";
|
|
20
|
+
import { ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput } from "./commands/ListServiceQuotaIncreaseRequestsInTemplateCommand";
|
|
21
|
+
import { ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput } from "./commands/ListServiceQuotasCommand";
|
|
22
|
+
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
23
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput } from "./commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand";
|
|
25
|
+
import { RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput } from "./commands/RequestServiceQuotaIncreaseCommand";
|
|
26
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
28
|
+
export declare type ServiceInputTypes = AssociateServiceQuotaTemplateCommandInput | DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput | DisassociateServiceQuotaTemplateCommandInput | GetAWSDefaultServiceQuotaCommandInput | GetAssociationForServiceQuotaTemplateCommandInput | GetRequestedServiceQuotaChangeCommandInput | GetServiceQuotaCommandInput | GetServiceQuotaIncreaseRequestFromTemplateCommandInput | ListAWSDefaultServiceQuotasCommandInput | ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput | ListRequestedServiceQuotaChangeHistoryCommandInput | ListServiceQuotaIncreaseRequestsInTemplateCommandInput | ListServiceQuotasCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PutServiceQuotaIncreaseRequestIntoTemplateCommandInput | RequestServiceQuotaIncreaseCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
29
|
+
export declare type ServiceOutputTypes = AssociateServiceQuotaTemplateCommandOutput | DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput | DisassociateServiceQuotaTemplateCommandOutput | GetAWSDefaultServiceQuotaCommandOutput | GetAssociationForServiceQuotaTemplateCommandOutput | GetRequestedServiceQuotaChangeCommandOutput | GetServiceQuotaCommandOutput | GetServiceQuotaIncreaseRequestFromTemplateCommandOutput | ListAWSDefaultServiceQuotasCommandOutput | ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput | ListRequestedServiceQuotaChangeHistoryCommandOutput | ListServiceQuotaIncreaseRequestsInTemplateCommandOutput | ListServiceQuotasCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput | RequestServiceQuotaIncreaseCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
30
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
|
+
|
|
32
|
+
requestHandler?: __HttpHandler;
|
|
33
|
+
|
|
34
|
+
sha256?: __HashConstructor;
|
|
35
|
+
|
|
36
|
+
urlParser?: __UrlParser;
|
|
37
|
+
|
|
38
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
39
|
+
|
|
40
|
+
streamCollector?: __StreamCollector;
|
|
41
|
+
|
|
42
|
+
base64Decoder?: __Decoder;
|
|
43
|
+
|
|
44
|
+
base64Encoder?: __Encoder;
|
|
45
|
+
|
|
46
|
+
utf8Decoder?: __Decoder;
|
|
47
|
+
|
|
48
|
+
utf8Encoder?: __Encoder;
|
|
49
|
+
|
|
50
|
+
runtime?: string;
|
|
51
|
+
|
|
52
|
+
disableHostPrefix?: boolean;
|
|
53
|
+
|
|
54
|
+
maxAttempts?: number | __Provider<number>;
|
|
55
|
+
|
|
56
|
+
retryMode?: string | __Provider<string>;
|
|
57
|
+
|
|
58
|
+
logger?: __Logger;
|
|
59
|
+
|
|
60
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
61
|
+
|
|
62
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
63
|
+
|
|
64
|
+
serviceId?: string;
|
|
65
|
+
|
|
66
|
+
region?: string | __Provider<string>;
|
|
67
|
+
|
|
68
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
69
|
+
|
|
70
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
71
|
+
|
|
72
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
73
|
+
|
|
74
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
75
|
+
}
|
|
76
|
+
declare type ServiceQuotasClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
77
|
+
|
|
78
|
+
export interface ServiceQuotasClientConfig extends ServiceQuotasClientConfigType {
|
|
79
|
+
}
|
|
80
|
+
declare type ServiceQuotasClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
81
|
+
|
|
82
|
+
export interface ServiceQuotasClientResolvedConfig extends ServiceQuotasClientResolvedConfigType {
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare class ServiceQuotasClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig> {
|
|
86
|
+
|
|
87
|
+
readonly config: ServiceQuotasClientResolvedConfig;
|
|
88
|
+
constructor(configuration: ServiceQuotasClientConfig);
|
|
89
|
+
|
|
90
|
+
destroy(): void;
|
|
91
|
+
}
|
|
92
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateServiceQuotaTemplateRequest, AssociateServiceQuotaTemplateResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface AssociateServiceQuotaTemplateCommandInput extends AssociateServiceQuotaTemplateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateServiceQuotaTemplateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AssociateServiceQuotaTemplateCommand extends $Command<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: AssociateServiceQuotaTemplateCommandInput;
|
|
12
|
+
constructor(input: AssociateServiceQuotaTemplateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteServiceQuotaIncreaseRequestFromTemplateRequest, DeleteServiceQuotaIncreaseRequestFromTemplateResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput extends DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput extends DeleteServiceQuotaIncreaseRequestFromTemplateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Command<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput;
|
|
12
|
+
constructor(input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DisassociateServiceQuotaTemplateRequest, DisassociateServiceQuotaTemplateResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface DisassociateServiceQuotaTemplateCommandInput extends DisassociateServiceQuotaTemplateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisassociateServiceQuotaTemplateCommandOutput extends DisassociateServiceQuotaTemplateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisassociateServiceQuotaTemplateCommand extends $Command<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: DisassociateServiceQuotaTemplateCommandInput;
|
|
12
|
+
constructor(input: DisassociateServiceQuotaTemplateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetAWSDefaultServiceQuotaRequest, GetAWSDefaultServiceQuotaResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface GetAWSDefaultServiceQuotaCommandInput extends GetAWSDefaultServiceQuotaRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultServiceQuotaResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAWSDefaultServiceQuotaCommand extends $Command<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAWSDefaultServiceQuotaCommandInput;
|
|
12
|
+
constructor(input: GetAWSDefaultServiceQuotaCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetAssociationForServiceQuotaTemplateRequest, GetAssociationForServiceQuotaTemplateResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface GetAssociationForServiceQuotaTemplateCommandInput extends GetAssociationForServiceQuotaTemplateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAssociationForServiceQuotaTemplateCommandOutput extends GetAssociationForServiceQuotaTemplateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAssociationForServiceQuotaTemplateCommand extends $Command<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAssociationForServiceQuotaTemplateCommandInput;
|
|
12
|
+
constructor(input: GetAssociationForServiceQuotaTemplateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface GetRequestedServiceQuotaChangeCommandInput extends GetRequestedServiceQuotaChangeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequestedServiceQuotaChangeResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetRequestedServiceQuotaChangeCommand extends $Command<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: GetRequestedServiceQuotaChangeCommandInput;
|
|
12
|
+
constructor(input: GetRequestedServiceQuotaChangeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
export interface GetServiceQuotaCommandInput extends GetServiceQuotaRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetServiceQuotaCommand extends $Command<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig> {
|
|
11
|
+
readonly input: GetServiceQuotaCommandInput;
|
|
12
|
+
constructor(input: GetServiceQuotaCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceQuotasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|