@aws-sdk/client-service-quotas 3.315.0 → 3.319.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/ServiceQuotas.js +23 -266
- package/dist-es/ServiceQuotas.js +23 -266
- package/dist-types/ServiceQuotas.d.ts +28 -60
- package/dist-types/ts3.4/ServiceQuotas.d.ts +4 -1
- package/package.json +8 -8
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ServiceQuotas = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const AssociateServiceQuotaTemplateCommand_1 = require("./commands/AssociateServiceQuotaTemplateCommand");
|
|
5
6
|
const DeleteServiceQuotaIncreaseRequestFromTemplateCommand_1 = require("./commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand");
|
|
6
7
|
const DisassociateServiceQuotaTemplateCommand_1 = require("./commands/DisassociateServiceQuotaTemplateCommand");
|
|
@@ -21,272 +22,28 @@ const RequestServiceQuotaIncreaseCommand_1 = require("./commands/RequestServiceQ
|
|
|
21
22
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
22
23
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
23
24
|
const ServiceQuotasClient_1 = require("./ServiceQuotasClient");
|
|
25
|
+
const commands = {
|
|
26
|
+
AssociateServiceQuotaTemplateCommand: AssociateServiceQuotaTemplateCommand_1.AssociateServiceQuotaTemplateCommand,
|
|
27
|
+
DeleteServiceQuotaIncreaseRequestFromTemplateCommand: DeleteServiceQuotaIncreaseRequestFromTemplateCommand_1.DeleteServiceQuotaIncreaseRequestFromTemplateCommand,
|
|
28
|
+
DisassociateServiceQuotaTemplateCommand: DisassociateServiceQuotaTemplateCommand_1.DisassociateServiceQuotaTemplateCommand,
|
|
29
|
+
GetAssociationForServiceQuotaTemplateCommand: GetAssociationForServiceQuotaTemplateCommand_1.GetAssociationForServiceQuotaTemplateCommand,
|
|
30
|
+
GetAWSDefaultServiceQuotaCommand: GetAWSDefaultServiceQuotaCommand_1.GetAWSDefaultServiceQuotaCommand,
|
|
31
|
+
GetRequestedServiceQuotaChangeCommand: GetRequestedServiceQuotaChangeCommand_1.GetRequestedServiceQuotaChangeCommand,
|
|
32
|
+
GetServiceQuotaCommand: GetServiceQuotaCommand_1.GetServiceQuotaCommand,
|
|
33
|
+
GetServiceQuotaIncreaseRequestFromTemplateCommand: GetServiceQuotaIncreaseRequestFromTemplateCommand_1.GetServiceQuotaIncreaseRequestFromTemplateCommand,
|
|
34
|
+
ListAWSDefaultServiceQuotasCommand: ListAWSDefaultServiceQuotasCommand_1.ListAWSDefaultServiceQuotasCommand,
|
|
35
|
+
ListRequestedServiceQuotaChangeHistoryCommand: ListRequestedServiceQuotaChangeHistoryCommand_1.ListRequestedServiceQuotaChangeHistoryCommand,
|
|
36
|
+
ListRequestedServiceQuotaChangeHistoryByQuotaCommand: ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1.ListRequestedServiceQuotaChangeHistoryByQuotaCommand,
|
|
37
|
+
ListServiceQuotaIncreaseRequestsInTemplateCommand: ListServiceQuotaIncreaseRequestsInTemplateCommand_1.ListServiceQuotaIncreaseRequestsInTemplateCommand,
|
|
38
|
+
ListServiceQuotasCommand: ListServiceQuotasCommand_1.ListServiceQuotasCommand,
|
|
39
|
+
ListServicesCommand: ListServicesCommand_1.ListServicesCommand,
|
|
40
|
+
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
41
|
+
PutServiceQuotaIncreaseRequestIntoTemplateCommand: PutServiceQuotaIncreaseRequestIntoTemplateCommand_1.PutServiceQuotaIncreaseRequestIntoTemplateCommand,
|
|
42
|
+
RequestServiceQuotaIncreaseCommand: RequestServiceQuotaIncreaseCommand_1.RequestServiceQuotaIncreaseCommand,
|
|
43
|
+
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
44
|
+
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
45
|
+
};
|
|
24
46
|
class ServiceQuotas extends ServiceQuotasClient_1.ServiceQuotasClient {
|
|
25
|
-
associateServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
26
|
-
const command = new AssociateServiceQuotaTemplateCommand_1.AssociateServiceQuotaTemplateCommand(args);
|
|
27
|
-
if (typeof optionsOrCb === "function") {
|
|
28
|
-
this.send(command, optionsOrCb);
|
|
29
|
-
}
|
|
30
|
-
else if (typeof cb === "function") {
|
|
31
|
-
if (typeof optionsOrCb !== "object")
|
|
32
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
33
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
34
|
-
}
|
|
35
|
-
else {
|
|
36
|
-
return this.send(command, optionsOrCb);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
deleteServiceQuotaIncreaseRequestFromTemplate(args, optionsOrCb, cb) {
|
|
40
|
-
const command = new DeleteServiceQuotaIncreaseRequestFromTemplateCommand_1.DeleteServiceQuotaIncreaseRequestFromTemplateCommand(args);
|
|
41
|
-
if (typeof optionsOrCb === "function") {
|
|
42
|
-
this.send(command, optionsOrCb);
|
|
43
|
-
}
|
|
44
|
-
else if (typeof cb === "function") {
|
|
45
|
-
if (typeof optionsOrCb !== "object")
|
|
46
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
47
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
48
|
-
}
|
|
49
|
-
else {
|
|
50
|
-
return this.send(command, optionsOrCb);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
disassociateServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
54
|
-
const command = new DisassociateServiceQuotaTemplateCommand_1.DisassociateServiceQuotaTemplateCommand(args);
|
|
55
|
-
if (typeof optionsOrCb === "function") {
|
|
56
|
-
this.send(command, optionsOrCb);
|
|
57
|
-
}
|
|
58
|
-
else if (typeof cb === "function") {
|
|
59
|
-
if (typeof optionsOrCb !== "object")
|
|
60
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
61
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
62
|
-
}
|
|
63
|
-
else {
|
|
64
|
-
return this.send(command, optionsOrCb);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
getAssociationForServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
68
|
-
const command = new GetAssociationForServiceQuotaTemplateCommand_1.GetAssociationForServiceQuotaTemplateCommand(args);
|
|
69
|
-
if (typeof optionsOrCb === "function") {
|
|
70
|
-
this.send(command, optionsOrCb);
|
|
71
|
-
}
|
|
72
|
-
else if (typeof cb === "function") {
|
|
73
|
-
if (typeof optionsOrCb !== "object")
|
|
74
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
75
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
76
|
-
}
|
|
77
|
-
else {
|
|
78
|
-
return this.send(command, optionsOrCb);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
getAWSDefaultServiceQuota(args, optionsOrCb, cb) {
|
|
82
|
-
const command = new GetAWSDefaultServiceQuotaCommand_1.GetAWSDefaultServiceQuotaCommand(args);
|
|
83
|
-
if (typeof optionsOrCb === "function") {
|
|
84
|
-
this.send(command, optionsOrCb);
|
|
85
|
-
}
|
|
86
|
-
else if (typeof cb === "function") {
|
|
87
|
-
if (typeof optionsOrCb !== "object")
|
|
88
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
89
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
90
|
-
}
|
|
91
|
-
else {
|
|
92
|
-
return this.send(command, optionsOrCb);
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
getRequestedServiceQuotaChange(args, optionsOrCb, cb) {
|
|
96
|
-
const command = new GetRequestedServiceQuotaChangeCommand_1.GetRequestedServiceQuotaChangeCommand(args);
|
|
97
|
-
if (typeof optionsOrCb === "function") {
|
|
98
|
-
this.send(command, optionsOrCb);
|
|
99
|
-
}
|
|
100
|
-
else if (typeof cb === "function") {
|
|
101
|
-
if (typeof optionsOrCb !== "object")
|
|
102
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
103
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
104
|
-
}
|
|
105
|
-
else {
|
|
106
|
-
return this.send(command, optionsOrCb);
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
getServiceQuota(args, optionsOrCb, cb) {
|
|
110
|
-
const command = new GetServiceQuotaCommand_1.GetServiceQuotaCommand(args);
|
|
111
|
-
if (typeof optionsOrCb === "function") {
|
|
112
|
-
this.send(command, optionsOrCb);
|
|
113
|
-
}
|
|
114
|
-
else if (typeof cb === "function") {
|
|
115
|
-
if (typeof optionsOrCb !== "object")
|
|
116
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
117
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
118
|
-
}
|
|
119
|
-
else {
|
|
120
|
-
return this.send(command, optionsOrCb);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
getServiceQuotaIncreaseRequestFromTemplate(args, optionsOrCb, cb) {
|
|
124
|
-
const command = new GetServiceQuotaIncreaseRequestFromTemplateCommand_1.GetServiceQuotaIncreaseRequestFromTemplateCommand(args);
|
|
125
|
-
if (typeof optionsOrCb === "function") {
|
|
126
|
-
this.send(command, optionsOrCb);
|
|
127
|
-
}
|
|
128
|
-
else if (typeof cb === "function") {
|
|
129
|
-
if (typeof optionsOrCb !== "object")
|
|
130
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
131
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
132
|
-
}
|
|
133
|
-
else {
|
|
134
|
-
return this.send(command, optionsOrCb);
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
listAWSDefaultServiceQuotas(args, optionsOrCb, cb) {
|
|
138
|
-
const command = new ListAWSDefaultServiceQuotasCommand_1.ListAWSDefaultServiceQuotasCommand(args);
|
|
139
|
-
if (typeof optionsOrCb === "function") {
|
|
140
|
-
this.send(command, optionsOrCb);
|
|
141
|
-
}
|
|
142
|
-
else if (typeof cb === "function") {
|
|
143
|
-
if (typeof optionsOrCb !== "object")
|
|
144
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
145
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
146
|
-
}
|
|
147
|
-
else {
|
|
148
|
-
return this.send(command, optionsOrCb);
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
listRequestedServiceQuotaChangeHistory(args, optionsOrCb, cb) {
|
|
152
|
-
const command = new ListRequestedServiceQuotaChangeHistoryCommand_1.ListRequestedServiceQuotaChangeHistoryCommand(args);
|
|
153
|
-
if (typeof optionsOrCb === "function") {
|
|
154
|
-
this.send(command, optionsOrCb);
|
|
155
|
-
}
|
|
156
|
-
else if (typeof cb === "function") {
|
|
157
|
-
if (typeof optionsOrCb !== "object")
|
|
158
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
159
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
160
|
-
}
|
|
161
|
-
else {
|
|
162
|
-
return this.send(command, optionsOrCb);
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
listRequestedServiceQuotaChangeHistoryByQuota(args, optionsOrCb, cb) {
|
|
166
|
-
const command = new ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1.ListRequestedServiceQuotaChangeHistoryByQuotaCommand(args);
|
|
167
|
-
if (typeof optionsOrCb === "function") {
|
|
168
|
-
this.send(command, optionsOrCb);
|
|
169
|
-
}
|
|
170
|
-
else if (typeof cb === "function") {
|
|
171
|
-
if (typeof optionsOrCb !== "object")
|
|
172
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
173
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
174
|
-
}
|
|
175
|
-
else {
|
|
176
|
-
return this.send(command, optionsOrCb);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
listServiceQuotaIncreaseRequestsInTemplate(args, optionsOrCb, cb) {
|
|
180
|
-
const command = new ListServiceQuotaIncreaseRequestsInTemplateCommand_1.ListServiceQuotaIncreaseRequestsInTemplateCommand(args);
|
|
181
|
-
if (typeof optionsOrCb === "function") {
|
|
182
|
-
this.send(command, optionsOrCb);
|
|
183
|
-
}
|
|
184
|
-
else if (typeof cb === "function") {
|
|
185
|
-
if (typeof optionsOrCb !== "object")
|
|
186
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
187
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
188
|
-
}
|
|
189
|
-
else {
|
|
190
|
-
return this.send(command, optionsOrCb);
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
listServiceQuotas(args, optionsOrCb, cb) {
|
|
194
|
-
const command = new ListServiceQuotasCommand_1.ListServiceQuotasCommand(args);
|
|
195
|
-
if (typeof optionsOrCb === "function") {
|
|
196
|
-
this.send(command, optionsOrCb);
|
|
197
|
-
}
|
|
198
|
-
else if (typeof cb === "function") {
|
|
199
|
-
if (typeof optionsOrCb !== "object")
|
|
200
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
201
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
202
|
-
}
|
|
203
|
-
else {
|
|
204
|
-
return this.send(command, optionsOrCb);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
listServices(args, optionsOrCb, cb) {
|
|
208
|
-
const command = new ListServicesCommand_1.ListServicesCommand(args);
|
|
209
|
-
if (typeof optionsOrCb === "function") {
|
|
210
|
-
this.send(command, optionsOrCb);
|
|
211
|
-
}
|
|
212
|
-
else if (typeof cb === "function") {
|
|
213
|
-
if (typeof optionsOrCb !== "object")
|
|
214
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
215
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
216
|
-
}
|
|
217
|
-
else {
|
|
218
|
-
return this.send(command, optionsOrCb);
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
222
|
-
const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
|
|
223
|
-
if (typeof optionsOrCb === "function") {
|
|
224
|
-
this.send(command, optionsOrCb);
|
|
225
|
-
}
|
|
226
|
-
else if (typeof cb === "function") {
|
|
227
|
-
if (typeof optionsOrCb !== "object")
|
|
228
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
229
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
230
|
-
}
|
|
231
|
-
else {
|
|
232
|
-
return this.send(command, optionsOrCb);
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
putServiceQuotaIncreaseRequestIntoTemplate(args, optionsOrCb, cb) {
|
|
236
|
-
const command = new PutServiceQuotaIncreaseRequestIntoTemplateCommand_1.PutServiceQuotaIncreaseRequestIntoTemplateCommand(args);
|
|
237
|
-
if (typeof optionsOrCb === "function") {
|
|
238
|
-
this.send(command, optionsOrCb);
|
|
239
|
-
}
|
|
240
|
-
else if (typeof cb === "function") {
|
|
241
|
-
if (typeof optionsOrCb !== "object")
|
|
242
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
243
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
244
|
-
}
|
|
245
|
-
else {
|
|
246
|
-
return this.send(command, optionsOrCb);
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
requestServiceQuotaIncrease(args, optionsOrCb, cb) {
|
|
250
|
-
const command = new RequestServiceQuotaIncreaseCommand_1.RequestServiceQuotaIncreaseCommand(args);
|
|
251
|
-
if (typeof optionsOrCb === "function") {
|
|
252
|
-
this.send(command, optionsOrCb);
|
|
253
|
-
}
|
|
254
|
-
else if (typeof cb === "function") {
|
|
255
|
-
if (typeof optionsOrCb !== "object")
|
|
256
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
257
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
258
|
-
}
|
|
259
|
-
else {
|
|
260
|
-
return this.send(command, optionsOrCb);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
tagResource(args, optionsOrCb, cb) {
|
|
264
|
-
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
265
|
-
if (typeof optionsOrCb === "function") {
|
|
266
|
-
this.send(command, optionsOrCb);
|
|
267
|
-
}
|
|
268
|
-
else if (typeof cb === "function") {
|
|
269
|
-
if (typeof optionsOrCb !== "object")
|
|
270
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
271
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
272
|
-
}
|
|
273
|
-
else {
|
|
274
|
-
return this.send(command, optionsOrCb);
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
untagResource(args, optionsOrCb, cb) {
|
|
278
|
-
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
279
|
-
if (typeof optionsOrCb === "function") {
|
|
280
|
-
this.send(command, optionsOrCb);
|
|
281
|
-
}
|
|
282
|
-
else if (typeof cb === "function") {
|
|
283
|
-
if (typeof optionsOrCb !== "object")
|
|
284
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
285
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
286
|
-
}
|
|
287
|
-
else {
|
|
288
|
-
return this.send(command, optionsOrCb);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
47
|
}
|
|
292
48
|
exports.ServiceQuotas = ServiceQuotas;
|
|
49
|
+
(0, smithy_client_1.createAggregatedClient)(commands, ServiceQuotas);
|
package/dist-es/ServiceQuotas.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { AssociateServiceQuotaTemplateCommand, } from "./commands/AssociateServiceQuotaTemplateCommand";
|
|
2
3
|
import { DeleteServiceQuotaIncreaseRequestFromTemplateCommand, } from "./commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
3
4
|
import { DisassociateServiceQuotaTemplateCommand, } from "./commands/DisassociateServiceQuotaTemplateCommand";
|
|
@@ -18,271 +19,27 @@ import { RequestServiceQuotaIncreaseCommand, } from "./commands/RequestServiceQu
|
|
|
18
19
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
19
20
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
20
21
|
import { ServiceQuotasClient } from "./ServiceQuotasClient";
|
|
22
|
+
const commands = {
|
|
23
|
+
AssociateServiceQuotaTemplateCommand,
|
|
24
|
+
DeleteServiceQuotaIncreaseRequestFromTemplateCommand,
|
|
25
|
+
DisassociateServiceQuotaTemplateCommand,
|
|
26
|
+
GetAssociationForServiceQuotaTemplateCommand,
|
|
27
|
+
GetAWSDefaultServiceQuotaCommand,
|
|
28
|
+
GetRequestedServiceQuotaChangeCommand,
|
|
29
|
+
GetServiceQuotaCommand,
|
|
30
|
+
GetServiceQuotaIncreaseRequestFromTemplateCommand,
|
|
31
|
+
ListAWSDefaultServiceQuotasCommand,
|
|
32
|
+
ListRequestedServiceQuotaChangeHistoryCommand,
|
|
33
|
+
ListRequestedServiceQuotaChangeHistoryByQuotaCommand,
|
|
34
|
+
ListServiceQuotaIncreaseRequestsInTemplateCommand,
|
|
35
|
+
ListServiceQuotasCommand,
|
|
36
|
+
ListServicesCommand,
|
|
37
|
+
ListTagsForResourceCommand,
|
|
38
|
+
PutServiceQuotaIncreaseRequestIntoTemplateCommand,
|
|
39
|
+
RequestServiceQuotaIncreaseCommand,
|
|
40
|
+
TagResourceCommand,
|
|
41
|
+
UntagResourceCommand,
|
|
42
|
+
};
|
|
21
43
|
export class ServiceQuotas extends ServiceQuotasClient {
|
|
22
|
-
associateServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
23
|
-
const command = new AssociateServiceQuotaTemplateCommand(args);
|
|
24
|
-
if (typeof optionsOrCb === "function") {
|
|
25
|
-
this.send(command, optionsOrCb);
|
|
26
|
-
}
|
|
27
|
-
else if (typeof cb === "function") {
|
|
28
|
-
if (typeof optionsOrCb !== "object")
|
|
29
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
30
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
return this.send(command, optionsOrCb);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
deleteServiceQuotaIncreaseRequestFromTemplate(args, optionsOrCb, cb) {
|
|
37
|
-
const command = new DeleteServiceQuotaIncreaseRequestFromTemplateCommand(args);
|
|
38
|
-
if (typeof optionsOrCb === "function") {
|
|
39
|
-
this.send(command, optionsOrCb);
|
|
40
|
-
}
|
|
41
|
-
else if (typeof cb === "function") {
|
|
42
|
-
if (typeof optionsOrCb !== "object")
|
|
43
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
44
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
45
|
-
}
|
|
46
|
-
else {
|
|
47
|
-
return this.send(command, optionsOrCb);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
disassociateServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
51
|
-
const command = new DisassociateServiceQuotaTemplateCommand(args);
|
|
52
|
-
if (typeof optionsOrCb === "function") {
|
|
53
|
-
this.send(command, optionsOrCb);
|
|
54
|
-
}
|
|
55
|
-
else if (typeof cb === "function") {
|
|
56
|
-
if (typeof optionsOrCb !== "object")
|
|
57
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
58
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
59
|
-
}
|
|
60
|
-
else {
|
|
61
|
-
return this.send(command, optionsOrCb);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
getAssociationForServiceQuotaTemplate(args, optionsOrCb, cb) {
|
|
65
|
-
const command = new GetAssociationForServiceQuotaTemplateCommand(args);
|
|
66
|
-
if (typeof optionsOrCb === "function") {
|
|
67
|
-
this.send(command, optionsOrCb);
|
|
68
|
-
}
|
|
69
|
-
else if (typeof cb === "function") {
|
|
70
|
-
if (typeof optionsOrCb !== "object")
|
|
71
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
72
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
73
|
-
}
|
|
74
|
-
else {
|
|
75
|
-
return this.send(command, optionsOrCb);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
getAWSDefaultServiceQuota(args, optionsOrCb, cb) {
|
|
79
|
-
const command = new GetAWSDefaultServiceQuotaCommand(args);
|
|
80
|
-
if (typeof optionsOrCb === "function") {
|
|
81
|
-
this.send(command, optionsOrCb);
|
|
82
|
-
}
|
|
83
|
-
else if (typeof cb === "function") {
|
|
84
|
-
if (typeof optionsOrCb !== "object")
|
|
85
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
86
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
return this.send(command, optionsOrCb);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
getRequestedServiceQuotaChange(args, optionsOrCb, cb) {
|
|
93
|
-
const command = new GetRequestedServiceQuotaChangeCommand(args);
|
|
94
|
-
if (typeof optionsOrCb === "function") {
|
|
95
|
-
this.send(command, optionsOrCb);
|
|
96
|
-
}
|
|
97
|
-
else if (typeof cb === "function") {
|
|
98
|
-
if (typeof optionsOrCb !== "object")
|
|
99
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
100
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
101
|
-
}
|
|
102
|
-
else {
|
|
103
|
-
return this.send(command, optionsOrCb);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
getServiceQuota(args, optionsOrCb, cb) {
|
|
107
|
-
const command = new GetServiceQuotaCommand(args);
|
|
108
|
-
if (typeof optionsOrCb === "function") {
|
|
109
|
-
this.send(command, optionsOrCb);
|
|
110
|
-
}
|
|
111
|
-
else if (typeof cb === "function") {
|
|
112
|
-
if (typeof optionsOrCb !== "object")
|
|
113
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
114
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
115
|
-
}
|
|
116
|
-
else {
|
|
117
|
-
return this.send(command, optionsOrCb);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
getServiceQuotaIncreaseRequestFromTemplate(args, optionsOrCb, cb) {
|
|
121
|
-
const command = new GetServiceQuotaIncreaseRequestFromTemplateCommand(args);
|
|
122
|
-
if (typeof optionsOrCb === "function") {
|
|
123
|
-
this.send(command, optionsOrCb);
|
|
124
|
-
}
|
|
125
|
-
else if (typeof cb === "function") {
|
|
126
|
-
if (typeof optionsOrCb !== "object")
|
|
127
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
128
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
129
|
-
}
|
|
130
|
-
else {
|
|
131
|
-
return this.send(command, optionsOrCb);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
listAWSDefaultServiceQuotas(args, optionsOrCb, cb) {
|
|
135
|
-
const command = new ListAWSDefaultServiceQuotasCommand(args);
|
|
136
|
-
if (typeof optionsOrCb === "function") {
|
|
137
|
-
this.send(command, optionsOrCb);
|
|
138
|
-
}
|
|
139
|
-
else if (typeof cb === "function") {
|
|
140
|
-
if (typeof optionsOrCb !== "object")
|
|
141
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
142
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
143
|
-
}
|
|
144
|
-
else {
|
|
145
|
-
return this.send(command, optionsOrCb);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
listRequestedServiceQuotaChangeHistory(args, optionsOrCb, cb) {
|
|
149
|
-
const command = new ListRequestedServiceQuotaChangeHistoryCommand(args);
|
|
150
|
-
if (typeof optionsOrCb === "function") {
|
|
151
|
-
this.send(command, optionsOrCb);
|
|
152
|
-
}
|
|
153
|
-
else if (typeof cb === "function") {
|
|
154
|
-
if (typeof optionsOrCb !== "object")
|
|
155
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
156
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
157
|
-
}
|
|
158
|
-
else {
|
|
159
|
-
return this.send(command, optionsOrCb);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
listRequestedServiceQuotaChangeHistoryByQuota(args, optionsOrCb, cb) {
|
|
163
|
-
const command = new ListRequestedServiceQuotaChangeHistoryByQuotaCommand(args);
|
|
164
|
-
if (typeof optionsOrCb === "function") {
|
|
165
|
-
this.send(command, optionsOrCb);
|
|
166
|
-
}
|
|
167
|
-
else if (typeof cb === "function") {
|
|
168
|
-
if (typeof optionsOrCb !== "object")
|
|
169
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
170
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
171
|
-
}
|
|
172
|
-
else {
|
|
173
|
-
return this.send(command, optionsOrCb);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
listServiceQuotaIncreaseRequestsInTemplate(args, optionsOrCb, cb) {
|
|
177
|
-
const command = new ListServiceQuotaIncreaseRequestsInTemplateCommand(args);
|
|
178
|
-
if (typeof optionsOrCb === "function") {
|
|
179
|
-
this.send(command, optionsOrCb);
|
|
180
|
-
}
|
|
181
|
-
else if (typeof cb === "function") {
|
|
182
|
-
if (typeof optionsOrCb !== "object")
|
|
183
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
184
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
185
|
-
}
|
|
186
|
-
else {
|
|
187
|
-
return this.send(command, optionsOrCb);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
listServiceQuotas(args, optionsOrCb, cb) {
|
|
191
|
-
const command = new ListServiceQuotasCommand(args);
|
|
192
|
-
if (typeof optionsOrCb === "function") {
|
|
193
|
-
this.send(command, optionsOrCb);
|
|
194
|
-
}
|
|
195
|
-
else if (typeof cb === "function") {
|
|
196
|
-
if (typeof optionsOrCb !== "object")
|
|
197
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
198
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
199
|
-
}
|
|
200
|
-
else {
|
|
201
|
-
return this.send(command, optionsOrCb);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
listServices(args, optionsOrCb, cb) {
|
|
205
|
-
const command = new ListServicesCommand(args);
|
|
206
|
-
if (typeof optionsOrCb === "function") {
|
|
207
|
-
this.send(command, optionsOrCb);
|
|
208
|
-
}
|
|
209
|
-
else if (typeof cb === "function") {
|
|
210
|
-
if (typeof optionsOrCb !== "object")
|
|
211
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
212
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
213
|
-
}
|
|
214
|
-
else {
|
|
215
|
-
return this.send(command, optionsOrCb);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
219
|
-
const command = new ListTagsForResourceCommand(args);
|
|
220
|
-
if (typeof optionsOrCb === "function") {
|
|
221
|
-
this.send(command, optionsOrCb);
|
|
222
|
-
}
|
|
223
|
-
else if (typeof cb === "function") {
|
|
224
|
-
if (typeof optionsOrCb !== "object")
|
|
225
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
226
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
227
|
-
}
|
|
228
|
-
else {
|
|
229
|
-
return this.send(command, optionsOrCb);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
putServiceQuotaIncreaseRequestIntoTemplate(args, optionsOrCb, cb) {
|
|
233
|
-
const command = new PutServiceQuotaIncreaseRequestIntoTemplateCommand(args);
|
|
234
|
-
if (typeof optionsOrCb === "function") {
|
|
235
|
-
this.send(command, optionsOrCb);
|
|
236
|
-
}
|
|
237
|
-
else if (typeof cb === "function") {
|
|
238
|
-
if (typeof optionsOrCb !== "object")
|
|
239
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
240
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
241
|
-
}
|
|
242
|
-
else {
|
|
243
|
-
return this.send(command, optionsOrCb);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
requestServiceQuotaIncrease(args, optionsOrCb, cb) {
|
|
247
|
-
const command = new RequestServiceQuotaIncreaseCommand(args);
|
|
248
|
-
if (typeof optionsOrCb === "function") {
|
|
249
|
-
this.send(command, optionsOrCb);
|
|
250
|
-
}
|
|
251
|
-
else if (typeof cb === "function") {
|
|
252
|
-
if (typeof optionsOrCb !== "object")
|
|
253
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
254
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
255
|
-
}
|
|
256
|
-
else {
|
|
257
|
-
return this.send(command, optionsOrCb);
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
tagResource(args, optionsOrCb, cb) {
|
|
261
|
-
const command = new TagResourceCommand(args);
|
|
262
|
-
if (typeof optionsOrCb === "function") {
|
|
263
|
-
this.send(command, optionsOrCb);
|
|
264
|
-
}
|
|
265
|
-
else if (typeof cb === "function") {
|
|
266
|
-
if (typeof optionsOrCb !== "object")
|
|
267
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
268
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
269
|
-
}
|
|
270
|
-
else {
|
|
271
|
-
return this.send(command, optionsOrCb);
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
untagResource(args, optionsOrCb, cb) {
|
|
275
|
-
const command = new UntagResourceCommand(args);
|
|
276
|
-
if (typeof optionsOrCb === "function") {
|
|
277
|
-
this.send(command, optionsOrCb);
|
|
278
|
-
}
|
|
279
|
-
else if (typeof cb === "function") {
|
|
280
|
-
if (typeof optionsOrCb !== "object")
|
|
281
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
282
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
283
|
-
}
|
|
284
|
-
else {
|
|
285
|
-
return this.send(command, optionsOrCb);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
44
|
}
|
|
45
|
+
createAggregatedClient(commands, ServiceQuotas);
|
|
@@ -19,159 +19,127 @@ import { RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCom
|
|
|
19
19
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
20
20
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { ServiceQuotasClient } from "./ServiceQuotasClient";
|
|
22
|
-
|
|
23
|
-
* @public
|
|
24
|
-
* <p>With Service Quotas, you can view and manage your quotas easily as your AWS workloads
|
|
25
|
-
* grow. Quotas, also referred to as limits, are the maximum number of resources that you can
|
|
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>
|
|
27
|
-
*/
|
|
28
|
-
export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
22
|
+
export interface ServiceQuotas {
|
|
29
23
|
/**
|
|
30
|
-
* @
|
|
31
|
-
* <p>Associates your quota request template with your organization. When a new account is
|
|
32
|
-
* created in your organization, the quota increase requests in the template are automatically
|
|
33
|
-
* applied to the account. You can add a quota increase request for any adjustable quota to your
|
|
34
|
-
* template.</p>
|
|
24
|
+
* @see {@link AssociateServiceQuotaTemplateCommand}
|
|
35
25
|
*/
|
|
36
26
|
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceQuotaTemplateCommandOutput>;
|
|
37
27
|
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
38
28
|
associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
39
29
|
/**
|
|
40
|
-
* @
|
|
41
|
-
* <p>Deletes the quota increase request for the specified quota from your quota request
|
|
42
|
-
* template.</p>
|
|
30
|
+
* @see {@link DeleteServiceQuotaIncreaseRequestFromTemplateCommand}
|
|
43
31
|
*/
|
|
44
32
|
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
45
33
|
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
46
34
|
deleteServiceQuotaIncreaseRequestFromTemplate(args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
47
35
|
/**
|
|
48
|
-
* @
|
|
49
|
-
* <p>Disables your quota request template. After a template is disabled, the quota increase
|
|
50
|
-
* requests in the template are not applied to new accounts in your organization. Disabling a
|
|
51
|
-
* quota request template does not apply its quota increase requests.</p>
|
|
36
|
+
* @see {@link DisassociateServiceQuotaTemplateCommand}
|
|
52
37
|
*/
|
|
53
38
|
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
|
|
54
39
|
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
55
40
|
disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
|
|
56
41
|
/**
|
|
57
|
-
* @
|
|
58
|
-
* <p>Retrieves the status of the association for the quota request template.</p>
|
|
42
|
+
* @see {@link GetAssociationForServiceQuotaTemplateCommand}
|
|
59
43
|
*/
|
|
60
44
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
61
45
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
62
46
|
getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
|
|
63
47
|
/**
|
|
64
|
-
* @
|
|
65
|
-
* <p>Retrieves the default value for the specified quota. The default value does not reflect
|
|
66
|
-
* any quota increases.</p>
|
|
48
|
+
* @see {@link GetAWSDefaultServiceQuotaCommand}
|
|
67
49
|
*/
|
|
68
50
|
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetAWSDefaultServiceQuotaCommandOutput>;
|
|
69
51
|
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
70
52
|
getAWSDefaultServiceQuota(args: GetAWSDefaultServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void): void;
|
|
71
53
|
/**
|
|
72
|
-
* @
|
|
73
|
-
* <p>Retrieves information about the specified quota increase request.</p>
|
|
54
|
+
* @see {@link GetRequestedServiceQuotaChangeCommand}
|
|
74
55
|
*/
|
|
75
56
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options?: __HttpHandlerOptions): Promise<GetRequestedServiceQuotaChangeCommandOutput>;
|
|
76
57
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
77
58
|
getRequestedServiceQuotaChange(args: GetRequestedServiceQuotaChangeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void): void;
|
|
78
59
|
/**
|
|
79
|
-
* @
|
|
80
|
-
* <p>Retrieves the applied quota value for the specified quota. For some quotas, only the
|
|
81
|
-
* default values are available. If the applied quota value is not available for a quota, the
|
|
82
|
-
* quota is not retrieved.</p>
|
|
60
|
+
* @see {@link GetServiceQuotaCommand}
|
|
83
61
|
*/
|
|
84
62
|
getServiceQuota(args: GetServiceQuotaCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceQuotaCommandOutput>;
|
|
85
63
|
getServiceQuota(args: GetServiceQuotaCommandInput, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
86
64
|
getServiceQuota(args: GetServiceQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaCommandOutput) => void): void;
|
|
87
65
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Retrieves information about the specified quota increase request in your quota request
|
|
90
|
-
* template.</p>
|
|
66
|
+
* @see {@link GetServiceQuotaIncreaseRequestFromTemplateCommand}
|
|
91
67
|
*/
|
|
92
68
|
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
93
69
|
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
94
70
|
getServiceQuotaIncreaseRequestFromTemplate(args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void): void;
|
|
95
71
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* <p>Lists the default values for the quotas for the specified AWS service. A default value
|
|
98
|
-
* does not reflect any quota increases.</p>
|
|
72
|
+
* @see {@link ListAWSDefaultServiceQuotasCommand}
|
|
99
73
|
*/
|
|
100
74
|
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, options?: __HttpHandlerOptions): Promise<ListAWSDefaultServiceQuotasCommandOutput>;
|
|
101
75
|
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
102
76
|
listAWSDefaultServiceQuotas(args: ListAWSDefaultServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void): void;
|
|
103
77
|
/**
|
|
104
|
-
* @
|
|
105
|
-
* <p>Retrieves the quota increase requests for the specified service.</p>
|
|
78
|
+
* @see {@link ListRequestedServiceQuotaChangeHistoryCommand}
|
|
106
79
|
*/
|
|
107
80
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
108
81
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
109
82
|
listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
|
|
110
83
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Retrieves the quota increase requests for the specified quota.</p>
|
|
84
|
+
* @see {@link ListRequestedServiceQuotaChangeHistoryByQuotaCommand}
|
|
113
85
|
*/
|
|
114
86
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
|
|
115
87
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
116
88
|
listRequestedServiceQuotaChangeHistoryByQuota(args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void): void;
|
|
117
89
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>Lists the quota increase requests in the specified quota request template.</p>
|
|
90
|
+
* @see {@link ListServiceQuotaIncreaseRequestsInTemplateCommand}
|
|
120
91
|
*/
|
|
121
92
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
122
93
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
123
94
|
listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
|
|
124
95
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Lists the applied quota values for the specified AWS service. For some quotas, only the
|
|
127
|
-
* default values are available. If the applied quota value is not available for a quota, the
|
|
128
|
-
* quota is not retrieved.</p>
|
|
96
|
+
* @see {@link ListServiceQuotasCommand}
|
|
129
97
|
*/
|
|
130
98
|
listServiceQuotas(args: ListServiceQuotasCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotasCommandOutput>;
|
|
131
99
|
listServiceQuotas(args: ListServiceQuotasCommandInput, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
132
100
|
listServiceQuotas(args: ListServiceQuotasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotasCommandOutput) => void): void;
|
|
133
101
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p>Lists the names and codes for the services integrated with Service Quotas.</p>
|
|
102
|
+
* @see {@link ListServicesCommand}
|
|
136
103
|
*/
|
|
137
104
|
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
138
105
|
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
139
106
|
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
140
107
|
/**
|
|
141
|
-
* @
|
|
142
|
-
* <p>Returns a list of the tags assigned to the specified applied quota.</p>
|
|
108
|
+
* @see {@link ListTagsForResourceCommand}
|
|
143
109
|
*/
|
|
144
110
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
145
111
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
146
112
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
147
113
|
/**
|
|
148
|
-
* @
|
|
149
|
-
* <p>Adds a quota increase request to your quota request template.</p>
|
|
114
|
+
* @see {@link PutServiceQuotaIncreaseRequestIntoTemplateCommand}
|
|
150
115
|
*/
|
|
151
116
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options?: __HttpHandlerOptions): Promise<PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput>;
|
|
152
117
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
153
118
|
putServiceQuotaIncreaseRequestIntoTemplate(args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void): void;
|
|
154
119
|
/**
|
|
155
|
-
* @
|
|
156
|
-
* <p>Submits a quota increase request for the specified quota.</p>
|
|
120
|
+
* @see {@link RequestServiceQuotaIncreaseCommand}
|
|
157
121
|
*/
|
|
158
122
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options?: __HttpHandlerOptions): Promise<RequestServiceQuotaIncreaseCommandOutput>;
|
|
159
123
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
160
124
|
requestServiceQuotaIncrease(args: RequestServiceQuotaIncreaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void): void;
|
|
161
125
|
/**
|
|
162
|
-
* @
|
|
163
|
-
* <p>Adds tags to the specified applied quota. You can include one or more tags to add to the
|
|
164
|
-
* quota.</p>
|
|
126
|
+
* @see {@link TagResourceCommand}
|
|
165
127
|
*/
|
|
166
128
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
167
129
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
168
130
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
169
131
|
/**
|
|
170
|
-
* @
|
|
171
|
-
* <p>Removes tags from the specified applied quota. You can specify one or more tags to
|
|
172
|
-
* remove.</p>
|
|
132
|
+
* @see {@link UntagResourceCommand}
|
|
173
133
|
*/
|
|
174
134
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
175
135
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
176
136
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
177
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* <p>With Service Quotas, you can view and manage your quotas easily as your AWS workloads
|
|
141
|
+
* grow. Quotas, also referred to as limits, are the maximum number of resources that you can
|
|
142
|
+
* 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>
|
|
143
|
+
*/
|
|
144
|
+
export declare class ServiceQuotas extends ServiceQuotasClient implements ServiceQuotas {
|
|
145
|
+
}
|
|
@@ -76,7 +76,7 @@ import {
|
|
|
76
76
|
UntagResourceCommandOutput,
|
|
77
77
|
} from "./commands/UntagResourceCommand";
|
|
78
78
|
import { ServiceQuotasClient } from "./ServiceQuotasClient";
|
|
79
|
-
export
|
|
79
|
+
export interface ServiceQuotas {
|
|
80
80
|
associateServiceQuotaTemplate(
|
|
81
81
|
args: AssociateServiceQuotaTemplateCommandInput,
|
|
82
82
|
options?: __HttpHandlerOptions
|
|
@@ -367,3 +367,6 @@ export declare class ServiceQuotas extends ServiceQuotasClient {
|
|
|
367
367
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
368
368
|
): void;
|
|
369
369
|
}
|
|
370
|
+
export declare class ServiceQuotas
|
|
371
|
+
extends ServiceQuotasClient
|
|
372
|
+
implements ServiceQuotas {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-quotas",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|