@aws-sdk/client-apprunner 3.1086.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/AppRunner.d.ts +121 -142
- package/dist-types/ts3.4/AppRunnerClient.d.ts +6 -18
- 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/AssociateCustomDomainCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateVpcIngressConnectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVpcIngressConnectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVpcIngressConnectionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListServicesForAutoScalingConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListVpcIngressConnectionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDeploymentCommand.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/UpdateDefaultAutoScalingConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateVpcIngressConnectionCommand.d.ts +4 -6
- 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 +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- 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 +39 -39
|
@@ -132,10 +132,7 @@ import {
|
|
|
132
132
|
StartDeploymentCommandInput,
|
|
133
133
|
StartDeploymentCommandOutput,
|
|
134
134
|
} from "./commands/StartDeploymentCommand";
|
|
135
|
-
import {
|
|
136
|
-
TagResourceCommandInput,
|
|
137
|
-
TagResourceCommandOutput,
|
|
138
|
-
} from "./commands/TagResourceCommand";
|
|
135
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
139
136
|
import {
|
|
140
137
|
UntagResourceCommandInput,
|
|
141
138
|
UntagResourceCommandOutput,
|
|
@@ -155,571 +152,553 @@ import {
|
|
|
155
152
|
export interface AppRunner {
|
|
156
153
|
associateCustomDomain(
|
|
157
154
|
args: AssociateCustomDomainCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
155
|
+
options?: __HttpHandlerOptions,
|
|
159
156
|
): Promise<AssociateCustomDomainCommandOutput>;
|
|
160
157
|
associateCustomDomain(
|
|
161
158
|
args: AssociateCustomDomainCommandInput,
|
|
162
|
-
cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void,
|
|
163
160
|
): void;
|
|
164
161
|
associateCustomDomain(
|
|
165
162
|
args: AssociateCustomDomainCommandInput,
|
|
166
163
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void
|
|
164
|
+
cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void,
|
|
168
165
|
): void;
|
|
169
166
|
createAutoScalingConfiguration(
|
|
170
167
|
args: CreateAutoScalingConfigurationCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
168
|
+
options?: __HttpHandlerOptions,
|
|
172
169
|
): Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
173
170
|
createAutoScalingConfiguration(
|
|
174
171
|
args: CreateAutoScalingConfigurationCommandInput,
|
|
175
|
-
cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void,
|
|
176
173
|
): void;
|
|
177
174
|
createAutoScalingConfiguration(
|
|
178
175
|
args: CreateAutoScalingConfigurationCommandInput,
|
|
179
176
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void
|
|
177
|
+
cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void,
|
|
181
178
|
): void;
|
|
182
179
|
createConnection(
|
|
183
180
|
args: CreateConnectionCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
181
|
+
options?: __HttpHandlerOptions,
|
|
185
182
|
): Promise<CreateConnectionCommandOutput>;
|
|
186
183
|
createConnection(
|
|
187
184
|
args: CreateConnectionCommandInput,
|
|
188
|
-
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void,
|
|
189
186
|
): void;
|
|
190
187
|
createConnection(
|
|
191
188
|
args: CreateConnectionCommandInput,
|
|
192
189
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
190
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void,
|
|
194
191
|
): void;
|
|
195
192
|
createObservabilityConfiguration(
|
|
196
193
|
args: CreateObservabilityConfigurationCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
194
|
+
options?: __HttpHandlerOptions,
|
|
198
195
|
): Promise<CreateObservabilityConfigurationCommandOutput>;
|
|
199
196
|
createObservabilityConfiguration(
|
|
200
197
|
args: CreateObservabilityConfigurationCommandInput,
|
|
201
|
-
cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void,
|
|
202
199
|
): void;
|
|
203
200
|
createObservabilityConfiguration(
|
|
204
201
|
args: CreateObservabilityConfigurationCommandInput,
|
|
205
202
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void
|
|
203
|
+
cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void,
|
|
207
204
|
): void;
|
|
208
205
|
createService(
|
|
209
206
|
args: CreateServiceCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
207
|
+
options?: __HttpHandlerOptions,
|
|
211
208
|
): Promise<CreateServiceCommandOutput>;
|
|
212
209
|
createService(
|
|
213
210
|
args: CreateServiceCommandInput,
|
|
214
|
-
cb: (err: any, data?: CreateServiceCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: CreateServiceCommandOutput) => void,
|
|
215
212
|
): void;
|
|
216
213
|
createService(
|
|
217
214
|
args: CreateServiceCommandInput,
|
|
218
215
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: CreateServiceCommandOutput) => void
|
|
216
|
+
cb: (err: any, data?: CreateServiceCommandOutput) => void,
|
|
220
217
|
): void;
|
|
221
218
|
createVpcConnector(
|
|
222
219
|
args: CreateVpcConnectorCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
220
|
+
options?: __HttpHandlerOptions,
|
|
224
221
|
): Promise<CreateVpcConnectorCommandOutput>;
|
|
225
222
|
createVpcConnector(
|
|
226
223
|
args: CreateVpcConnectorCommandInput,
|
|
227
|
-
cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void,
|
|
228
225
|
): void;
|
|
229
226
|
createVpcConnector(
|
|
230
227
|
args: CreateVpcConnectorCommandInput,
|
|
231
228
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void
|
|
229
|
+
cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void,
|
|
233
230
|
): void;
|
|
234
231
|
createVpcIngressConnection(
|
|
235
232
|
args: CreateVpcIngressConnectionCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
233
|
+
options?: __HttpHandlerOptions,
|
|
237
234
|
): Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
238
235
|
createVpcIngressConnection(
|
|
239
236
|
args: CreateVpcIngressConnectionCommandInput,
|
|
240
|
-
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void,
|
|
241
238
|
): void;
|
|
242
239
|
createVpcIngressConnection(
|
|
243
240
|
args: CreateVpcIngressConnectionCommandInput,
|
|
244
241
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void
|
|
242
|
+
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void,
|
|
246
243
|
): void;
|
|
247
244
|
deleteAutoScalingConfiguration(
|
|
248
245
|
args: DeleteAutoScalingConfigurationCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
246
|
+
options?: __HttpHandlerOptions,
|
|
250
247
|
): Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
251
248
|
deleteAutoScalingConfiguration(
|
|
252
249
|
args: DeleteAutoScalingConfigurationCommandInput,
|
|
253
|
-
cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void,
|
|
254
251
|
): void;
|
|
255
252
|
deleteAutoScalingConfiguration(
|
|
256
253
|
args: DeleteAutoScalingConfigurationCommandInput,
|
|
257
254
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void
|
|
255
|
+
cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void,
|
|
259
256
|
): void;
|
|
260
257
|
deleteConnection(
|
|
261
258
|
args: DeleteConnectionCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
259
|
+
options?: __HttpHandlerOptions,
|
|
263
260
|
): Promise<DeleteConnectionCommandOutput>;
|
|
264
261
|
deleteConnection(
|
|
265
262
|
args: DeleteConnectionCommandInput,
|
|
266
|
-
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
|
|
267
264
|
): void;
|
|
268
265
|
deleteConnection(
|
|
269
266
|
args: DeleteConnectionCommandInput,
|
|
270
267
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
268
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
|
|
272
269
|
): void;
|
|
273
270
|
deleteObservabilityConfiguration(
|
|
274
271
|
args: DeleteObservabilityConfigurationCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
272
|
+
options?: __HttpHandlerOptions,
|
|
276
273
|
): Promise<DeleteObservabilityConfigurationCommandOutput>;
|
|
277
274
|
deleteObservabilityConfiguration(
|
|
278
275
|
args: DeleteObservabilityConfigurationCommandInput,
|
|
279
|
-
cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void,
|
|
280
277
|
): void;
|
|
281
278
|
deleteObservabilityConfiguration(
|
|
282
279
|
args: DeleteObservabilityConfigurationCommandInput,
|
|
283
280
|
options: __HttpHandlerOptions,
|
|
284
|
-
cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void
|
|
281
|
+
cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void,
|
|
285
282
|
): void;
|
|
286
283
|
deleteService(
|
|
287
284
|
args: DeleteServiceCommandInput,
|
|
288
|
-
options?: __HttpHandlerOptions
|
|
285
|
+
options?: __HttpHandlerOptions,
|
|
289
286
|
): Promise<DeleteServiceCommandOutput>;
|
|
290
287
|
deleteService(
|
|
291
288
|
args: DeleteServiceCommandInput,
|
|
292
|
-
cb: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: DeleteServiceCommandOutput) => void,
|
|
293
290
|
): void;
|
|
294
291
|
deleteService(
|
|
295
292
|
args: DeleteServiceCommandInput,
|
|
296
293
|
options: __HttpHandlerOptions,
|
|
297
|
-
cb: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
294
|
+
cb: (err: any, data?: DeleteServiceCommandOutput) => void,
|
|
298
295
|
): void;
|
|
299
296
|
deleteVpcConnector(
|
|
300
297
|
args: DeleteVpcConnectorCommandInput,
|
|
301
|
-
options?: __HttpHandlerOptions
|
|
298
|
+
options?: __HttpHandlerOptions,
|
|
302
299
|
): Promise<DeleteVpcConnectorCommandOutput>;
|
|
303
300
|
deleteVpcConnector(
|
|
304
301
|
args: DeleteVpcConnectorCommandInput,
|
|
305
|
-
cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void
|
|
302
|
+
cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void,
|
|
306
303
|
): void;
|
|
307
304
|
deleteVpcConnector(
|
|
308
305
|
args: DeleteVpcConnectorCommandInput,
|
|
309
306
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void
|
|
307
|
+
cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void,
|
|
311
308
|
): void;
|
|
312
309
|
deleteVpcIngressConnection(
|
|
313
310
|
args: DeleteVpcIngressConnectionCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
311
|
+
options?: __HttpHandlerOptions,
|
|
315
312
|
): Promise<DeleteVpcIngressConnectionCommandOutput>;
|
|
316
313
|
deleteVpcIngressConnection(
|
|
317
314
|
args: DeleteVpcIngressConnectionCommandInput,
|
|
318
|
-
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void
|
|
315
|
+
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void,
|
|
319
316
|
): void;
|
|
320
317
|
deleteVpcIngressConnection(
|
|
321
318
|
args: DeleteVpcIngressConnectionCommandInput,
|
|
322
319
|
options: __HttpHandlerOptions,
|
|
323
|
-
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void
|
|
320
|
+
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void,
|
|
324
321
|
): void;
|
|
325
322
|
describeAutoScalingConfiguration(
|
|
326
323
|
args: DescribeAutoScalingConfigurationCommandInput,
|
|
327
|
-
options?: __HttpHandlerOptions
|
|
324
|
+
options?: __HttpHandlerOptions,
|
|
328
325
|
): Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
329
326
|
describeAutoScalingConfiguration(
|
|
330
327
|
args: DescribeAutoScalingConfigurationCommandInput,
|
|
331
|
-
cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void
|
|
328
|
+
cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void,
|
|
332
329
|
): void;
|
|
333
330
|
describeAutoScalingConfiguration(
|
|
334
331
|
args: DescribeAutoScalingConfigurationCommandInput,
|
|
335
332
|
options: __HttpHandlerOptions,
|
|
336
|
-
cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void
|
|
333
|
+
cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void,
|
|
337
334
|
): void;
|
|
338
335
|
describeCustomDomains(
|
|
339
336
|
args: DescribeCustomDomainsCommandInput,
|
|
340
|
-
options?: __HttpHandlerOptions
|
|
337
|
+
options?: __HttpHandlerOptions,
|
|
341
338
|
): Promise<DescribeCustomDomainsCommandOutput>;
|
|
342
339
|
describeCustomDomains(
|
|
343
340
|
args: DescribeCustomDomainsCommandInput,
|
|
344
|
-
cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void
|
|
341
|
+
cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void,
|
|
345
342
|
): void;
|
|
346
343
|
describeCustomDomains(
|
|
347
344
|
args: DescribeCustomDomainsCommandInput,
|
|
348
345
|
options: __HttpHandlerOptions,
|
|
349
|
-
cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void
|
|
346
|
+
cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void,
|
|
350
347
|
): void;
|
|
351
348
|
describeObservabilityConfiguration(
|
|
352
349
|
args: DescribeObservabilityConfigurationCommandInput,
|
|
353
|
-
options?: __HttpHandlerOptions
|
|
350
|
+
options?: __HttpHandlerOptions,
|
|
354
351
|
): Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
355
352
|
describeObservabilityConfiguration(
|
|
356
353
|
args: DescribeObservabilityConfigurationCommandInput,
|
|
357
|
-
cb: (
|
|
358
|
-
err: any,
|
|
359
|
-
data?: DescribeObservabilityConfigurationCommandOutput
|
|
360
|
-
) => void
|
|
354
|
+
cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void,
|
|
361
355
|
): void;
|
|
362
356
|
describeObservabilityConfiguration(
|
|
363
357
|
args: DescribeObservabilityConfigurationCommandInput,
|
|
364
358
|
options: __HttpHandlerOptions,
|
|
365
|
-
cb: (
|
|
366
|
-
err: any,
|
|
367
|
-
data?: DescribeObservabilityConfigurationCommandOutput
|
|
368
|
-
) => void
|
|
359
|
+
cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void,
|
|
369
360
|
): void;
|
|
370
361
|
describeService(
|
|
371
362
|
args: DescribeServiceCommandInput,
|
|
372
|
-
options?: __HttpHandlerOptions
|
|
363
|
+
options?: __HttpHandlerOptions,
|
|
373
364
|
): Promise<DescribeServiceCommandOutput>;
|
|
374
365
|
describeService(
|
|
375
366
|
args: DescribeServiceCommandInput,
|
|
376
|
-
cb: (err: any, data?: DescribeServiceCommandOutput) => void
|
|
367
|
+
cb: (err: any, data?: DescribeServiceCommandOutput) => void,
|
|
377
368
|
): void;
|
|
378
369
|
describeService(
|
|
379
370
|
args: DescribeServiceCommandInput,
|
|
380
371
|
options: __HttpHandlerOptions,
|
|
381
|
-
cb: (err: any, data?: DescribeServiceCommandOutput) => void
|
|
372
|
+
cb: (err: any, data?: DescribeServiceCommandOutput) => void,
|
|
382
373
|
): void;
|
|
383
374
|
describeVpcConnector(
|
|
384
375
|
args: DescribeVpcConnectorCommandInput,
|
|
385
|
-
options?: __HttpHandlerOptions
|
|
376
|
+
options?: __HttpHandlerOptions,
|
|
386
377
|
): Promise<DescribeVpcConnectorCommandOutput>;
|
|
387
378
|
describeVpcConnector(
|
|
388
379
|
args: DescribeVpcConnectorCommandInput,
|
|
389
|
-
cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void
|
|
380
|
+
cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void,
|
|
390
381
|
): void;
|
|
391
382
|
describeVpcConnector(
|
|
392
383
|
args: DescribeVpcConnectorCommandInput,
|
|
393
384
|
options: __HttpHandlerOptions,
|
|
394
|
-
cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void
|
|
385
|
+
cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void,
|
|
395
386
|
): void;
|
|
396
387
|
describeVpcIngressConnection(
|
|
397
388
|
args: DescribeVpcIngressConnectionCommandInput,
|
|
398
|
-
options?: __HttpHandlerOptions
|
|
389
|
+
options?: __HttpHandlerOptions,
|
|
399
390
|
): Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
400
391
|
describeVpcIngressConnection(
|
|
401
392
|
args: DescribeVpcIngressConnectionCommandInput,
|
|
402
|
-
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void
|
|
393
|
+
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void,
|
|
403
394
|
): void;
|
|
404
395
|
describeVpcIngressConnection(
|
|
405
396
|
args: DescribeVpcIngressConnectionCommandInput,
|
|
406
397
|
options: __HttpHandlerOptions,
|
|
407
|
-
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void
|
|
398
|
+
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void,
|
|
408
399
|
): void;
|
|
409
400
|
disassociateCustomDomain(
|
|
410
401
|
args: DisassociateCustomDomainCommandInput,
|
|
411
|
-
options?: __HttpHandlerOptions
|
|
402
|
+
options?: __HttpHandlerOptions,
|
|
412
403
|
): Promise<DisassociateCustomDomainCommandOutput>;
|
|
413
404
|
disassociateCustomDomain(
|
|
414
405
|
args: DisassociateCustomDomainCommandInput,
|
|
415
|
-
cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void
|
|
406
|
+
cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void,
|
|
416
407
|
): void;
|
|
417
408
|
disassociateCustomDomain(
|
|
418
409
|
args: DisassociateCustomDomainCommandInput,
|
|
419
410
|
options: __HttpHandlerOptions,
|
|
420
|
-
cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void
|
|
411
|
+
cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void,
|
|
421
412
|
): void;
|
|
422
413
|
listAutoScalingConfigurations(): Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
423
414
|
listAutoScalingConfigurations(
|
|
424
415
|
args: ListAutoScalingConfigurationsCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
416
|
+
options?: __HttpHandlerOptions,
|
|
426
417
|
): Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
427
418
|
listAutoScalingConfigurations(
|
|
428
419
|
args: ListAutoScalingConfigurationsCommandInput,
|
|
429
|
-
cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void
|
|
420
|
+
cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void,
|
|
430
421
|
): void;
|
|
431
422
|
listAutoScalingConfigurations(
|
|
432
423
|
args: ListAutoScalingConfigurationsCommandInput,
|
|
433
424
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void,
|
|
435
426
|
): void;
|
|
436
427
|
listConnections(): Promise<ListConnectionsCommandOutput>;
|
|
437
428
|
listConnections(
|
|
438
429
|
args: ListConnectionsCommandInput,
|
|
439
|
-
options?: __HttpHandlerOptions
|
|
430
|
+
options?: __HttpHandlerOptions,
|
|
440
431
|
): Promise<ListConnectionsCommandOutput>;
|
|
441
432
|
listConnections(
|
|
442
433
|
args: ListConnectionsCommandInput,
|
|
443
|
-
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void,
|
|
444
435
|
): void;
|
|
445
436
|
listConnections(
|
|
446
437
|
args: ListConnectionsCommandInput,
|
|
447
438
|
options: __HttpHandlerOptions,
|
|
448
|
-
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
439
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void,
|
|
449
440
|
): void;
|
|
450
441
|
listObservabilityConfigurations(): Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
451
442
|
listObservabilityConfigurations(
|
|
452
443
|
args: ListObservabilityConfigurationsCommandInput,
|
|
453
|
-
options?: __HttpHandlerOptions
|
|
444
|
+
options?: __HttpHandlerOptions,
|
|
454
445
|
): Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
455
446
|
listObservabilityConfigurations(
|
|
456
447
|
args: ListObservabilityConfigurationsCommandInput,
|
|
457
|
-
cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void
|
|
448
|
+
cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void,
|
|
458
449
|
): void;
|
|
459
450
|
listObservabilityConfigurations(
|
|
460
451
|
args: ListObservabilityConfigurationsCommandInput,
|
|
461
452
|
options: __HttpHandlerOptions,
|
|
462
|
-
cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void
|
|
453
|
+
cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void,
|
|
463
454
|
): void;
|
|
464
455
|
listOperations(
|
|
465
456
|
args: ListOperationsCommandInput,
|
|
466
|
-
options?: __HttpHandlerOptions
|
|
457
|
+
options?: __HttpHandlerOptions,
|
|
467
458
|
): Promise<ListOperationsCommandOutput>;
|
|
468
459
|
listOperations(
|
|
469
460
|
args: ListOperationsCommandInput,
|
|
470
|
-
cb: (err: any, data?: ListOperationsCommandOutput) => void
|
|
461
|
+
cb: (err: any, data?: ListOperationsCommandOutput) => void,
|
|
471
462
|
): void;
|
|
472
463
|
listOperations(
|
|
473
464
|
args: ListOperationsCommandInput,
|
|
474
465
|
options: __HttpHandlerOptions,
|
|
475
|
-
cb: (err: any, data?: ListOperationsCommandOutput) => void
|
|
466
|
+
cb: (err: any, data?: ListOperationsCommandOutput) => void,
|
|
476
467
|
): void;
|
|
477
468
|
listServices(): Promise<ListServicesCommandOutput>;
|
|
478
469
|
listServices(
|
|
479
470
|
args: ListServicesCommandInput,
|
|
480
|
-
options?: __HttpHandlerOptions
|
|
471
|
+
options?: __HttpHandlerOptions,
|
|
481
472
|
): Promise<ListServicesCommandOutput>;
|
|
482
473
|
listServices(
|
|
483
474
|
args: ListServicesCommandInput,
|
|
484
|
-
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
475
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void,
|
|
485
476
|
): void;
|
|
486
477
|
listServices(
|
|
487
478
|
args: ListServicesCommandInput,
|
|
488
479
|
options: __HttpHandlerOptions,
|
|
489
|
-
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
480
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void,
|
|
490
481
|
): void;
|
|
491
482
|
listServicesForAutoScalingConfiguration(
|
|
492
483
|
args: ListServicesForAutoScalingConfigurationCommandInput,
|
|
493
|
-
options?: __HttpHandlerOptions
|
|
484
|
+
options?: __HttpHandlerOptions,
|
|
494
485
|
): Promise<ListServicesForAutoScalingConfigurationCommandOutput>;
|
|
495
486
|
listServicesForAutoScalingConfiguration(
|
|
496
487
|
args: ListServicesForAutoScalingConfigurationCommandInput,
|
|
497
|
-
cb: (
|
|
498
|
-
err: any,
|
|
499
|
-
data?: ListServicesForAutoScalingConfigurationCommandOutput
|
|
500
|
-
) => void
|
|
488
|
+
cb: (err: any, data?: ListServicesForAutoScalingConfigurationCommandOutput) => void,
|
|
501
489
|
): void;
|
|
502
490
|
listServicesForAutoScalingConfiguration(
|
|
503
491
|
args: ListServicesForAutoScalingConfigurationCommandInput,
|
|
504
492
|
options: __HttpHandlerOptions,
|
|
505
|
-
cb: (
|
|
506
|
-
err: any,
|
|
507
|
-
data?: ListServicesForAutoScalingConfigurationCommandOutput
|
|
508
|
-
) => void
|
|
493
|
+
cb: (err: any, data?: ListServicesForAutoScalingConfigurationCommandOutput) => void,
|
|
509
494
|
): void;
|
|
510
495
|
listTagsForResource(
|
|
511
496
|
args: ListTagsForResourceCommandInput,
|
|
512
|
-
options?: __HttpHandlerOptions
|
|
497
|
+
options?: __HttpHandlerOptions,
|
|
513
498
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
514
499
|
listTagsForResource(
|
|
515
500
|
args: ListTagsForResourceCommandInput,
|
|
516
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
501
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
517
502
|
): void;
|
|
518
503
|
listTagsForResource(
|
|
519
504
|
args: ListTagsForResourceCommandInput,
|
|
520
505
|
options: __HttpHandlerOptions,
|
|
521
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
506
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
522
507
|
): void;
|
|
523
508
|
listVpcConnectors(): Promise<ListVpcConnectorsCommandOutput>;
|
|
524
509
|
listVpcConnectors(
|
|
525
510
|
args: ListVpcConnectorsCommandInput,
|
|
526
|
-
options?: __HttpHandlerOptions
|
|
511
|
+
options?: __HttpHandlerOptions,
|
|
527
512
|
): Promise<ListVpcConnectorsCommandOutput>;
|
|
528
513
|
listVpcConnectors(
|
|
529
514
|
args: ListVpcConnectorsCommandInput,
|
|
530
|
-
cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void
|
|
515
|
+
cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void,
|
|
531
516
|
): void;
|
|
532
517
|
listVpcConnectors(
|
|
533
518
|
args: ListVpcConnectorsCommandInput,
|
|
534
519
|
options: __HttpHandlerOptions,
|
|
535
|
-
cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void
|
|
520
|
+
cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void,
|
|
536
521
|
): void;
|
|
537
522
|
listVpcIngressConnections(): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
538
523
|
listVpcIngressConnections(
|
|
539
524
|
args: ListVpcIngressConnectionsCommandInput,
|
|
540
|
-
options?: __HttpHandlerOptions
|
|
525
|
+
options?: __HttpHandlerOptions,
|
|
541
526
|
): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
542
527
|
listVpcIngressConnections(
|
|
543
528
|
args: ListVpcIngressConnectionsCommandInput,
|
|
544
|
-
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void
|
|
529
|
+
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void,
|
|
545
530
|
): void;
|
|
546
531
|
listVpcIngressConnections(
|
|
547
532
|
args: ListVpcIngressConnectionsCommandInput,
|
|
548
533
|
options: __HttpHandlerOptions,
|
|
549
|
-
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void
|
|
534
|
+
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void,
|
|
550
535
|
): void;
|
|
551
536
|
pauseService(
|
|
552
537
|
args: PauseServiceCommandInput,
|
|
553
|
-
options?: __HttpHandlerOptions
|
|
538
|
+
options?: __HttpHandlerOptions,
|
|
554
539
|
): Promise<PauseServiceCommandOutput>;
|
|
555
540
|
pauseService(
|
|
556
541
|
args: PauseServiceCommandInput,
|
|
557
|
-
cb: (err: any, data?: PauseServiceCommandOutput) => void
|
|
542
|
+
cb: (err: any, data?: PauseServiceCommandOutput) => void,
|
|
558
543
|
): void;
|
|
559
544
|
pauseService(
|
|
560
545
|
args: PauseServiceCommandInput,
|
|
561
546
|
options: __HttpHandlerOptions,
|
|
562
|
-
cb: (err: any, data?: PauseServiceCommandOutput) => void
|
|
547
|
+
cb: (err: any, data?: PauseServiceCommandOutput) => void,
|
|
563
548
|
): void;
|
|
564
549
|
resumeService(
|
|
565
550
|
args: ResumeServiceCommandInput,
|
|
566
|
-
options?: __HttpHandlerOptions
|
|
551
|
+
options?: __HttpHandlerOptions,
|
|
567
552
|
): Promise<ResumeServiceCommandOutput>;
|
|
568
553
|
resumeService(
|
|
569
554
|
args: ResumeServiceCommandInput,
|
|
570
|
-
cb: (err: any, data?: ResumeServiceCommandOutput) => void
|
|
555
|
+
cb: (err: any, data?: ResumeServiceCommandOutput) => void,
|
|
571
556
|
): void;
|
|
572
557
|
resumeService(
|
|
573
558
|
args: ResumeServiceCommandInput,
|
|
574
559
|
options: __HttpHandlerOptions,
|
|
575
|
-
cb: (err: any, data?: ResumeServiceCommandOutput) => void
|
|
560
|
+
cb: (err: any, data?: ResumeServiceCommandOutput) => void,
|
|
576
561
|
): void;
|
|
577
562
|
startDeployment(
|
|
578
563
|
args: StartDeploymentCommandInput,
|
|
579
|
-
options?: __HttpHandlerOptions
|
|
564
|
+
options?: __HttpHandlerOptions,
|
|
580
565
|
): Promise<StartDeploymentCommandOutput>;
|
|
581
566
|
startDeployment(
|
|
582
567
|
args: StartDeploymentCommandInput,
|
|
583
|
-
cb: (err: any, data?: StartDeploymentCommandOutput) => void
|
|
568
|
+
cb: (err: any, data?: StartDeploymentCommandOutput) => void,
|
|
584
569
|
): void;
|
|
585
570
|
startDeployment(
|
|
586
571
|
args: StartDeploymentCommandInput,
|
|
587
572
|
options: __HttpHandlerOptions,
|
|
588
|
-
cb: (err: any, data?: StartDeploymentCommandOutput) => void
|
|
573
|
+
cb: (err: any, data?: StartDeploymentCommandOutput) => void,
|
|
589
574
|
): void;
|
|
590
575
|
tagResource(
|
|
591
576
|
args: TagResourceCommandInput,
|
|
592
|
-
options?: __HttpHandlerOptions
|
|
577
|
+
options?: __HttpHandlerOptions,
|
|
593
578
|
): Promise<TagResourceCommandOutput>;
|
|
594
579
|
tagResource(
|
|
595
580
|
args: TagResourceCommandInput,
|
|
596
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
581
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
597
582
|
): void;
|
|
598
583
|
tagResource(
|
|
599
584
|
args: TagResourceCommandInput,
|
|
600
585
|
options: __HttpHandlerOptions,
|
|
601
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
586
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
602
587
|
): void;
|
|
603
588
|
untagResource(
|
|
604
589
|
args: UntagResourceCommandInput,
|
|
605
|
-
options?: __HttpHandlerOptions
|
|
590
|
+
options?: __HttpHandlerOptions,
|
|
606
591
|
): Promise<UntagResourceCommandOutput>;
|
|
607
592
|
untagResource(
|
|
608
593
|
args: UntagResourceCommandInput,
|
|
609
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
594
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
610
595
|
): void;
|
|
611
596
|
untagResource(
|
|
612
597
|
args: UntagResourceCommandInput,
|
|
613
598
|
options: __HttpHandlerOptions,
|
|
614
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
599
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
615
600
|
): void;
|
|
616
601
|
updateDefaultAutoScalingConfiguration(
|
|
617
602
|
args: UpdateDefaultAutoScalingConfigurationCommandInput,
|
|
618
|
-
options?: __HttpHandlerOptions
|
|
603
|
+
options?: __HttpHandlerOptions,
|
|
619
604
|
): Promise<UpdateDefaultAutoScalingConfigurationCommandOutput>;
|
|
620
605
|
updateDefaultAutoScalingConfiguration(
|
|
621
606
|
args: UpdateDefaultAutoScalingConfigurationCommandInput,
|
|
622
|
-
cb: (
|
|
623
|
-
err: any,
|
|
624
|
-
data?: UpdateDefaultAutoScalingConfigurationCommandOutput
|
|
625
|
-
) => void
|
|
607
|
+
cb: (err: any, data?: UpdateDefaultAutoScalingConfigurationCommandOutput) => void,
|
|
626
608
|
): void;
|
|
627
609
|
updateDefaultAutoScalingConfiguration(
|
|
628
610
|
args: UpdateDefaultAutoScalingConfigurationCommandInput,
|
|
629
611
|
options: __HttpHandlerOptions,
|
|
630
|
-
cb: (
|
|
631
|
-
err: any,
|
|
632
|
-
data?: UpdateDefaultAutoScalingConfigurationCommandOutput
|
|
633
|
-
) => void
|
|
612
|
+
cb: (err: any, data?: UpdateDefaultAutoScalingConfigurationCommandOutput) => void,
|
|
634
613
|
): void;
|
|
635
614
|
updateService(
|
|
636
615
|
args: UpdateServiceCommandInput,
|
|
637
|
-
options?: __HttpHandlerOptions
|
|
616
|
+
options?: __HttpHandlerOptions,
|
|
638
617
|
): Promise<UpdateServiceCommandOutput>;
|
|
639
618
|
updateService(
|
|
640
619
|
args: UpdateServiceCommandInput,
|
|
641
|
-
cb: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
620
|
+
cb: (err: any, data?: UpdateServiceCommandOutput) => void,
|
|
642
621
|
): void;
|
|
643
622
|
updateService(
|
|
644
623
|
args: UpdateServiceCommandInput,
|
|
645
624
|
options: __HttpHandlerOptions,
|
|
646
|
-
cb: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
625
|
+
cb: (err: any, data?: UpdateServiceCommandOutput) => void,
|
|
647
626
|
): void;
|
|
648
627
|
updateVpcIngressConnection(
|
|
649
628
|
args: UpdateVpcIngressConnectionCommandInput,
|
|
650
|
-
options?: __HttpHandlerOptions
|
|
629
|
+
options?: __HttpHandlerOptions,
|
|
651
630
|
): Promise<UpdateVpcIngressConnectionCommandOutput>;
|
|
652
631
|
updateVpcIngressConnection(
|
|
653
632
|
args: UpdateVpcIngressConnectionCommandInput,
|
|
654
|
-
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void
|
|
633
|
+
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void,
|
|
655
634
|
): void;
|
|
656
635
|
updateVpcIngressConnection(
|
|
657
636
|
args: UpdateVpcIngressConnectionCommandInput,
|
|
658
637
|
options: __HttpHandlerOptions,
|
|
659
|
-
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void
|
|
638
|
+
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void,
|
|
660
639
|
): void;
|
|
661
640
|
paginateDescribeCustomDomains(
|
|
662
641
|
args: DescribeCustomDomainsCommandInput,
|
|
663
642
|
paginationConfig?: Pick<
|
|
664
643
|
PaginationConfiguration,
|
|
665
644
|
Exclude<keyof PaginationConfiguration, "client">
|
|
666
|
-
|
|
645
|
+
>,
|
|
667
646
|
): Paginator<DescribeCustomDomainsCommandOutput>;
|
|
668
647
|
paginateListAutoScalingConfigurations(
|
|
669
648
|
args?: ListAutoScalingConfigurationsCommandInput,
|
|
670
649
|
paginationConfig?: Pick<
|
|
671
650
|
PaginationConfiguration,
|
|
672
651
|
Exclude<keyof PaginationConfiguration, "client">
|
|
673
|
-
|
|
652
|
+
>,
|
|
674
653
|
): Paginator<ListAutoScalingConfigurationsCommandOutput>;
|
|
675
654
|
paginateListConnections(
|
|
676
655
|
args?: ListConnectionsCommandInput,
|
|
677
656
|
paginationConfig?: Pick<
|
|
678
657
|
PaginationConfiguration,
|
|
679
658
|
Exclude<keyof PaginationConfiguration, "client">
|
|
680
|
-
|
|
659
|
+
>,
|
|
681
660
|
): Paginator<ListConnectionsCommandOutput>;
|
|
682
661
|
paginateListObservabilityConfigurations(
|
|
683
662
|
args?: ListObservabilityConfigurationsCommandInput,
|
|
684
663
|
paginationConfig?: Pick<
|
|
685
664
|
PaginationConfiguration,
|
|
686
665
|
Exclude<keyof PaginationConfiguration, "client">
|
|
687
|
-
|
|
666
|
+
>,
|
|
688
667
|
): Paginator<ListObservabilityConfigurationsCommandOutput>;
|
|
689
668
|
paginateListOperations(
|
|
690
669
|
args: ListOperationsCommandInput,
|
|
691
670
|
paginationConfig?: Pick<
|
|
692
671
|
PaginationConfiguration,
|
|
693
672
|
Exclude<keyof PaginationConfiguration, "client">
|
|
694
|
-
|
|
673
|
+
>,
|
|
695
674
|
): Paginator<ListOperationsCommandOutput>;
|
|
696
675
|
paginateListServices(
|
|
697
676
|
args?: ListServicesCommandInput,
|
|
698
677
|
paginationConfig?: Pick<
|
|
699
678
|
PaginationConfiguration,
|
|
700
679
|
Exclude<keyof PaginationConfiguration, "client">
|
|
701
|
-
|
|
680
|
+
>,
|
|
702
681
|
): Paginator<ListServicesCommandOutput>;
|
|
703
682
|
paginateListServicesForAutoScalingConfiguration(
|
|
704
683
|
args: ListServicesForAutoScalingConfigurationCommandInput,
|
|
705
684
|
paginationConfig?: Pick<
|
|
706
685
|
PaginationConfiguration,
|
|
707
686
|
Exclude<keyof PaginationConfiguration, "client">
|
|
708
|
-
|
|
687
|
+
>,
|
|
709
688
|
): Paginator<ListServicesForAutoScalingConfigurationCommandOutput>;
|
|
710
689
|
paginateListVpcConnectors(
|
|
711
690
|
args?: ListVpcConnectorsCommandInput,
|
|
712
691
|
paginationConfig?: Pick<
|
|
713
692
|
PaginationConfiguration,
|
|
714
693
|
Exclude<keyof PaginationConfiguration, "client">
|
|
715
|
-
|
|
694
|
+
>,
|
|
716
695
|
): Paginator<ListVpcConnectorsCommandOutput>;
|
|
717
696
|
paginateListVpcIngressConnections(
|
|
718
697
|
args?: ListVpcIngressConnectionsCommandInput,
|
|
719
698
|
paginationConfig?: Pick<
|
|
720
699
|
PaginationConfiguration,
|
|
721
700
|
Exclude<keyof PaginationConfiguration, "client">
|
|
722
|
-
|
|
701
|
+
>,
|
|
723
702
|
): Paginator<ListVpcIngressConnectionsCommandOutput>;
|
|
724
703
|
}
|
|
725
704
|
export declare class AppRunner extends AppRunnerClient implements AppRunner {}
|