@aws-sdk/client-service-quotas 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ServiceQuotas.d.ts +86 -133
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSupportCaseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetAutoManagementConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetQuotaUtilizationReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartAutoManagementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartQuotaUtilizationReportCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StopAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAutoManagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +16 -67
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -95,10 +95,7 @@ import {
|
|
|
95
95
|
StopAutoManagementCommandInput,
|
|
96
96
|
StopAutoManagementCommandOutput,
|
|
97
97
|
} from "./commands/StopAutoManagementCommand";
|
|
98
|
-
import {
|
|
99
|
-
TagResourceCommandInput,
|
|
100
|
-
TagResourceCommandOutput,
|
|
101
|
-
} from "./commands/TagResourceCommand";
|
|
98
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
102
99
|
import {
|
|
103
100
|
UntagResourceCommandInput,
|
|
104
101
|
UntagResourceCommandOutput,
|
|
@@ -112,436 +109,392 @@ export interface ServiceQuotas {
|
|
|
112
109
|
associateServiceQuotaTemplate(): Promise<AssociateServiceQuotaTemplateCommandOutput>;
|
|
113
110
|
associateServiceQuotaTemplate(
|
|
114
111
|
args: AssociateServiceQuotaTemplateCommandInput,
|
|
115
|
-
options?: __HttpHandlerOptions
|
|
112
|
+
options?: __HttpHandlerOptions,
|
|
116
113
|
): Promise<AssociateServiceQuotaTemplateCommandOutput>;
|
|
117
114
|
associateServiceQuotaTemplate(
|
|
118
115
|
args: AssociateServiceQuotaTemplateCommandInput,
|
|
119
|
-
cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void,
|
|
120
117
|
): void;
|
|
121
118
|
associateServiceQuotaTemplate(
|
|
122
119
|
args: AssociateServiceQuotaTemplateCommandInput,
|
|
123
120
|
options: __HttpHandlerOptions,
|
|
124
|
-
cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void,
|
|
125
122
|
): void;
|
|
126
123
|
createSupportCase(
|
|
127
124
|
args: CreateSupportCaseCommandInput,
|
|
128
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
129
126
|
): Promise<CreateSupportCaseCommandOutput>;
|
|
130
127
|
createSupportCase(
|
|
131
128
|
args: CreateSupportCaseCommandInput,
|
|
132
|
-
cb: (err: any, data?: CreateSupportCaseCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: CreateSupportCaseCommandOutput) => void,
|
|
133
130
|
): void;
|
|
134
131
|
createSupportCase(
|
|
135
132
|
args: CreateSupportCaseCommandInput,
|
|
136
133
|
options: __HttpHandlerOptions,
|
|
137
|
-
cb: (err: any, data?: CreateSupportCaseCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: CreateSupportCaseCommandOutput) => void,
|
|
138
135
|
): void;
|
|
139
136
|
deleteServiceQuotaIncreaseRequestFromTemplate(
|
|
140
137
|
args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
141
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
142
139
|
): Promise<DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
143
140
|
deleteServiceQuotaIncreaseRequestFromTemplate(
|
|
144
141
|
args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
145
|
-
cb: (
|
|
146
|
-
err: any,
|
|
147
|
-
data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
148
|
-
) => void
|
|
142
|
+
cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void,
|
|
149
143
|
): void;
|
|
150
144
|
deleteServiceQuotaIncreaseRequestFromTemplate(
|
|
151
145
|
args: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
152
146
|
options: __HttpHandlerOptions,
|
|
153
|
-
cb: (
|
|
154
|
-
err: any,
|
|
155
|
-
data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
156
|
-
) => void
|
|
147
|
+
cb: (err: any, data?: DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void,
|
|
157
148
|
): void;
|
|
158
149
|
disassociateServiceQuotaTemplate(): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
|
|
159
150
|
disassociateServiceQuotaTemplate(
|
|
160
151
|
args: DisassociateServiceQuotaTemplateCommandInput,
|
|
161
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
162
153
|
): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
|
|
163
154
|
disassociateServiceQuotaTemplate(
|
|
164
155
|
args: DisassociateServiceQuotaTemplateCommandInput,
|
|
165
|
-
cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void,
|
|
166
157
|
): void;
|
|
167
158
|
disassociateServiceQuotaTemplate(
|
|
168
159
|
args: DisassociateServiceQuotaTemplateCommandInput,
|
|
169
160
|
options: __HttpHandlerOptions,
|
|
170
|
-
cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void,
|
|
171
162
|
): void;
|
|
172
163
|
getAssociationForServiceQuotaTemplate(): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
173
164
|
getAssociationForServiceQuotaTemplate(
|
|
174
165
|
args: GetAssociationForServiceQuotaTemplateCommandInput,
|
|
175
|
-
options?: __HttpHandlerOptions
|
|
166
|
+
options?: __HttpHandlerOptions,
|
|
176
167
|
): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
177
168
|
getAssociationForServiceQuotaTemplate(
|
|
178
169
|
args: GetAssociationForServiceQuotaTemplateCommandInput,
|
|
179
|
-
cb: (
|
|
180
|
-
err: any,
|
|
181
|
-
data?: GetAssociationForServiceQuotaTemplateCommandOutput
|
|
182
|
-
) => void
|
|
170
|
+
cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void,
|
|
183
171
|
): void;
|
|
184
172
|
getAssociationForServiceQuotaTemplate(
|
|
185
173
|
args: GetAssociationForServiceQuotaTemplateCommandInput,
|
|
186
174
|
options: __HttpHandlerOptions,
|
|
187
|
-
cb: (
|
|
188
|
-
err: any,
|
|
189
|
-
data?: GetAssociationForServiceQuotaTemplateCommandOutput
|
|
190
|
-
) => void
|
|
175
|
+
cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void,
|
|
191
176
|
): void;
|
|
192
177
|
getAutoManagementConfiguration(): Promise<GetAutoManagementConfigurationCommandOutput>;
|
|
193
178
|
getAutoManagementConfiguration(
|
|
194
179
|
args: GetAutoManagementConfigurationCommandInput,
|
|
195
|
-
options?: __HttpHandlerOptions
|
|
180
|
+
options?: __HttpHandlerOptions,
|
|
196
181
|
): Promise<GetAutoManagementConfigurationCommandOutput>;
|
|
197
182
|
getAutoManagementConfiguration(
|
|
198
183
|
args: GetAutoManagementConfigurationCommandInput,
|
|
199
|
-
cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void,
|
|
200
185
|
): void;
|
|
201
186
|
getAutoManagementConfiguration(
|
|
202
187
|
args: GetAutoManagementConfigurationCommandInput,
|
|
203
188
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void,
|
|
205
190
|
): void;
|
|
206
191
|
getAWSDefaultServiceQuota(
|
|
207
192
|
args: GetAWSDefaultServiceQuotaCommandInput,
|
|
208
|
-
options?: __HttpHandlerOptions
|
|
193
|
+
options?: __HttpHandlerOptions,
|
|
209
194
|
): Promise<GetAWSDefaultServiceQuotaCommandOutput>;
|
|
210
195
|
getAWSDefaultServiceQuota(
|
|
211
196
|
args: GetAWSDefaultServiceQuotaCommandInput,
|
|
212
|
-
cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void,
|
|
213
198
|
): void;
|
|
214
199
|
getAWSDefaultServiceQuota(
|
|
215
200
|
args: GetAWSDefaultServiceQuotaCommandInput,
|
|
216
201
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void
|
|
202
|
+
cb: (err: any, data?: GetAWSDefaultServiceQuotaCommandOutput) => void,
|
|
218
203
|
): void;
|
|
219
204
|
getQuotaUtilizationReport(
|
|
220
205
|
args: GetQuotaUtilizationReportCommandInput,
|
|
221
|
-
options?: __HttpHandlerOptions
|
|
206
|
+
options?: __HttpHandlerOptions,
|
|
222
207
|
): Promise<GetQuotaUtilizationReportCommandOutput>;
|
|
223
208
|
getQuotaUtilizationReport(
|
|
224
209
|
args: GetQuotaUtilizationReportCommandInput,
|
|
225
|
-
cb: (err: any, data?: GetQuotaUtilizationReportCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: GetQuotaUtilizationReportCommandOutput) => void,
|
|
226
211
|
): void;
|
|
227
212
|
getQuotaUtilizationReport(
|
|
228
213
|
args: GetQuotaUtilizationReportCommandInput,
|
|
229
214
|
options: __HttpHandlerOptions,
|
|
230
|
-
cb: (err: any, data?: GetQuotaUtilizationReportCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: GetQuotaUtilizationReportCommandOutput) => void,
|
|
231
216
|
): void;
|
|
232
217
|
getRequestedServiceQuotaChange(
|
|
233
218
|
args: GetRequestedServiceQuotaChangeCommandInput,
|
|
234
|
-
options?: __HttpHandlerOptions
|
|
219
|
+
options?: __HttpHandlerOptions,
|
|
235
220
|
): Promise<GetRequestedServiceQuotaChangeCommandOutput>;
|
|
236
221
|
getRequestedServiceQuotaChange(
|
|
237
222
|
args: GetRequestedServiceQuotaChangeCommandInput,
|
|
238
|
-
cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void,
|
|
239
224
|
): void;
|
|
240
225
|
getRequestedServiceQuotaChange(
|
|
241
226
|
args: GetRequestedServiceQuotaChangeCommandInput,
|
|
242
227
|
options: __HttpHandlerOptions,
|
|
243
|
-
cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: GetRequestedServiceQuotaChangeCommandOutput) => void,
|
|
244
229
|
): void;
|
|
245
230
|
getServiceQuota(
|
|
246
231
|
args: GetServiceQuotaCommandInput,
|
|
247
|
-
options?: __HttpHandlerOptions
|
|
232
|
+
options?: __HttpHandlerOptions,
|
|
248
233
|
): Promise<GetServiceQuotaCommandOutput>;
|
|
249
234
|
getServiceQuota(
|
|
250
235
|
args: GetServiceQuotaCommandInput,
|
|
251
|
-
cb: (err: any, data?: GetServiceQuotaCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: GetServiceQuotaCommandOutput) => void,
|
|
252
237
|
): void;
|
|
253
238
|
getServiceQuota(
|
|
254
239
|
args: GetServiceQuotaCommandInput,
|
|
255
240
|
options: __HttpHandlerOptions,
|
|
256
|
-
cb: (err: any, data?: GetServiceQuotaCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: GetServiceQuotaCommandOutput) => void,
|
|
257
242
|
): void;
|
|
258
243
|
getServiceQuotaIncreaseRequestFromTemplate(
|
|
259
244
|
args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
260
|
-
options?: __HttpHandlerOptions
|
|
245
|
+
options?: __HttpHandlerOptions,
|
|
261
246
|
): Promise<GetServiceQuotaIncreaseRequestFromTemplateCommandOutput>;
|
|
262
247
|
getServiceQuotaIncreaseRequestFromTemplate(
|
|
263
248
|
args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
264
|
-
cb: (
|
|
265
|
-
err: any,
|
|
266
|
-
data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
267
|
-
) => void
|
|
249
|
+
cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void,
|
|
268
250
|
): void;
|
|
269
251
|
getServiceQuotaIncreaseRequestFromTemplate(
|
|
270
252
|
args: GetServiceQuotaIncreaseRequestFromTemplateCommandInput,
|
|
271
253
|
options: __HttpHandlerOptions,
|
|
272
|
-
cb: (
|
|
273
|
-
err: any,
|
|
274
|
-
data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
|
|
275
|
-
) => void
|
|
254
|
+
cb: (err: any, data?: GetServiceQuotaIncreaseRequestFromTemplateCommandOutput) => void,
|
|
276
255
|
): void;
|
|
277
256
|
listAWSDefaultServiceQuotas(
|
|
278
257
|
args: ListAWSDefaultServiceQuotasCommandInput,
|
|
279
|
-
options?: __HttpHandlerOptions
|
|
258
|
+
options?: __HttpHandlerOptions,
|
|
280
259
|
): Promise<ListAWSDefaultServiceQuotasCommandOutput>;
|
|
281
260
|
listAWSDefaultServiceQuotas(
|
|
282
261
|
args: ListAWSDefaultServiceQuotasCommandInput,
|
|
283
|
-
cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void,
|
|
284
263
|
): void;
|
|
285
264
|
listAWSDefaultServiceQuotas(
|
|
286
265
|
args: ListAWSDefaultServiceQuotasCommandInput,
|
|
287
266
|
options: __HttpHandlerOptions,
|
|
288
|
-
cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void
|
|
267
|
+
cb: (err: any, data?: ListAWSDefaultServiceQuotasCommandOutput) => void,
|
|
289
268
|
): void;
|
|
290
269
|
listRequestedServiceQuotaChangeHistory(): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
291
270
|
listRequestedServiceQuotaChangeHistory(
|
|
292
271
|
args: ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
293
|
-
options?: __HttpHandlerOptions
|
|
272
|
+
options?: __HttpHandlerOptions,
|
|
294
273
|
): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
295
274
|
listRequestedServiceQuotaChangeHistory(
|
|
296
275
|
args: ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
297
|
-
cb: (
|
|
298
|
-
err: any,
|
|
299
|
-
data?: ListRequestedServiceQuotaChangeHistoryCommandOutput
|
|
300
|
-
) => void
|
|
276
|
+
cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void,
|
|
301
277
|
): void;
|
|
302
278
|
listRequestedServiceQuotaChangeHistory(
|
|
303
279
|
args: ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
304
280
|
options: __HttpHandlerOptions,
|
|
305
|
-
cb: (
|
|
306
|
-
err: any,
|
|
307
|
-
data?: ListRequestedServiceQuotaChangeHistoryCommandOutput
|
|
308
|
-
) => void
|
|
281
|
+
cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void,
|
|
309
282
|
): void;
|
|
310
283
|
listRequestedServiceQuotaChangeHistoryByQuota(
|
|
311
284
|
args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
312
|
-
options?: __HttpHandlerOptions
|
|
285
|
+
options?: __HttpHandlerOptions,
|
|
313
286
|
): Promise<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
|
|
314
287
|
listRequestedServiceQuotaChangeHistoryByQuota(
|
|
315
288
|
args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
316
|
-
cb: (
|
|
317
|
-
err: any,
|
|
318
|
-
data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput
|
|
319
|
-
) => void
|
|
289
|
+
cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void,
|
|
320
290
|
): void;
|
|
321
291
|
listRequestedServiceQuotaChangeHistoryByQuota(
|
|
322
292
|
args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
323
293
|
options: __HttpHandlerOptions,
|
|
324
|
-
cb: (
|
|
325
|
-
err: any,
|
|
326
|
-
data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput
|
|
327
|
-
) => void
|
|
294
|
+
cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput) => void,
|
|
328
295
|
): void;
|
|
329
296
|
listServiceQuotaIncreaseRequestsInTemplate(): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
330
297
|
listServiceQuotaIncreaseRequestsInTemplate(
|
|
331
298
|
args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
332
|
-
options?: __HttpHandlerOptions
|
|
299
|
+
options?: __HttpHandlerOptions,
|
|
333
300
|
): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
334
301
|
listServiceQuotaIncreaseRequestsInTemplate(
|
|
335
302
|
args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
336
|
-
cb: (
|
|
337
|
-
err: any,
|
|
338
|
-
data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput
|
|
339
|
-
) => void
|
|
303
|
+
cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void,
|
|
340
304
|
): void;
|
|
341
305
|
listServiceQuotaIncreaseRequestsInTemplate(
|
|
342
306
|
args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
343
307
|
options: __HttpHandlerOptions,
|
|
344
|
-
cb: (
|
|
345
|
-
err: any,
|
|
346
|
-
data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput
|
|
347
|
-
) => void
|
|
308
|
+
cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void,
|
|
348
309
|
): void;
|
|
349
310
|
listServiceQuotas(
|
|
350
311
|
args: ListServiceQuotasCommandInput,
|
|
351
|
-
options?: __HttpHandlerOptions
|
|
312
|
+
options?: __HttpHandlerOptions,
|
|
352
313
|
): Promise<ListServiceQuotasCommandOutput>;
|
|
353
314
|
listServiceQuotas(
|
|
354
315
|
args: ListServiceQuotasCommandInput,
|
|
355
|
-
cb: (err: any, data?: ListServiceQuotasCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: ListServiceQuotasCommandOutput) => void,
|
|
356
317
|
): void;
|
|
357
318
|
listServiceQuotas(
|
|
358
319
|
args: ListServiceQuotasCommandInput,
|
|
359
320
|
options: __HttpHandlerOptions,
|
|
360
|
-
cb: (err: any, data?: ListServiceQuotasCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: ListServiceQuotasCommandOutput) => void,
|
|
361
322
|
): void;
|
|
362
323
|
listServices(): Promise<ListServicesCommandOutput>;
|
|
363
324
|
listServices(
|
|
364
325
|
args: ListServicesCommandInput,
|
|
365
|
-
options?: __HttpHandlerOptions
|
|
326
|
+
options?: __HttpHandlerOptions,
|
|
366
327
|
): Promise<ListServicesCommandOutput>;
|
|
367
328
|
listServices(
|
|
368
329
|
args: ListServicesCommandInput,
|
|
369
|
-
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
330
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void,
|
|
370
331
|
): void;
|
|
371
332
|
listServices(
|
|
372
333
|
args: ListServicesCommandInput,
|
|
373
334
|
options: __HttpHandlerOptions,
|
|
374
|
-
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void,
|
|
375
336
|
): void;
|
|
376
337
|
listTagsForResource(
|
|
377
338
|
args: ListTagsForResourceCommandInput,
|
|
378
|
-
options?: __HttpHandlerOptions
|
|
339
|
+
options?: __HttpHandlerOptions,
|
|
379
340
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
380
341
|
listTagsForResource(
|
|
381
342
|
args: ListTagsForResourceCommandInput,
|
|
382
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
383
344
|
): void;
|
|
384
345
|
listTagsForResource(
|
|
385
346
|
args: ListTagsForResourceCommandInput,
|
|
386
347
|
options: __HttpHandlerOptions,
|
|
387
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
388
349
|
): void;
|
|
389
350
|
putServiceQuotaIncreaseRequestIntoTemplate(
|
|
390
351
|
args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
391
|
-
options?: __HttpHandlerOptions
|
|
352
|
+
options?: __HttpHandlerOptions,
|
|
392
353
|
): Promise<PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput>;
|
|
393
354
|
putServiceQuotaIncreaseRequestIntoTemplate(
|
|
394
355
|
args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
395
|
-
cb: (
|
|
396
|
-
err: any,
|
|
397
|
-
data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
|
|
398
|
-
) => void
|
|
356
|
+
cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void,
|
|
399
357
|
): void;
|
|
400
358
|
putServiceQuotaIncreaseRequestIntoTemplate(
|
|
401
359
|
args: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput,
|
|
402
360
|
options: __HttpHandlerOptions,
|
|
403
|
-
cb: (
|
|
404
|
-
err: any,
|
|
405
|
-
data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
|
|
406
|
-
) => void
|
|
361
|
+
cb: (err: any, data?: PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput) => void,
|
|
407
362
|
): void;
|
|
408
363
|
requestServiceQuotaIncrease(
|
|
409
364
|
args: RequestServiceQuotaIncreaseCommandInput,
|
|
410
|
-
options?: __HttpHandlerOptions
|
|
365
|
+
options?: __HttpHandlerOptions,
|
|
411
366
|
): Promise<RequestServiceQuotaIncreaseCommandOutput>;
|
|
412
367
|
requestServiceQuotaIncrease(
|
|
413
368
|
args: RequestServiceQuotaIncreaseCommandInput,
|
|
414
|
-
cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void
|
|
369
|
+
cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void,
|
|
415
370
|
): void;
|
|
416
371
|
requestServiceQuotaIncrease(
|
|
417
372
|
args: RequestServiceQuotaIncreaseCommandInput,
|
|
418
373
|
options: __HttpHandlerOptions,
|
|
419
|
-
cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void
|
|
374
|
+
cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void,
|
|
420
375
|
): void;
|
|
421
376
|
startAutoManagement(
|
|
422
377
|
args: StartAutoManagementCommandInput,
|
|
423
|
-
options?: __HttpHandlerOptions
|
|
378
|
+
options?: __HttpHandlerOptions,
|
|
424
379
|
): Promise<StartAutoManagementCommandOutput>;
|
|
425
380
|
startAutoManagement(
|
|
426
381
|
args: StartAutoManagementCommandInput,
|
|
427
|
-
cb: (err: any, data?: StartAutoManagementCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: StartAutoManagementCommandOutput) => void,
|
|
428
383
|
): void;
|
|
429
384
|
startAutoManagement(
|
|
430
385
|
args: StartAutoManagementCommandInput,
|
|
431
386
|
options: __HttpHandlerOptions,
|
|
432
|
-
cb: (err: any, data?: StartAutoManagementCommandOutput) => void
|
|
387
|
+
cb: (err: any, data?: StartAutoManagementCommandOutput) => void,
|
|
433
388
|
): void;
|
|
434
389
|
startQuotaUtilizationReport(): Promise<StartQuotaUtilizationReportCommandOutput>;
|
|
435
390
|
startQuotaUtilizationReport(
|
|
436
391
|
args: StartQuotaUtilizationReportCommandInput,
|
|
437
|
-
options?: __HttpHandlerOptions
|
|
392
|
+
options?: __HttpHandlerOptions,
|
|
438
393
|
): Promise<StartQuotaUtilizationReportCommandOutput>;
|
|
439
394
|
startQuotaUtilizationReport(
|
|
440
395
|
args: StartQuotaUtilizationReportCommandInput,
|
|
441
|
-
cb: (err: any, data?: StartQuotaUtilizationReportCommandOutput) => void
|
|
396
|
+
cb: (err: any, data?: StartQuotaUtilizationReportCommandOutput) => void,
|
|
442
397
|
): void;
|
|
443
398
|
startQuotaUtilizationReport(
|
|
444
399
|
args: StartQuotaUtilizationReportCommandInput,
|
|
445
400
|
options: __HttpHandlerOptions,
|
|
446
|
-
cb: (err: any, data?: StartQuotaUtilizationReportCommandOutput) => void
|
|
401
|
+
cb: (err: any, data?: StartQuotaUtilizationReportCommandOutput) => void,
|
|
447
402
|
): void;
|
|
448
403
|
stopAutoManagement(): Promise<StopAutoManagementCommandOutput>;
|
|
449
404
|
stopAutoManagement(
|
|
450
405
|
args: StopAutoManagementCommandInput,
|
|
451
|
-
options?: __HttpHandlerOptions
|
|
406
|
+
options?: __HttpHandlerOptions,
|
|
452
407
|
): Promise<StopAutoManagementCommandOutput>;
|
|
453
408
|
stopAutoManagement(
|
|
454
409
|
args: StopAutoManagementCommandInput,
|
|
455
|
-
cb: (err: any, data?: StopAutoManagementCommandOutput) => void
|
|
410
|
+
cb: (err: any, data?: StopAutoManagementCommandOutput) => void,
|
|
456
411
|
): void;
|
|
457
412
|
stopAutoManagement(
|
|
458
413
|
args: StopAutoManagementCommandInput,
|
|
459
414
|
options: __HttpHandlerOptions,
|
|
460
|
-
cb: (err: any, data?: StopAutoManagementCommandOutput) => void
|
|
415
|
+
cb: (err: any, data?: StopAutoManagementCommandOutput) => void,
|
|
461
416
|
): void;
|
|
462
417
|
tagResource(
|
|
463
418
|
args: TagResourceCommandInput,
|
|
464
|
-
options?: __HttpHandlerOptions
|
|
419
|
+
options?: __HttpHandlerOptions,
|
|
465
420
|
): Promise<TagResourceCommandOutput>;
|
|
466
421
|
tagResource(
|
|
467
422
|
args: TagResourceCommandInput,
|
|
468
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
423
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
469
424
|
): void;
|
|
470
425
|
tagResource(
|
|
471
426
|
args: TagResourceCommandInput,
|
|
472
427
|
options: __HttpHandlerOptions,
|
|
473
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
428
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
474
429
|
): void;
|
|
475
430
|
untagResource(
|
|
476
431
|
args: UntagResourceCommandInput,
|
|
477
|
-
options?: __HttpHandlerOptions
|
|
432
|
+
options?: __HttpHandlerOptions,
|
|
478
433
|
): Promise<UntagResourceCommandOutput>;
|
|
479
434
|
untagResource(
|
|
480
435
|
args: UntagResourceCommandInput,
|
|
481
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
436
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
482
437
|
): void;
|
|
483
438
|
untagResource(
|
|
484
439
|
args: UntagResourceCommandInput,
|
|
485
440
|
options: __HttpHandlerOptions,
|
|
486
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
441
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
487
442
|
): void;
|
|
488
443
|
updateAutoManagement(): Promise<UpdateAutoManagementCommandOutput>;
|
|
489
444
|
updateAutoManagement(
|
|
490
445
|
args: UpdateAutoManagementCommandInput,
|
|
491
|
-
options?: __HttpHandlerOptions
|
|
446
|
+
options?: __HttpHandlerOptions,
|
|
492
447
|
): Promise<UpdateAutoManagementCommandOutput>;
|
|
493
448
|
updateAutoManagement(
|
|
494
449
|
args: UpdateAutoManagementCommandInput,
|
|
495
|
-
cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void
|
|
450
|
+
cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void,
|
|
496
451
|
): void;
|
|
497
452
|
updateAutoManagement(
|
|
498
453
|
args: UpdateAutoManagementCommandInput,
|
|
499
454
|
options: __HttpHandlerOptions,
|
|
500
|
-
cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void
|
|
455
|
+
cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void,
|
|
501
456
|
): void;
|
|
502
457
|
paginateListAWSDefaultServiceQuotas(
|
|
503
458
|
args: ListAWSDefaultServiceQuotasCommandInput,
|
|
504
459
|
paginationConfig?: Pick<
|
|
505
460
|
PaginationConfiguration,
|
|
506
461
|
Exclude<keyof PaginationConfiguration, "client">
|
|
507
|
-
|
|
462
|
+
>,
|
|
508
463
|
): Paginator<ListAWSDefaultServiceQuotasCommandOutput>;
|
|
509
464
|
paginateListRequestedServiceQuotaChangeHistory(
|
|
510
465
|
args?: ListRequestedServiceQuotaChangeHistoryCommandInput,
|
|
511
466
|
paginationConfig?: Pick<
|
|
512
467
|
PaginationConfiguration,
|
|
513
468
|
Exclude<keyof PaginationConfiguration, "client">
|
|
514
|
-
|
|
469
|
+
>,
|
|
515
470
|
): Paginator<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
|
|
516
471
|
paginateListRequestedServiceQuotaChangeHistoryByQuota(
|
|
517
472
|
args: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput,
|
|
518
473
|
paginationConfig?: Pick<
|
|
519
474
|
PaginationConfiguration,
|
|
520
475
|
Exclude<keyof PaginationConfiguration, "client">
|
|
521
|
-
|
|
476
|
+
>,
|
|
522
477
|
): Paginator<ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput>;
|
|
523
478
|
paginateListServiceQuotaIncreaseRequestsInTemplate(
|
|
524
479
|
args?: ListServiceQuotaIncreaseRequestsInTemplateCommandInput,
|
|
525
480
|
paginationConfig?: Pick<
|
|
526
481
|
PaginationConfiguration,
|
|
527
482
|
Exclude<keyof PaginationConfiguration, "client">
|
|
528
|
-
|
|
483
|
+
>,
|
|
529
484
|
): Paginator<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
|
|
530
485
|
paginateListServiceQuotas(
|
|
531
486
|
args: ListServiceQuotasCommandInput,
|
|
532
487
|
paginationConfig?: Pick<
|
|
533
488
|
PaginationConfiguration,
|
|
534
489
|
Exclude<keyof PaginationConfiguration, "client">
|
|
535
|
-
|
|
490
|
+
>,
|
|
536
491
|
): Paginator<ListServiceQuotasCommandOutput>;
|
|
537
492
|
paginateListServices(
|
|
538
493
|
args?: ListServicesCommandInput,
|
|
539
494
|
paginationConfig?: Pick<
|
|
540
495
|
PaginationConfiguration,
|
|
541
496
|
Exclude<keyof PaginationConfiguration, "client">
|
|
542
|
-
|
|
497
|
+
>,
|
|
543
498
|
): Paginator<ListServicesCommandOutput>;
|
|
544
499
|
}
|
|
545
|
-
export declare class ServiceQuotas
|
|
546
|
-
extends ServiceQuotasClient
|
|
547
|
-
implements ServiceQuotas {}
|
|
500
|
+
export declare class ServiceQuotas extends ServiceQuotasClient implements ServiceQuotas {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -128,10 +125,7 @@ import {
|
|
|
128
125
|
StopAutoManagementCommandInput,
|
|
129
126
|
StopAutoManagementCommandOutput,
|
|
130
127
|
} from "./commands/StopAutoManagementCommand";
|
|
131
|
-
import {
|
|
132
|
-
TagResourceCommandInput,
|
|
133
|
-
TagResourceCommandOutput,
|
|
134
|
-
} from "./commands/TagResourceCommand";
|
|
128
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
135
129
|
import {
|
|
136
130
|
UntagResourceCommandInput,
|
|
137
131
|
UntagResourceCommandOutput,
|
|
@@ -201,8 +195,7 @@ export type ServiceOutputTypes =
|
|
|
201
195
|
| TagResourceCommandOutput
|
|
202
196
|
| UntagResourceCommandOutput
|
|
203
197
|
| UpdateAutoManagementCommandOutput;
|
|
204
|
-
export interface ClientDefaults
|
|
205
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
198
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
206
199
|
requestHandler?: __HttpHandlerUserInput;
|
|
207
200
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
208
201
|
urlParser?: __UrlParser;
|
|
@@ -227,9 +220,7 @@ export interface ClientDefaults
|
|
|
227
220
|
extensions?: RuntimeExtension[];
|
|
228
221
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
229
222
|
}
|
|
230
|
-
export type ServiceQuotasClientConfigType = Partial<
|
|
231
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
232
|
-
> &
|
|
223
|
+
export type ServiceQuotasClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
233
224
|
ClientDefaults &
|
|
234
225
|
UserAgentInputConfig &
|
|
235
226
|
RetryInputConfig &
|
|
@@ -238,8 +229,7 @@ export type ServiceQuotasClientConfigType = Partial<
|
|
|
238
229
|
EndpointInputConfig<EndpointParameters> &
|
|
239
230
|
HttpAuthSchemeInputConfig &
|
|
240
231
|
ClientInputEndpointParameters;
|
|
241
|
-
export interface ServiceQuotasClientConfig
|
|
242
|
-
extends ServiceQuotasClientConfigType {}
|
|
232
|
+
export interface ServiceQuotasClientConfig extends ServiceQuotasClientConfigType {}
|
|
243
233
|
export type ServiceQuotasClientResolvedConfigType =
|
|
244
234
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
245
235
|
Required<ClientDefaults> &
|
|
@@ -251,8 +241,7 @@ export type ServiceQuotasClientResolvedConfigType =
|
|
|
251
241
|
EndpointResolvedConfig<EndpointParameters> &
|
|
252
242
|
HttpAuthSchemeResolvedConfig &
|
|
253
243
|
ClientResolvedEndpointParameters;
|
|
254
|
-
export interface ServiceQuotasClientResolvedConfig
|
|
255
|
-
extends ServiceQuotasClientResolvedConfigType {}
|
|
244
|
+
export interface ServiceQuotasClientResolvedConfig extends ServiceQuotasClientResolvedConfigType {}
|
|
256
245
|
export declare class ServiceQuotasClient extends __Client<
|
|
257
246
|
__HttpHandlerOptions,
|
|
258
247
|
ServiceInputTypes,
|
|
@@ -260,8 +249,6 @@ export declare class ServiceQuotasClient extends __Client<
|
|
|
260
249
|
ServiceQuotasClientResolvedConfig
|
|
261
250
|
> {
|
|
262
251
|
readonly config: ServiceQuotasClientResolvedConfig;
|
|
263
|
-
constructor(
|
|
264
|
-
...[configuration]: __CheckOptionalClientConfig<ServiceQuotasClientConfig>
|
|
265
|
-
);
|
|
252
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ServiceQuotasClientConfig>);
|
|
266
253
|
destroy(): void;
|
|
267
254
|
}
|
|
@@ -7,17 +7,10 @@ import { ServiceQuotasHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ServiceQuotasHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ServiceQuotasHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ServiceQuotasHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|