@aws-sdk/client-service-quotas 3.489.0 → 3.495.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 +1 -49
- package/dist-cjs/ServiceQuotasClient.js +1 -43
- package/dist-cjs/commands/AssociateServiceQuotaTemplateCommand.js +1 -28
- package/dist-cjs/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +1 -28
- package/dist-cjs/commands/DisassociateServiceQuotaTemplateCommand.js +1 -28
- package/dist-cjs/commands/GetAWSDefaultServiceQuotaCommand.js +1 -28
- package/dist-cjs/commands/GetAssociationForServiceQuotaTemplateCommand.js +1 -28
- package/dist-cjs/commands/GetRequestedServiceQuotaChangeCommand.js +1 -28
- package/dist-cjs/commands/GetServiceQuotaCommand.js +1 -28
- package/dist-cjs/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +1 -28
- package/dist-cjs/commands/ListAWSDefaultServiceQuotasCommand.js +1 -28
- package/dist-cjs/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +1 -28
- package/dist-cjs/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +1 -28
- package/dist-cjs/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +1 -28
- package/dist-cjs/commands/ListServiceQuotasCommand.js +1 -28
- package/dist-cjs/commands/ListServicesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +1 -28
- package/dist-cjs/commands/RequestServiceQuotaIncreaseCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -22
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2389 -11
- package/dist-cjs/models/ServiceQuotasServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -279
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAWSDefaultServiceQuotasPaginator.js +1 -7
- package/dist-cjs/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +1 -7
- package/dist-cjs/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +1 -7
- package/dist-cjs/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +1 -7
- package/dist-cjs/pagination/ListServiceQuotasPaginator.js +1 -7
- package/dist-cjs/pagination/ListServicesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -10
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1475
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceQuotasServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class ServiceQuotasServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, ServiceQuotasServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.ServiceQuotasServiceException = ServiceQuotasServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,279 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TooManyTagsException = exports.TagPolicyViolationException = exports.ResourceAlreadyExistsException = exports.QuotaExceededException = exports.InvalidResourceStateException = exports.InvalidPaginationTokenException = exports.RequestStatus = exports.QuotaContextScope = exports.PeriodUnit = exports.ServiceQuotaTemplateAssociationStatus = exports.ErrorCode = exports.ServiceQuotaTemplateNotInUseException = exports.NoSuchResourceException = exports.IllegalArgumentException = exports.TooManyRequestsException = exports.TemplatesNotAvailableInRegionException = exports.ServiceException = exports.OrganizationNotInAllFeaturesModeException = exports.NoAvailableOrganizationException = exports.DependencyAccessDeniedException = exports.AWSServiceAccessNotEnabledException = exports.AppliedLevelEnum = exports.AccessDeniedException = void 0;
|
|
4
|
-
const ServiceQuotasServiceException_1 = require("./ServiceQuotasServiceException");
|
|
5
|
-
class AccessDeniedException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "AccessDeniedException";
|
|
13
|
-
this.$fault = "client";
|
|
14
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
-
this.Message = opts.Message;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
-
exports.AppliedLevelEnum = {
|
|
20
|
-
ACCOUNT: "ACCOUNT",
|
|
21
|
-
ALL: "ALL",
|
|
22
|
-
RESOURCE: "RESOURCE",
|
|
23
|
-
};
|
|
24
|
-
class AWSServiceAccessNotEnabledException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
25
|
-
constructor(opts) {
|
|
26
|
-
super({
|
|
27
|
-
name: "AWSServiceAccessNotEnabledException",
|
|
28
|
-
$fault: "client",
|
|
29
|
-
...opts,
|
|
30
|
-
});
|
|
31
|
-
this.name = "AWSServiceAccessNotEnabledException";
|
|
32
|
-
this.$fault = "client";
|
|
33
|
-
Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
|
|
34
|
-
this.Message = opts.Message;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
exports.AWSServiceAccessNotEnabledException = AWSServiceAccessNotEnabledException;
|
|
38
|
-
class DependencyAccessDeniedException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
39
|
-
constructor(opts) {
|
|
40
|
-
super({
|
|
41
|
-
name: "DependencyAccessDeniedException",
|
|
42
|
-
$fault: "client",
|
|
43
|
-
...opts,
|
|
44
|
-
});
|
|
45
|
-
this.name = "DependencyAccessDeniedException";
|
|
46
|
-
this.$fault = "client";
|
|
47
|
-
Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
|
|
48
|
-
this.Message = opts.Message;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
exports.DependencyAccessDeniedException = DependencyAccessDeniedException;
|
|
52
|
-
class NoAvailableOrganizationException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "NoAvailableOrganizationException",
|
|
56
|
-
$fault: "client",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
this.name = "NoAvailableOrganizationException";
|
|
60
|
-
this.$fault = "client";
|
|
61
|
-
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
62
|
-
this.Message = opts.Message;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
|
|
66
|
-
class OrganizationNotInAllFeaturesModeException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
67
|
-
constructor(opts) {
|
|
68
|
-
super({
|
|
69
|
-
name: "OrganizationNotInAllFeaturesModeException",
|
|
70
|
-
$fault: "client",
|
|
71
|
-
...opts,
|
|
72
|
-
});
|
|
73
|
-
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
74
|
-
this.$fault = "client";
|
|
75
|
-
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
76
|
-
this.Message = opts.Message;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
|
|
80
|
-
class ServiceException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "ServiceException",
|
|
84
|
-
$fault: "server",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
this.name = "ServiceException";
|
|
88
|
-
this.$fault = "server";
|
|
89
|
-
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
90
|
-
this.Message = opts.Message;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
exports.ServiceException = ServiceException;
|
|
94
|
-
class TemplatesNotAvailableInRegionException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
95
|
-
constructor(opts) {
|
|
96
|
-
super({
|
|
97
|
-
name: "TemplatesNotAvailableInRegionException",
|
|
98
|
-
$fault: "client",
|
|
99
|
-
...opts,
|
|
100
|
-
});
|
|
101
|
-
this.name = "TemplatesNotAvailableInRegionException";
|
|
102
|
-
this.$fault = "client";
|
|
103
|
-
Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
|
|
104
|
-
this.Message = opts.Message;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
exports.TemplatesNotAvailableInRegionException = TemplatesNotAvailableInRegionException;
|
|
108
|
-
class TooManyRequestsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
109
|
-
constructor(opts) {
|
|
110
|
-
super({
|
|
111
|
-
name: "TooManyRequestsException",
|
|
112
|
-
$fault: "client",
|
|
113
|
-
...opts,
|
|
114
|
-
});
|
|
115
|
-
this.name = "TooManyRequestsException";
|
|
116
|
-
this.$fault = "client";
|
|
117
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
118
|
-
this.Message = opts.Message;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
122
|
-
class IllegalArgumentException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "IllegalArgumentException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
this.name = "IllegalArgumentException";
|
|
130
|
-
this.$fault = "client";
|
|
131
|
-
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
exports.IllegalArgumentException = IllegalArgumentException;
|
|
136
|
-
class NoSuchResourceException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "NoSuchResourceException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
this.name = "NoSuchResourceException";
|
|
144
|
-
this.$fault = "client";
|
|
145
|
-
Object.setPrototypeOf(this, NoSuchResourceException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
exports.NoSuchResourceException = NoSuchResourceException;
|
|
150
|
-
class ServiceQuotaTemplateNotInUseException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "ServiceQuotaTemplateNotInUseException",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
this.name = "ServiceQuotaTemplateNotInUseException";
|
|
158
|
-
this.$fault = "client";
|
|
159
|
-
Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
exports.ServiceQuotaTemplateNotInUseException = ServiceQuotaTemplateNotInUseException;
|
|
164
|
-
exports.ErrorCode = {
|
|
165
|
-
DEPENDENCY_ACCESS_DENIED_ERROR: "DEPENDENCY_ACCESS_DENIED_ERROR",
|
|
166
|
-
DEPENDENCY_SERVICE_ERROR: "DEPENDENCY_SERVICE_ERROR",
|
|
167
|
-
DEPENDENCY_THROTTLING_ERROR: "DEPENDENCY_THROTTLING_ERROR",
|
|
168
|
-
SERVICE_QUOTA_NOT_AVAILABLE_ERROR: "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
|
|
169
|
-
};
|
|
170
|
-
exports.ServiceQuotaTemplateAssociationStatus = {
|
|
171
|
-
ASSOCIATED: "ASSOCIATED",
|
|
172
|
-
DISASSOCIATED: "DISASSOCIATED",
|
|
173
|
-
};
|
|
174
|
-
exports.PeriodUnit = {
|
|
175
|
-
DAY: "DAY",
|
|
176
|
-
HOUR: "HOUR",
|
|
177
|
-
MICROSECOND: "MICROSECOND",
|
|
178
|
-
MILLISECOND: "MILLISECOND",
|
|
179
|
-
MINUTE: "MINUTE",
|
|
180
|
-
SECOND: "SECOND",
|
|
181
|
-
WEEK: "WEEK",
|
|
182
|
-
};
|
|
183
|
-
exports.QuotaContextScope = {
|
|
184
|
-
ACCOUNT: "ACCOUNT",
|
|
185
|
-
RESOURCE: "RESOURCE",
|
|
186
|
-
};
|
|
187
|
-
exports.RequestStatus = {
|
|
188
|
-
APPROVED: "APPROVED",
|
|
189
|
-
CASE_CLOSED: "CASE_CLOSED",
|
|
190
|
-
CASE_OPENED: "CASE_OPENED",
|
|
191
|
-
DENIED: "DENIED",
|
|
192
|
-
INVALID_REQUEST: "INVALID_REQUEST",
|
|
193
|
-
NOT_APPROVED: "NOT_APPROVED",
|
|
194
|
-
PENDING: "PENDING",
|
|
195
|
-
};
|
|
196
|
-
class InvalidPaginationTokenException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "InvalidPaginationTokenException",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
this.name = "InvalidPaginationTokenException";
|
|
204
|
-
this.$fault = "client";
|
|
205
|
-
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
206
|
-
this.Message = opts.Message;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
210
|
-
class InvalidResourceStateException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "InvalidResourceStateException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
this.name = "InvalidResourceStateException";
|
|
218
|
-
this.$fault = "client";
|
|
219
|
-
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
220
|
-
this.Message = opts.Message;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
224
|
-
class QuotaExceededException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
225
|
-
constructor(opts) {
|
|
226
|
-
super({
|
|
227
|
-
name: "QuotaExceededException",
|
|
228
|
-
$fault: "client",
|
|
229
|
-
...opts,
|
|
230
|
-
});
|
|
231
|
-
this.name = "QuotaExceededException";
|
|
232
|
-
this.$fault = "client";
|
|
233
|
-
Object.setPrototypeOf(this, QuotaExceededException.prototype);
|
|
234
|
-
this.Message = opts.Message;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
exports.QuotaExceededException = QuotaExceededException;
|
|
238
|
-
class ResourceAlreadyExistsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
239
|
-
constructor(opts) {
|
|
240
|
-
super({
|
|
241
|
-
name: "ResourceAlreadyExistsException",
|
|
242
|
-
$fault: "client",
|
|
243
|
-
...opts,
|
|
244
|
-
});
|
|
245
|
-
this.name = "ResourceAlreadyExistsException";
|
|
246
|
-
this.$fault = "client";
|
|
247
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
248
|
-
this.Message = opts.Message;
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
252
|
-
class TagPolicyViolationException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
253
|
-
constructor(opts) {
|
|
254
|
-
super({
|
|
255
|
-
name: "TagPolicyViolationException",
|
|
256
|
-
$fault: "client",
|
|
257
|
-
...opts,
|
|
258
|
-
});
|
|
259
|
-
this.name = "TagPolicyViolationException";
|
|
260
|
-
this.$fault = "client";
|
|
261
|
-
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
262
|
-
this.Message = opts.Message;
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
exports.TagPolicyViolationException = TagPolicyViolationException;
|
|
266
|
-
class TooManyTagsException extends ServiceQuotasServiceException_1.ServiceQuotasServiceException {
|
|
267
|
-
constructor(opts) {
|
|
268
|
-
super({
|
|
269
|
-
name: "TooManyTagsException",
|
|
270
|
-
$fault: "client",
|
|
271
|
-
...opts,
|
|
272
|
-
});
|
|
273
|
-
this.name = "TooManyTagsException";
|
|
274
|
-
this.$fault = "client";
|
|
275
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
276
|
-
this.Message = opts.Message;
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAWSDefaultServiceQuotas = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListAWSDefaultServiceQuotasCommand_1 = require("../commands/ListAWSDefaultServiceQuotasCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListAWSDefaultServiceQuotas = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListAWSDefaultServiceQuotasCommand_1.ListAWSDefaultServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1 = require("../commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListRequestedServiceQuotaChangeHistoryByQuota = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryByQuotaCommand_1.ListRequestedServiceQuotaChangeHistoryByQuotaCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListRequestedServiceQuotaChangeHistory = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListRequestedServiceQuotaChangeHistoryCommand_1 = require("../commands/ListRequestedServiceQuotaChangeHistoryCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListRequestedServiceQuotaChangeHistory = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryCommand_1.ListRequestedServiceQuotaChangeHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListServiceQuotaIncreaseRequestsInTemplate = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListServiceQuotaIncreaseRequestsInTemplateCommand_1 = require("../commands/ListServiceQuotaIncreaseRequestsInTemplateCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListServiceQuotaIncreaseRequestsInTemplate = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServiceQuotaIncreaseRequestsInTemplateCommand_1.ListServiceQuotaIncreaseRequestsInTemplateCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListServiceQuotas = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListServiceQuotasCommand_1 = require("../commands/ListServiceQuotasCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListServiceQuotas = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServiceQuotasCommand_1.ListServiceQuotasCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListServices = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListServicesCommand_1 = require("../commands/ListServicesCommand");
|
|
6
|
-
const ServiceQuotasClient_1 = require("../ServiceQuotasClient");
|
|
7
|
-
exports.paginateListServices = (0, core_1.createPaginator)(ServiceQuotasClient_1.ServiceQuotasClient, ListServicesCommand_1.ListServicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,10 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListAWSDefaultServiceQuotasPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListRequestedServiceQuotaChangeHistoryByQuotaPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListRequestedServiceQuotaChangeHistoryPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListServiceQuotaIncreaseRequestsInTemplatePaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./ListServiceQuotasPaginator"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./ListServicesPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|