@aws-sdk/client-api-gateway 3.315.0 → 3.316.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/APIGateway.js +124 -1680
- package/dist-es/APIGateway.js +124 -1680
- package/dist-types/APIGateway.d.ts +128 -247
- package/dist-types/ts3.4/APIGateway.d.ts +4 -1
- package/package.json +6 -6
|
@@ -120,851 +120,732 @@ import { UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/Up
|
|
|
120
120
|
import { UpdateUsageCommandInput, UpdateUsageCommandOutput } from "./commands/UpdateUsageCommand";
|
|
121
121
|
import { UpdateUsagePlanCommandInput, UpdateUsagePlanCommandOutput } from "./commands/UpdateUsagePlanCommand";
|
|
122
122
|
import { UpdateVpcLinkCommandInput, UpdateVpcLinkCommandOutput } from "./commands/UpdateVpcLinkCommand";
|
|
123
|
-
|
|
124
|
-
* @public
|
|
125
|
-
* <fullname>Amazon API Gateway</fullname>
|
|
126
|
-
* <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>
|
|
127
|
-
*/
|
|
128
|
-
export declare class APIGateway extends APIGatewayClient {
|
|
123
|
+
export interface APIGateway {
|
|
129
124
|
/**
|
|
130
|
-
* @
|
|
131
|
-
* <p>Create an ApiKey resource. </p>
|
|
125
|
+
* @see {@link CreateApiKeyCommand}
|
|
132
126
|
*/
|
|
133
127
|
createApiKey(args: CreateApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<CreateApiKeyCommandOutput>;
|
|
134
128
|
createApiKey(args: CreateApiKeyCommandInput, cb: (err: any, data?: CreateApiKeyCommandOutput) => void): void;
|
|
135
129
|
createApiKey(args: CreateApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApiKeyCommandOutput) => void): void;
|
|
136
130
|
/**
|
|
137
|
-
* @
|
|
138
|
-
* <p>Adds a new Authorizer resource to an existing RestApi resource.</p>
|
|
131
|
+
* @see {@link CreateAuthorizerCommand}
|
|
139
132
|
*/
|
|
140
133
|
createAuthorizer(args: CreateAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<CreateAuthorizerCommandOutput>;
|
|
141
134
|
createAuthorizer(args: CreateAuthorizerCommandInput, cb: (err: any, data?: CreateAuthorizerCommandOutput) => void): void;
|
|
142
135
|
createAuthorizer(args: CreateAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAuthorizerCommandOutput) => void): void;
|
|
143
136
|
/**
|
|
144
|
-
* @
|
|
145
|
-
* <p>Creates a new BasePathMapping resource.</p>
|
|
137
|
+
* @see {@link CreateBasePathMappingCommand}
|
|
146
138
|
*/
|
|
147
139
|
createBasePathMapping(args: CreateBasePathMappingCommandInput, options?: __HttpHandlerOptions): Promise<CreateBasePathMappingCommandOutput>;
|
|
148
140
|
createBasePathMapping(args: CreateBasePathMappingCommandInput, cb: (err: any, data?: CreateBasePathMappingCommandOutput) => void): void;
|
|
149
141
|
createBasePathMapping(args: CreateBasePathMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBasePathMappingCommandOutput) => void): void;
|
|
150
142
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Creates a Deployment resource, which makes a specified RestApi callable over the internet.</p>
|
|
143
|
+
* @see {@link CreateDeploymentCommand}
|
|
153
144
|
*/
|
|
154
145
|
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
155
146
|
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
156
147
|
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
157
148
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Creates a documentation part.</p>
|
|
149
|
+
* @see {@link CreateDocumentationPartCommand}
|
|
160
150
|
*/
|
|
161
151
|
createDocumentationPart(args: CreateDocumentationPartCommandInput, options?: __HttpHandlerOptions): Promise<CreateDocumentationPartCommandOutput>;
|
|
162
152
|
createDocumentationPart(args: CreateDocumentationPartCommandInput, cb: (err: any, data?: CreateDocumentationPartCommandOutput) => void): void;
|
|
163
153
|
createDocumentationPart(args: CreateDocumentationPartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDocumentationPartCommandOutput) => void): void;
|
|
164
154
|
/**
|
|
165
|
-
* @
|
|
166
|
-
* <p>Creates a documentation version</p>
|
|
155
|
+
* @see {@link CreateDocumentationVersionCommand}
|
|
167
156
|
*/
|
|
168
157
|
createDocumentationVersion(args: CreateDocumentationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateDocumentationVersionCommandOutput>;
|
|
169
158
|
createDocumentationVersion(args: CreateDocumentationVersionCommandInput, cb: (err: any, data?: CreateDocumentationVersionCommandOutput) => void): void;
|
|
170
159
|
createDocumentationVersion(args: CreateDocumentationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDocumentationVersionCommandOutput) => void): void;
|
|
171
160
|
/**
|
|
172
|
-
* @
|
|
173
|
-
* <p>Creates a new domain name.</p>
|
|
161
|
+
* @see {@link CreateDomainNameCommand}
|
|
174
162
|
*/
|
|
175
163
|
createDomainName(args: CreateDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainNameCommandOutput>;
|
|
176
164
|
createDomainName(args: CreateDomainNameCommandInput, cb: (err: any, data?: CreateDomainNameCommandOutput) => void): void;
|
|
177
165
|
createDomainName(args: CreateDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainNameCommandOutput) => void): void;
|
|
178
166
|
/**
|
|
179
|
-
* @
|
|
180
|
-
* <p>Adds a new Model resource to an existing RestApi resource.</p>
|
|
167
|
+
* @see {@link CreateModelCommand}
|
|
181
168
|
*/
|
|
182
169
|
createModel(args: CreateModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCommandOutput>;
|
|
183
170
|
createModel(args: CreateModelCommandInput, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
184
171
|
createModel(args: CreateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
185
172
|
/**
|
|
186
|
-
* @
|
|
187
|
-
* <p>Creates a RequestValidator of a given RestApi.</p>
|
|
173
|
+
* @see {@link CreateRequestValidatorCommand}
|
|
188
174
|
*/
|
|
189
175
|
createRequestValidator(args: CreateRequestValidatorCommandInput, options?: __HttpHandlerOptions): Promise<CreateRequestValidatorCommandOutput>;
|
|
190
176
|
createRequestValidator(args: CreateRequestValidatorCommandInput, cb: (err: any, data?: CreateRequestValidatorCommandOutput) => void): void;
|
|
191
177
|
createRequestValidator(args: CreateRequestValidatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRequestValidatorCommandOutput) => void): void;
|
|
192
178
|
/**
|
|
193
|
-
* @
|
|
194
|
-
* <p>Creates a Resource resource.</p>
|
|
179
|
+
* @see {@link CreateResourceCommand}
|
|
195
180
|
*/
|
|
196
181
|
createResource(args: CreateResourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceCommandOutput>;
|
|
197
182
|
createResource(args: CreateResourceCommandInput, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
198
183
|
createResource(args: CreateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceCommandOutput) => void): void;
|
|
199
184
|
/**
|
|
200
|
-
* @
|
|
201
|
-
* <p>Creates a new RestApi resource.</p>
|
|
185
|
+
* @see {@link CreateRestApiCommand}
|
|
202
186
|
*/
|
|
203
187
|
createRestApi(args: CreateRestApiCommandInput, options?: __HttpHandlerOptions): Promise<CreateRestApiCommandOutput>;
|
|
204
188
|
createRestApi(args: CreateRestApiCommandInput, cb: (err: any, data?: CreateRestApiCommandOutput) => void): void;
|
|
205
189
|
createRestApi(args: CreateRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRestApiCommandOutput) => void): void;
|
|
206
190
|
/**
|
|
207
|
-
* @
|
|
208
|
-
* <p>Creates a new Stage resource that references a pre-existing Deployment for the API. </p>
|
|
191
|
+
* @see {@link CreateStageCommand}
|
|
209
192
|
*/
|
|
210
193
|
createStage(args: CreateStageCommandInput, options?: __HttpHandlerOptions): Promise<CreateStageCommandOutput>;
|
|
211
194
|
createStage(args: CreateStageCommandInput, cb: (err: any, data?: CreateStageCommandOutput) => void): void;
|
|
212
195
|
createStage(args: CreateStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStageCommandOutput) => void): void;
|
|
213
196
|
/**
|
|
214
|
-
* @
|
|
215
|
-
* <p>Creates a usage plan with the throttle and quota limits, as well as the associated API stages, specified in the payload. </p>
|
|
197
|
+
* @see {@link CreateUsagePlanCommand}
|
|
216
198
|
*/
|
|
217
199
|
createUsagePlan(args: CreateUsagePlanCommandInput, options?: __HttpHandlerOptions): Promise<CreateUsagePlanCommandOutput>;
|
|
218
200
|
createUsagePlan(args: CreateUsagePlanCommandInput, cb: (err: any, data?: CreateUsagePlanCommandOutput) => void): void;
|
|
219
201
|
createUsagePlan(args: CreateUsagePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUsagePlanCommandOutput) => void): void;
|
|
220
202
|
/**
|
|
221
|
-
* @
|
|
222
|
-
* <p>Creates a usage plan key for adding an existing API key to a usage plan.</p>
|
|
203
|
+
* @see {@link CreateUsagePlanKeyCommand}
|
|
223
204
|
*/
|
|
224
205
|
createUsagePlanKey(args: CreateUsagePlanKeyCommandInput, options?: __HttpHandlerOptions): Promise<CreateUsagePlanKeyCommandOutput>;
|
|
225
206
|
createUsagePlanKey(args: CreateUsagePlanKeyCommandInput, cb: (err: any, data?: CreateUsagePlanKeyCommandOutput) => void): void;
|
|
226
207
|
createUsagePlanKey(args: CreateUsagePlanKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUsagePlanKeyCommandOutput) => void): void;
|
|
227
208
|
/**
|
|
228
|
-
* @
|
|
229
|
-
* <p>Creates a VPC link, under the caller's account in a selected region, in an asynchronous operation that typically takes 2-4 minutes to complete and become operational. The caller must have permissions to create and update VPC Endpoint services.</p>
|
|
209
|
+
* @see {@link CreateVpcLinkCommand}
|
|
230
210
|
*/
|
|
231
211
|
createVpcLink(args: CreateVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcLinkCommandOutput>;
|
|
232
212
|
createVpcLink(args: CreateVpcLinkCommandInput, cb: (err: any, data?: CreateVpcLinkCommandOutput) => void): void;
|
|
233
213
|
createVpcLink(args: CreateVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcLinkCommandOutput) => void): void;
|
|
234
214
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <p>Deletes the ApiKey resource.</p>
|
|
215
|
+
* @see {@link DeleteApiKeyCommand}
|
|
237
216
|
*/
|
|
238
217
|
deleteApiKey(args: DeleteApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApiKeyCommandOutput>;
|
|
239
218
|
deleteApiKey(args: DeleteApiKeyCommandInput, cb: (err: any, data?: DeleteApiKeyCommandOutput) => void): void;
|
|
240
219
|
deleteApiKey(args: DeleteApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApiKeyCommandOutput) => void): void;
|
|
241
220
|
/**
|
|
242
|
-
* @
|
|
243
|
-
* <p>Deletes an existing Authorizer resource.</p>
|
|
221
|
+
* @see {@link DeleteAuthorizerCommand}
|
|
244
222
|
*/
|
|
245
223
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAuthorizerCommandOutput>;
|
|
246
224
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, cb: (err: any, data?: DeleteAuthorizerCommandOutput) => void): void;
|
|
247
225
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAuthorizerCommandOutput) => void): void;
|
|
248
226
|
/**
|
|
249
|
-
* @
|
|
250
|
-
* <p>Deletes the BasePathMapping resource.</p>
|
|
227
|
+
* @see {@link DeleteBasePathMappingCommand}
|
|
251
228
|
*/
|
|
252
229
|
deleteBasePathMapping(args: DeleteBasePathMappingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBasePathMappingCommandOutput>;
|
|
253
230
|
deleteBasePathMapping(args: DeleteBasePathMappingCommandInput, cb: (err: any, data?: DeleteBasePathMappingCommandOutput) => void): void;
|
|
254
231
|
deleteBasePathMapping(args: DeleteBasePathMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBasePathMappingCommandOutput) => void): void;
|
|
255
232
|
/**
|
|
256
|
-
* @
|
|
257
|
-
* <p>Deletes the ClientCertificate resource.</p>
|
|
233
|
+
* @see {@link DeleteClientCertificateCommand}
|
|
258
234
|
*/
|
|
259
235
|
deleteClientCertificate(args: DeleteClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClientCertificateCommandOutput>;
|
|
260
236
|
deleteClientCertificate(args: DeleteClientCertificateCommandInput, cb: (err: any, data?: DeleteClientCertificateCommandOutput) => void): void;
|
|
261
237
|
deleteClientCertificate(args: DeleteClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClientCertificateCommandOutput) => void): void;
|
|
262
238
|
/**
|
|
263
|
-
* @
|
|
264
|
-
* <p>Deletes a Deployment resource. Deleting a deployment will only succeed if there are no Stage resources associated with it.</p>
|
|
239
|
+
* @see {@link DeleteDeploymentCommand}
|
|
265
240
|
*/
|
|
266
241
|
deleteDeployment(args: DeleteDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeploymentCommandOutput>;
|
|
267
242
|
deleteDeployment(args: DeleteDeploymentCommandInput, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
|
|
268
243
|
deleteDeployment(args: DeleteDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
|
|
269
244
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Deletes a documentation part</p>
|
|
245
|
+
* @see {@link DeleteDocumentationPartCommand}
|
|
272
246
|
*/
|
|
273
247
|
deleteDocumentationPart(args: DeleteDocumentationPartCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDocumentationPartCommandOutput>;
|
|
274
248
|
deleteDocumentationPart(args: DeleteDocumentationPartCommandInput, cb: (err: any, data?: DeleteDocumentationPartCommandOutput) => void): void;
|
|
275
249
|
deleteDocumentationPart(args: DeleteDocumentationPartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDocumentationPartCommandOutput) => void): void;
|
|
276
250
|
/**
|
|
277
|
-
* @
|
|
278
|
-
* <p>Deletes a documentation version.</p>
|
|
251
|
+
* @see {@link DeleteDocumentationVersionCommand}
|
|
279
252
|
*/
|
|
280
253
|
deleteDocumentationVersion(args: DeleteDocumentationVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDocumentationVersionCommandOutput>;
|
|
281
254
|
deleteDocumentationVersion(args: DeleteDocumentationVersionCommandInput, cb: (err: any, data?: DeleteDocumentationVersionCommandOutput) => void): void;
|
|
282
255
|
deleteDocumentationVersion(args: DeleteDocumentationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDocumentationVersionCommandOutput) => void): void;
|
|
283
256
|
/**
|
|
284
|
-
* @
|
|
285
|
-
* <p>Deletes the DomainName resource.</p>
|
|
257
|
+
* @see {@link DeleteDomainNameCommand}
|
|
286
258
|
*/
|
|
287
259
|
deleteDomainName(args: DeleteDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainNameCommandOutput>;
|
|
288
260
|
deleteDomainName(args: DeleteDomainNameCommandInput, cb: (err: any, data?: DeleteDomainNameCommandOutput) => void): void;
|
|
289
261
|
deleteDomainName(args: DeleteDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainNameCommandOutput) => void): void;
|
|
290
262
|
/**
|
|
291
|
-
* @
|
|
292
|
-
* <p>Clears any customization of a GatewayResponse of a specified response type on the given RestApi and resets it with the default settings.</p>
|
|
263
|
+
* @see {@link DeleteGatewayResponseCommand}
|
|
293
264
|
*/
|
|
294
265
|
deleteGatewayResponse(args: DeleteGatewayResponseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayResponseCommandOutput>;
|
|
295
266
|
deleteGatewayResponse(args: DeleteGatewayResponseCommandInput, cb: (err: any, data?: DeleteGatewayResponseCommandOutput) => void): void;
|
|
296
267
|
deleteGatewayResponse(args: DeleteGatewayResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayResponseCommandOutput) => void): void;
|
|
297
268
|
/**
|
|
298
|
-
* @
|
|
299
|
-
* <p>Represents a delete integration.</p>
|
|
269
|
+
* @see {@link DeleteIntegrationCommand}
|
|
300
270
|
*/
|
|
301
271
|
deleteIntegration(args: DeleteIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationCommandOutput>;
|
|
302
272
|
deleteIntegration(args: DeleteIntegrationCommandInput, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
303
273
|
deleteIntegration(args: DeleteIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
304
274
|
/**
|
|
305
|
-
* @
|
|
306
|
-
* <p>Represents a delete integration response.</p>
|
|
275
|
+
* @see {@link DeleteIntegrationResponseCommand}
|
|
307
276
|
*/
|
|
308
277
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationResponseCommandOutput>;
|
|
309
278
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, cb: (err: any, data?: DeleteIntegrationResponseCommandOutput) => void): void;
|
|
310
279
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationResponseCommandOutput) => void): void;
|
|
311
280
|
/**
|
|
312
|
-
* @
|
|
313
|
-
* <p>Deletes an existing Method resource.</p>
|
|
281
|
+
* @see {@link DeleteMethodCommand}
|
|
314
282
|
*/
|
|
315
283
|
deleteMethod(args: DeleteMethodCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMethodCommandOutput>;
|
|
316
284
|
deleteMethod(args: DeleteMethodCommandInput, cb: (err: any, data?: DeleteMethodCommandOutput) => void): void;
|
|
317
285
|
deleteMethod(args: DeleteMethodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMethodCommandOutput) => void): void;
|
|
318
286
|
/**
|
|
319
|
-
* @
|
|
320
|
-
* <p>Deletes an existing MethodResponse resource.</p>
|
|
287
|
+
* @see {@link DeleteMethodResponseCommand}
|
|
321
288
|
*/
|
|
322
289
|
deleteMethodResponse(args: DeleteMethodResponseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMethodResponseCommandOutput>;
|
|
323
290
|
deleteMethodResponse(args: DeleteMethodResponseCommandInput, cb: (err: any, data?: DeleteMethodResponseCommandOutput) => void): void;
|
|
324
291
|
deleteMethodResponse(args: DeleteMethodResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMethodResponseCommandOutput) => void): void;
|
|
325
292
|
/**
|
|
326
|
-
* @
|
|
327
|
-
* <p>Deletes a model.</p>
|
|
293
|
+
* @see {@link DeleteModelCommand}
|
|
328
294
|
*/
|
|
329
295
|
deleteModel(args: DeleteModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCommandOutput>;
|
|
330
296
|
deleteModel(args: DeleteModelCommandInput, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
331
297
|
deleteModel(args: DeleteModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
332
298
|
/**
|
|
333
|
-
* @
|
|
334
|
-
* <p>Deletes a RequestValidator of a given RestApi.</p>
|
|
299
|
+
* @see {@link DeleteRequestValidatorCommand}
|
|
335
300
|
*/
|
|
336
301
|
deleteRequestValidator(args: DeleteRequestValidatorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRequestValidatorCommandOutput>;
|
|
337
302
|
deleteRequestValidator(args: DeleteRequestValidatorCommandInput, cb: (err: any, data?: DeleteRequestValidatorCommandOutput) => void): void;
|
|
338
303
|
deleteRequestValidator(args: DeleteRequestValidatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRequestValidatorCommandOutput) => void): void;
|
|
339
304
|
/**
|
|
340
|
-
* @
|
|
341
|
-
* <p>Deletes a Resource resource.</p>
|
|
305
|
+
* @see {@link DeleteResourceCommand}
|
|
342
306
|
*/
|
|
343
307
|
deleteResource(args: DeleteResourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceCommandOutput>;
|
|
344
308
|
deleteResource(args: DeleteResourceCommandInput, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
345
309
|
deleteResource(args: DeleteResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceCommandOutput) => void): void;
|
|
346
310
|
/**
|
|
347
|
-
* @
|
|
348
|
-
* <p>Deletes the specified API.</p>
|
|
311
|
+
* @see {@link DeleteRestApiCommand}
|
|
349
312
|
*/
|
|
350
313
|
deleteRestApi(args: DeleteRestApiCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRestApiCommandOutput>;
|
|
351
314
|
deleteRestApi(args: DeleteRestApiCommandInput, cb: (err: any, data?: DeleteRestApiCommandOutput) => void): void;
|
|
352
315
|
deleteRestApi(args: DeleteRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRestApiCommandOutput) => void): void;
|
|
353
316
|
/**
|
|
354
|
-
* @
|
|
355
|
-
* <p>Deletes a Stage resource.</p>
|
|
317
|
+
* @see {@link DeleteStageCommand}
|
|
356
318
|
*/
|
|
357
319
|
deleteStage(args: DeleteStageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStageCommandOutput>;
|
|
358
320
|
deleteStage(args: DeleteStageCommandInput, cb: (err: any, data?: DeleteStageCommandOutput) => void): void;
|
|
359
321
|
deleteStage(args: DeleteStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStageCommandOutput) => void): void;
|
|
360
322
|
/**
|
|
361
|
-
* @
|
|
362
|
-
* <p>Deletes a usage plan of a given plan Id.</p>
|
|
323
|
+
* @see {@link DeleteUsagePlanCommand}
|
|
363
324
|
*/
|
|
364
325
|
deleteUsagePlan(args: DeleteUsagePlanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsagePlanCommandOutput>;
|
|
365
326
|
deleteUsagePlan(args: DeleteUsagePlanCommandInput, cb: (err: any, data?: DeleteUsagePlanCommandOutput) => void): void;
|
|
366
327
|
deleteUsagePlan(args: DeleteUsagePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsagePlanCommandOutput) => void): void;
|
|
367
328
|
/**
|
|
368
|
-
* @
|
|
369
|
-
* <p>Deletes a usage plan key and remove the underlying API key from the associated usage plan.</p>
|
|
329
|
+
* @see {@link DeleteUsagePlanKeyCommand}
|
|
370
330
|
*/
|
|
371
331
|
deleteUsagePlanKey(args: DeleteUsagePlanKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsagePlanKeyCommandOutput>;
|
|
372
332
|
deleteUsagePlanKey(args: DeleteUsagePlanKeyCommandInput, cb: (err: any, data?: DeleteUsagePlanKeyCommandOutput) => void): void;
|
|
373
333
|
deleteUsagePlanKey(args: DeleteUsagePlanKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsagePlanKeyCommandOutput) => void): void;
|
|
374
334
|
/**
|
|
375
|
-
* @
|
|
376
|
-
* <p>Deletes an existing VpcLink of a specified identifier.</p>
|
|
335
|
+
* @see {@link DeleteVpcLinkCommand}
|
|
377
336
|
*/
|
|
378
337
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcLinkCommandOutput>;
|
|
379
338
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, cb: (err: any, data?: DeleteVpcLinkCommandOutput) => void): void;
|
|
380
339
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcLinkCommandOutput) => void): void;
|
|
381
340
|
/**
|
|
382
|
-
* @
|
|
383
|
-
* <p>Flushes all authorizer cache entries on a stage.</p>
|
|
341
|
+
* @see {@link FlushStageAuthorizersCacheCommand}
|
|
384
342
|
*/
|
|
385
343
|
flushStageAuthorizersCache(args: FlushStageAuthorizersCacheCommandInput, options?: __HttpHandlerOptions): Promise<FlushStageAuthorizersCacheCommandOutput>;
|
|
386
344
|
flushStageAuthorizersCache(args: FlushStageAuthorizersCacheCommandInput, cb: (err: any, data?: FlushStageAuthorizersCacheCommandOutput) => void): void;
|
|
387
345
|
flushStageAuthorizersCache(args: FlushStageAuthorizersCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: FlushStageAuthorizersCacheCommandOutput) => void): void;
|
|
388
346
|
/**
|
|
389
|
-
* @
|
|
390
|
-
* <p>Flushes a stage's cache.</p>
|
|
347
|
+
* @see {@link FlushStageCacheCommand}
|
|
391
348
|
*/
|
|
392
349
|
flushStageCache(args: FlushStageCacheCommandInput, options?: __HttpHandlerOptions): Promise<FlushStageCacheCommandOutput>;
|
|
393
350
|
flushStageCache(args: FlushStageCacheCommandInput, cb: (err: any, data?: FlushStageCacheCommandOutput) => void): void;
|
|
394
351
|
flushStageCache(args: FlushStageCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: FlushStageCacheCommandOutput) => void): void;
|
|
395
352
|
/**
|
|
396
|
-
* @
|
|
397
|
-
* <p>Generates a ClientCertificate resource.</p>
|
|
353
|
+
* @see {@link GenerateClientCertificateCommand}
|
|
398
354
|
*/
|
|
399
355
|
generateClientCertificate(args: GenerateClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GenerateClientCertificateCommandOutput>;
|
|
400
356
|
generateClientCertificate(args: GenerateClientCertificateCommandInput, cb: (err: any, data?: GenerateClientCertificateCommandOutput) => void): void;
|
|
401
357
|
generateClientCertificate(args: GenerateClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateClientCertificateCommandOutput) => void): void;
|
|
402
358
|
/**
|
|
403
|
-
* @
|
|
404
|
-
* <p>Gets information about the current Account resource.</p>
|
|
359
|
+
* @see {@link GetAccountCommand}
|
|
405
360
|
*/
|
|
406
361
|
getAccount(args: GetAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountCommandOutput>;
|
|
407
362
|
getAccount(args: GetAccountCommandInput, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
408
363
|
getAccount(args: GetAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
409
364
|
/**
|
|
410
|
-
* @
|
|
411
|
-
* <p>Gets information about the current ApiKey resource.</p>
|
|
365
|
+
* @see {@link GetApiKeyCommand}
|
|
412
366
|
*/
|
|
413
367
|
getApiKey(args: GetApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetApiKeyCommandOutput>;
|
|
414
368
|
getApiKey(args: GetApiKeyCommandInput, cb: (err: any, data?: GetApiKeyCommandOutput) => void): void;
|
|
415
369
|
getApiKey(args: GetApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApiKeyCommandOutput) => void): void;
|
|
416
370
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Gets information about the current ApiKeys resource.</p>
|
|
371
|
+
* @see {@link GetApiKeysCommand}
|
|
419
372
|
*/
|
|
420
373
|
getApiKeys(args: GetApiKeysCommandInput, options?: __HttpHandlerOptions): Promise<GetApiKeysCommandOutput>;
|
|
421
374
|
getApiKeys(args: GetApiKeysCommandInput, cb: (err: any, data?: GetApiKeysCommandOutput) => void): void;
|
|
422
375
|
getApiKeys(args: GetApiKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApiKeysCommandOutput) => void): void;
|
|
423
376
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Describe an existing Authorizer resource.</p>
|
|
377
|
+
* @see {@link GetAuthorizerCommand}
|
|
426
378
|
*/
|
|
427
379
|
getAuthorizer(args: GetAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthorizerCommandOutput>;
|
|
428
380
|
getAuthorizer(args: GetAuthorizerCommandInput, cb: (err: any, data?: GetAuthorizerCommandOutput) => void): void;
|
|
429
381
|
getAuthorizer(args: GetAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizerCommandOutput) => void): void;
|
|
430
382
|
/**
|
|
431
|
-
* @
|
|
432
|
-
* <p>Describe an existing Authorizers resource.</p>
|
|
383
|
+
* @see {@link GetAuthorizersCommand}
|
|
433
384
|
*/
|
|
434
385
|
getAuthorizers(args: GetAuthorizersCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthorizersCommandOutput>;
|
|
435
386
|
getAuthorizers(args: GetAuthorizersCommandInput, cb: (err: any, data?: GetAuthorizersCommandOutput) => void): void;
|
|
436
387
|
getAuthorizers(args: GetAuthorizersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizersCommandOutput) => void): void;
|
|
437
388
|
/**
|
|
438
|
-
* @
|
|
439
|
-
* <p>Describe a BasePathMapping resource.</p>
|
|
389
|
+
* @see {@link GetBasePathMappingCommand}
|
|
440
390
|
*/
|
|
441
391
|
getBasePathMapping(args: GetBasePathMappingCommandInput, options?: __HttpHandlerOptions): Promise<GetBasePathMappingCommandOutput>;
|
|
442
392
|
getBasePathMapping(args: GetBasePathMappingCommandInput, cb: (err: any, data?: GetBasePathMappingCommandOutput) => void): void;
|
|
443
393
|
getBasePathMapping(args: GetBasePathMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBasePathMappingCommandOutput) => void): void;
|
|
444
394
|
/**
|
|
445
|
-
* @
|
|
446
|
-
* <p>Represents a collection of BasePathMapping resources.</p>
|
|
395
|
+
* @see {@link GetBasePathMappingsCommand}
|
|
447
396
|
*/
|
|
448
397
|
getBasePathMappings(args: GetBasePathMappingsCommandInput, options?: __HttpHandlerOptions): Promise<GetBasePathMappingsCommandOutput>;
|
|
449
398
|
getBasePathMappings(args: GetBasePathMappingsCommandInput, cb: (err: any, data?: GetBasePathMappingsCommandOutput) => void): void;
|
|
450
399
|
getBasePathMappings(args: GetBasePathMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBasePathMappingsCommandOutput) => void): void;
|
|
451
400
|
/**
|
|
452
|
-
* @
|
|
453
|
-
* <p>Gets information about the current ClientCertificate resource.</p>
|
|
401
|
+
* @see {@link GetClientCertificateCommand}
|
|
454
402
|
*/
|
|
455
403
|
getClientCertificate(args: GetClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetClientCertificateCommandOutput>;
|
|
456
404
|
getClientCertificate(args: GetClientCertificateCommandInput, cb: (err: any, data?: GetClientCertificateCommandOutput) => void): void;
|
|
457
405
|
getClientCertificate(args: GetClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClientCertificateCommandOutput) => void): void;
|
|
458
406
|
/**
|
|
459
|
-
* @
|
|
460
|
-
* <p>Gets a collection of ClientCertificate resources.</p>
|
|
407
|
+
* @see {@link GetClientCertificatesCommand}
|
|
461
408
|
*/
|
|
462
409
|
getClientCertificates(args: GetClientCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<GetClientCertificatesCommandOutput>;
|
|
463
410
|
getClientCertificates(args: GetClientCertificatesCommandInput, cb: (err: any, data?: GetClientCertificatesCommandOutput) => void): void;
|
|
464
411
|
getClientCertificates(args: GetClientCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetClientCertificatesCommandOutput) => void): void;
|
|
465
412
|
/**
|
|
466
|
-
* @
|
|
467
|
-
* <p>Gets information about a Deployment resource.</p>
|
|
413
|
+
* @see {@link GetDeploymentCommand}
|
|
468
414
|
*/
|
|
469
415
|
getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
|
|
470
416
|
getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
471
417
|
getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
472
418
|
/**
|
|
473
|
-
* @
|
|
474
|
-
* <p>Gets information about a Deployments collection.</p>
|
|
419
|
+
* @see {@link GetDeploymentsCommand}
|
|
475
420
|
*/
|
|
476
421
|
getDeployments(args: GetDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentsCommandOutput>;
|
|
477
422
|
getDeployments(args: GetDeploymentsCommandInput, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
|
|
478
423
|
getDeployments(args: GetDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
|
|
479
424
|
/**
|
|
480
|
-
* @
|
|
481
|
-
* <p>Gets a documentation part.</p>
|
|
425
|
+
* @see {@link GetDocumentationPartCommand}
|
|
482
426
|
*/
|
|
483
427
|
getDocumentationPart(args: GetDocumentationPartCommandInput, options?: __HttpHandlerOptions): Promise<GetDocumentationPartCommandOutput>;
|
|
484
428
|
getDocumentationPart(args: GetDocumentationPartCommandInput, cb: (err: any, data?: GetDocumentationPartCommandOutput) => void): void;
|
|
485
429
|
getDocumentationPart(args: GetDocumentationPartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentationPartCommandOutput) => void): void;
|
|
486
430
|
/**
|
|
487
|
-
* @
|
|
488
|
-
* <p>Gets documentation parts.</p>
|
|
431
|
+
* @see {@link GetDocumentationPartsCommand}
|
|
489
432
|
*/
|
|
490
433
|
getDocumentationParts(args: GetDocumentationPartsCommandInput, options?: __HttpHandlerOptions): Promise<GetDocumentationPartsCommandOutput>;
|
|
491
434
|
getDocumentationParts(args: GetDocumentationPartsCommandInput, cb: (err: any, data?: GetDocumentationPartsCommandOutput) => void): void;
|
|
492
435
|
getDocumentationParts(args: GetDocumentationPartsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentationPartsCommandOutput) => void): void;
|
|
493
436
|
/**
|
|
494
|
-
* @
|
|
495
|
-
* <p>Gets a documentation version.</p>
|
|
437
|
+
* @see {@link GetDocumentationVersionCommand}
|
|
496
438
|
*/
|
|
497
439
|
getDocumentationVersion(args: GetDocumentationVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetDocumentationVersionCommandOutput>;
|
|
498
440
|
getDocumentationVersion(args: GetDocumentationVersionCommandInput, cb: (err: any, data?: GetDocumentationVersionCommandOutput) => void): void;
|
|
499
441
|
getDocumentationVersion(args: GetDocumentationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentationVersionCommandOutput) => void): void;
|
|
500
442
|
/**
|
|
501
|
-
* @
|
|
502
|
-
* <p>Gets documentation versions.</p>
|
|
443
|
+
* @see {@link GetDocumentationVersionsCommand}
|
|
503
444
|
*/
|
|
504
445
|
getDocumentationVersions(args: GetDocumentationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<GetDocumentationVersionsCommandOutput>;
|
|
505
446
|
getDocumentationVersions(args: GetDocumentationVersionsCommandInput, cb: (err: any, data?: GetDocumentationVersionsCommandOutput) => void): void;
|
|
506
447
|
getDocumentationVersions(args: GetDocumentationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDocumentationVersionsCommandOutput) => void): void;
|
|
507
448
|
/**
|
|
508
|
-
* @
|
|
509
|
-
* <p>Represents a domain name that is contained in a simpler, more intuitive URL that can be called.</p>
|
|
449
|
+
* @see {@link GetDomainNameCommand}
|
|
510
450
|
*/
|
|
511
451
|
getDomainName(args: GetDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainNameCommandOutput>;
|
|
512
452
|
getDomainName(args: GetDomainNameCommandInput, cb: (err: any, data?: GetDomainNameCommandOutput) => void): void;
|
|
513
453
|
getDomainName(args: GetDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainNameCommandOutput) => void): void;
|
|
514
454
|
/**
|
|
515
|
-
* @
|
|
516
|
-
* <p>Represents a collection of DomainName resources.</p>
|
|
455
|
+
* @see {@link GetDomainNamesCommand}
|
|
517
456
|
*/
|
|
518
457
|
getDomainNames(args: GetDomainNamesCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainNamesCommandOutput>;
|
|
519
458
|
getDomainNames(args: GetDomainNamesCommandInput, cb: (err: any, data?: GetDomainNamesCommandOutput) => void): void;
|
|
520
459
|
getDomainNames(args: GetDomainNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainNamesCommandOutput) => void): void;
|
|
521
460
|
/**
|
|
522
|
-
* @
|
|
523
|
-
* <p>Exports a deployed version of a RestApi in a specified format.</p>
|
|
461
|
+
* @see {@link GetExportCommand}
|
|
524
462
|
*/
|
|
525
463
|
getExport(args: GetExportCommandInput, options?: __HttpHandlerOptions): Promise<GetExportCommandOutput>;
|
|
526
464
|
getExport(args: GetExportCommandInput, cb: (err: any, data?: GetExportCommandOutput) => void): void;
|
|
527
465
|
getExport(args: GetExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExportCommandOutput) => void): void;
|
|
528
466
|
/**
|
|
529
|
-
* @
|
|
530
|
-
* <p>Gets a GatewayResponse of a specified response type on the given RestApi.</p>
|
|
467
|
+
* @see {@link GetGatewayResponseCommand}
|
|
531
468
|
*/
|
|
532
469
|
getGatewayResponse(args: GetGatewayResponseCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayResponseCommandOutput>;
|
|
533
470
|
getGatewayResponse(args: GetGatewayResponseCommandInput, cb: (err: any, data?: GetGatewayResponseCommandOutput) => void): void;
|
|
534
471
|
getGatewayResponse(args: GetGatewayResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayResponseCommandOutput) => void): void;
|
|
535
472
|
/**
|
|
536
|
-
* @
|
|
537
|
-
* <p>Gets the GatewayResponses collection on the given RestApi. If an API developer has not added any definitions for gateway responses, the result will be the API Gateway-generated default GatewayResponses collection for the supported response types.</p>
|
|
473
|
+
* @see {@link GetGatewayResponsesCommand}
|
|
538
474
|
*/
|
|
539
475
|
getGatewayResponses(args: GetGatewayResponsesCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayResponsesCommandOutput>;
|
|
540
476
|
getGatewayResponses(args: GetGatewayResponsesCommandInput, cb: (err: any, data?: GetGatewayResponsesCommandOutput) => void): void;
|
|
541
477
|
getGatewayResponses(args: GetGatewayResponsesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayResponsesCommandOutput) => void): void;
|
|
542
478
|
/**
|
|
543
|
-
* @
|
|
544
|
-
* <p>Get the integration settings.</p>
|
|
479
|
+
* @see {@link GetIntegrationCommand}
|
|
545
480
|
*/
|
|
546
481
|
getIntegration(args: GetIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationCommandOutput>;
|
|
547
482
|
getIntegration(args: GetIntegrationCommandInput, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
548
483
|
getIntegration(args: GetIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
549
484
|
/**
|
|
550
|
-
* @
|
|
551
|
-
* <p>Represents a get integration response.</p>
|
|
485
|
+
* @see {@link GetIntegrationResponseCommand}
|
|
552
486
|
*/
|
|
553
487
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationResponseCommandOutput>;
|
|
554
488
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, cb: (err: any, data?: GetIntegrationResponseCommandOutput) => void): void;
|
|
555
489
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationResponseCommandOutput) => void): void;
|
|
556
490
|
/**
|
|
557
|
-
* @
|
|
558
|
-
* <p>Describe an existing Method resource.</p>
|
|
491
|
+
* @see {@link GetMethodCommand}
|
|
559
492
|
*/
|
|
560
493
|
getMethod(args: GetMethodCommandInput, options?: __HttpHandlerOptions): Promise<GetMethodCommandOutput>;
|
|
561
494
|
getMethod(args: GetMethodCommandInput, cb: (err: any, data?: GetMethodCommandOutput) => void): void;
|
|
562
495
|
getMethod(args: GetMethodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMethodCommandOutput) => void): void;
|
|
563
496
|
/**
|
|
564
|
-
* @
|
|
565
|
-
* <p>Describes a MethodResponse resource.</p>
|
|
497
|
+
* @see {@link GetMethodResponseCommand}
|
|
566
498
|
*/
|
|
567
499
|
getMethodResponse(args: GetMethodResponseCommandInput, options?: __HttpHandlerOptions): Promise<GetMethodResponseCommandOutput>;
|
|
568
500
|
getMethodResponse(args: GetMethodResponseCommandInput, cb: (err: any, data?: GetMethodResponseCommandOutput) => void): void;
|
|
569
501
|
getMethodResponse(args: GetMethodResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMethodResponseCommandOutput) => void): void;
|
|
570
502
|
/**
|
|
571
|
-
* @
|
|
572
|
-
* <p>Describes an existing model defined for a RestApi resource.</p>
|
|
503
|
+
* @see {@link GetModelCommand}
|
|
573
504
|
*/
|
|
574
505
|
getModel(args: GetModelCommandInput, options?: __HttpHandlerOptions): Promise<GetModelCommandOutput>;
|
|
575
506
|
getModel(args: GetModelCommandInput, cb: (err: any, data?: GetModelCommandOutput) => void): void;
|
|
576
507
|
getModel(args: GetModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelCommandOutput) => void): void;
|
|
577
508
|
/**
|
|
578
|
-
* @
|
|
579
|
-
* <p>Describes existing Models defined for a RestApi resource.</p>
|
|
509
|
+
* @see {@link GetModelsCommand}
|
|
580
510
|
*/
|
|
581
511
|
getModels(args: GetModelsCommandInput, options?: __HttpHandlerOptions): Promise<GetModelsCommandOutput>;
|
|
582
512
|
getModels(args: GetModelsCommandInput, cb: (err: any, data?: GetModelsCommandOutput) => void): void;
|
|
583
513
|
getModels(args: GetModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelsCommandOutput) => void): void;
|
|
584
514
|
/**
|
|
585
|
-
* @
|
|
586
|
-
* <p>Generates a sample mapping template that can be used to transform a payload into the structure of a model.</p>
|
|
515
|
+
* @see {@link GetModelTemplateCommand}
|
|
587
516
|
*/
|
|
588
517
|
getModelTemplate(args: GetModelTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetModelTemplateCommandOutput>;
|
|
589
518
|
getModelTemplate(args: GetModelTemplateCommandInput, cb: (err: any, data?: GetModelTemplateCommandOutput) => void): void;
|
|
590
519
|
getModelTemplate(args: GetModelTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelTemplateCommandOutput) => void): void;
|
|
591
520
|
/**
|
|
592
|
-
* @
|
|
593
|
-
* <p>Gets a RequestValidator of a given RestApi.</p>
|
|
521
|
+
* @see {@link GetRequestValidatorCommand}
|
|
594
522
|
*/
|
|
595
523
|
getRequestValidator(args: GetRequestValidatorCommandInput, options?: __HttpHandlerOptions): Promise<GetRequestValidatorCommandOutput>;
|
|
596
524
|
getRequestValidator(args: GetRequestValidatorCommandInput, cb: (err: any, data?: GetRequestValidatorCommandOutput) => void): void;
|
|
597
525
|
getRequestValidator(args: GetRequestValidatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequestValidatorCommandOutput) => void): void;
|
|
598
526
|
/**
|
|
599
|
-
* @
|
|
600
|
-
* <p>Gets the RequestValidators collection of a given RestApi.</p>
|
|
527
|
+
* @see {@link GetRequestValidatorsCommand}
|
|
601
528
|
*/
|
|
602
529
|
getRequestValidators(args: GetRequestValidatorsCommandInput, options?: __HttpHandlerOptions): Promise<GetRequestValidatorsCommandOutput>;
|
|
603
530
|
getRequestValidators(args: GetRequestValidatorsCommandInput, cb: (err: any, data?: GetRequestValidatorsCommandOutput) => void): void;
|
|
604
531
|
getRequestValidators(args: GetRequestValidatorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequestValidatorsCommandOutput) => void): void;
|
|
605
532
|
/**
|
|
606
|
-
* @
|
|
607
|
-
* <p>Lists information about a resource.</p>
|
|
533
|
+
* @see {@link GetResourceCommand}
|
|
608
534
|
*/
|
|
609
535
|
getResource(args: GetResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceCommandOutput>;
|
|
610
536
|
getResource(args: GetResourceCommandInput, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
611
537
|
getResource(args: GetResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
|
|
612
538
|
/**
|
|
613
|
-
* @
|
|
614
|
-
* <p>Lists information about a collection of Resource resources.</p>
|
|
539
|
+
* @see {@link GetResourcesCommand}
|
|
615
540
|
*/
|
|
616
541
|
getResources(args: GetResourcesCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcesCommandOutput>;
|
|
617
542
|
getResources(args: GetResourcesCommandInput, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
|
|
618
543
|
getResources(args: GetResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcesCommandOutput) => void): void;
|
|
619
544
|
/**
|
|
620
|
-
* @
|
|
621
|
-
* <p>Lists the RestApi resource in the collection.</p>
|
|
545
|
+
* @see {@link GetRestApiCommand}
|
|
622
546
|
*/
|
|
623
547
|
getRestApi(args: GetRestApiCommandInput, options?: __HttpHandlerOptions): Promise<GetRestApiCommandOutput>;
|
|
624
548
|
getRestApi(args: GetRestApiCommandInput, cb: (err: any, data?: GetRestApiCommandOutput) => void): void;
|
|
625
549
|
getRestApi(args: GetRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRestApiCommandOutput) => void): void;
|
|
626
550
|
/**
|
|
627
|
-
* @
|
|
628
|
-
* <p>Lists the RestApis resources for your collection.</p>
|
|
551
|
+
* @see {@link GetRestApisCommand}
|
|
629
552
|
*/
|
|
630
553
|
getRestApis(args: GetRestApisCommandInput, options?: __HttpHandlerOptions): Promise<GetRestApisCommandOutput>;
|
|
631
554
|
getRestApis(args: GetRestApisCommandInput, cb: (err: any, data?: GetRestApisCommandOutput) => void): void;
|
|
632
555
|
getRestApis(args: GetRestApisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRestApisCommandOutput) => void): void;
|
|
633
556
|
/**
|
|
634
|
-
* @
|
|
635
|
-
* <p>Generates a client SDK for a RestApi and Stage.</p>
|
|
557
|
+
* @see {@link GetSdkCommand}
|
|
636
558
|
*/
|
|
637
559
|
getSdk(args: GetSdkCommandInput, options?: __HttpHandlerOptions): Promise<GetSdkCommandOutput>;
|
|
638
560
|
getSdk(args: GetSdkCommandInput, cb: (err: any, data?: GetSdkCommandOutput) => void): void;
|
|
639
561
|
getSdk(args: GetSdkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSdkCommandOutput) => void): void;
|
|
640
562
|
/**
|
|
641
|
-
* @
|
|
642
|
-
* <p>Gets an SDK type.</p>
|
|
563
|
+
* @see {@link GetSdkTypeCommand}
|
|
643
564
|
*/
|
|
644
565
|
getSdkType(args: GetSdkTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetSdkTypeCommandOutput>;
|
|
645
566
|
getSdkType(args: GetSdkTypeCommandInput, cb: (err: any, data?: GetSdkTypeCommandOutput) => void): void;
|
|
646
567
|
getSdkType(args: GetSdkTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSdkTypeCommandOutput) => void): void;
|
|
647
568
|
/**
|
|
648
|
-
* @
|
|
649
|
-
* <p>Gets SDK types</p>
|
|
569
|
+
* @see {@link GetSdkTypesCommand}
|
|
650
570
|
*/
|
|
651
571
|
getSdkTypes(args: GetSdkTypesCommandInput, options?: __HttpHandlerOptions): Promise<GetSdkTypesCommandOutput>;
|
|
652
572
|
getSdkTypes(args: GetSdkTypesCommandInput, cb: (err: any, data?: GetSdkTypesCommandOutput) => void): void;
|
|
653
573
|
getSdkTypes(args: GetSdkTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSdkTypesCommandOutput) => void): void;
|
|
654
574
|
/**
|
|
655
|
-
* @
|
|
656
|
-
* <p>Gets information about a Stage resource.</p>
|
|
575
|
+
* @see {@link GetStageCommand}
|
|
657
576
|
*/
|
|
658
577
|
getStage(args: GetStageCommandInput, options?: __HttpHandlerOptions): Promise<GetStageCommandOutput>;
|
|
659
578
|
getStage(args: GetStageCommandInput, cb: (err: any, data?: GetStageCommandOutput) => void): void;
|
|
660
579
|
getStage(args: GetStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStageCommandOutput) => void): void;
|
|
661
580
|
/**
|
|
662
|
-
* @
|
|
663
|
-
* <p>Gets information about one or more Stage resources.</p>
|
|
581
|
+
* @see {@link GetStagesCommand}
|
|
664
582
|
*/
|
|
665
583
|
getStages(args: GetStagesCommandInput, options?: __HttpHandlerOptions): Promise<GetStagesCommandOutput>;
|
|
666
584
|
getStages(args: GetStagesCommandInput, cb: (err: any, data?: GetStagesCommandOutput) => void): void;
|
|
667
585
|
getStages(args: GetStagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStagesCommandOutput) => void): void;
|
|
668
586
|
/**
|
|
669
|
-
* @
|
|
670
|
-
* <p>Gets the Tags collection for a given resource.</p>
|
|
587
|
+
* @see {@link GetTagsCommand}
|
|
671
588
|
*/
|
|
672
589
|
getTags(args: GetTagsCommandInput, options?: __HttpHandlerOptions): Promise<GetTagsCommandOutput>;
|
|
673
590
|
getTags(args: GetTagsCommandInput, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
674
591
|
getTags(args: GetTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
675
592
|
/**
|
|
676
|
-
* @
|
|
677
|
-
* <p>Gets the usage data of a usage plan in a specified time interval.</p>
|
|
593
|
+
* @see {@link GetUsageCommand}
|
|
678
594
|
*/
|
|
679
595
|
getUsage(args: GetUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetUsageCommandOutput>;
|
|
680
596
|
getUsage(args: GetUsageCommandInput, cb: (err: any, data?: GetUsageCommandOutput) => void): void;
|
|
681
597
|
getUsage(args: GetUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsageCommandOutput) => void): void;
|
|
682
598
|
/**
|
|
683
|
-
* @
|
|
684
|
-
* <p>Gets a usage plan of a given plan identifier.</p>
|
|
599
|
+
* @see {@link GetUsagePlanCommand}
|
|
685
600
|
*/
|
|
686
601
|
getUsagePlan(args: GetUsagePlanCommandInput, options?: __HttpHandlerOptions): Promise<GetUsagePlanCommandOutput>;
|
|
687
602
|
getUsagePlan(args: GetUsagePlanCommandInput, cb: (err: any, data?: GetUsagePlanCommandOutput) => void): void;
|
|
688
603
|
getUsagePlan(args: GetUsagePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsagePlanCommandOutput) => void): void;
|
|
689
604
|
/**
|
|
690
|
-
* @
|
|
691
|
-
* <p>Gets a usage plan key of a given key identifier.</p>
|
|
605
|
+
* @see {@link GetUsagePlanKeyCommand}
|
|
692
606
|
*/
|
|
693
607
|
getUsagePlanKey(args: GetUsagePlanKeyCommandInput, options?: __HttpHandlerOptions): Promise<GetUsagePlanKeyCommandOutput>;
|
|
694
608
|
getUsagePlanKey(args: GetUsagePlanKeyCommandInput, cb: (err: any, data?: GetUsagePlanKeyCommandOutput) => void): void;
|
|
695
609
|
getUsagePlanKey(args: GetUsagePlanKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsagePlanKeyCommandOutput) => void): void;
|
|
696
610
|
/**
|
|
697
|
-
* @
|
|
698
|
-
* <p>Gets all the usage plan keys representing the API keys added to a specified usage plan.</p>
|
|
611
|
+
* @see {@link GetUsagePlanKeysCommand}
|
|
699
612
|
*/
|
|
700
613
|
getUsagePlanKeys(args: GetUsagePlanKeysCommandInput, options?: __HttpHandlerOptions): Promise<GetUsagePlanKeysCommandOutput>;
|
|
701
614
|
getUsagePlanKeys(args: GetUsagePlanKeysCommandInput, cb: (err: any, data?: GetUsagePlanKeysCommandOutput) => void): void;
|
|
702
615
|
getUsagePlanKeys(args: GetUsagePlanKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsagePlanKeysCommandOutput) => void): void;
|
|
703
616
|
/**
|
|
704
|
-
* @
|
|
705
|
-
* <p>Gets all the usage plans of the caller's account.</p>
|
|
617
|
+
* @see {@link GetUsagePlansCommand}
|
|
706
618
|
*/
|
|
707
619
|
getUsagePlans(args: GetUsagePlansCommandInput, options?: __HttpHandlerOptions): Promise<GetUsagePlansCommandOutput>;
|
|
708
620
|
getUsagePlans(args: GetUsagePlansCommandInput, cb: (err: any, data?: GetUsagePlansCommandOutput) => void): void;
|
|
709
621
|
getUsagePlans(args: GetUsagePlansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsagePlansCommandOutput) => void): void;
|
|
710
622
|
/**
|
|
711
|
-
* @
|
|
712
|
-
* <p>Gets a specified VPC link under the caller's account in a region.</p>
|
|
623
|
+
* @see {@link GetVpcLinkCommand}
|
|
713
624
|
*/
|
|
714
625
|
getVpcLink(args: GetVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<GetVpcLinkCommandOutput>;
|
|
715
626
|
getVpcLink(args: GetVpcLinkCommandInput, cb: (err: any, data?: GetVpcLinkCommandOutput) => void): void;
|
|
716
627
|
getVpcLink(args: GetVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpcLinkCommandOutput) => void): void;
|
|
717
628
|
/**
|
|
718
|
-
* @
|
|
719
|
-
* <p>Gets the VpcLinks collection under the caller's account in a selected region.</p>
|
|
629
|
+
* @see {@link GetVpcLinksCommand}
|
|
720
630
|
*/
|
|
721
631
|
getVpcLinks(args: GetVpcLinksCommandInput, options?: __HttpHandlerOptions): Promise<GetVpcLinksCommandOutput>;
|
|
722
632
|
getVpcLinks(args: GetVpcLinksCommandInput, cb: (err: any, data?: GetVpcLinksCommandOutput) => void): void;
|
|
723
633
|
getVpcLinks(args: GetVpcLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpcLinksCommandOutput) => void): void;
|
|
724
634
|
/**
|
|
725
|
-
* @
|
|
726
|
-
* <p>Import API keys from an external source, such as a CSV-formatted file.</p>
|
|
635
|
+
* @see {@link ImportApiKeysCommand}
|
|
727
636
|
*/
|
|
728
637
|
importApiKeys(args: ImportApiKeysCommandInput, options?: __HttpHandlerOptions): Promise<ImportApiKeysCommandOutput>;
|
|
729
638
|
importApiKeys(args: ImportApiKeysCommandInput, cb: (err: any, data?: ImportApiKeysCommandOutput) => void): void;
|
|
730
639
|
importApiKeys(args: ImportApiKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportApiKeysCommandOutput) => void): void;
|
|
731
640
|
/**
|
|
732
|
-
* @
|
|
733
|
-
* <p>Imports documentation parts</p>
|
|
641
|
+
* @see {@link ImportDocumentationPartsCommand}
|
|
734
642
|
*/
|
|
735
643
|
importDocumentationParts(args: ImportDocumentationPartsCommandInput, options?: __HttpHandlerOptions): Promise<ImportDocumentationPartsCommandOutput>;
|
|
736
644
|
importDocumentationParts(args: ImportDocumentationPartsCommandInput, cb: (err: any, data?: ImportDocumentationPartsCommandOutput) => void): void;
|
|
737
645
|
importDocumentationParts(args: ImportDocumentationPartsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportDocumentationPartsCommandOutput) => void): void;
|
|
738
646
|
/**
|
|
739
|
-
* @
|
|
740
|
-
* <p>A feature of the API Gateway control service for creating a new API from an external API definition file.</p>
|
|
647
|
+
* @see {@link ImportRestApiCommand}
|
|
741
648
|
*/
|
|
742
649
|
importRestApi(args: ImportRestApiCommandInput, options?: __HttpHandlerOptions): Promise<ImportRestApiCommandOutput>;
|
|
743
650
|
importRestApi(args: ImportRestApiCommandInput, cb: (err: any, data?: ImportRestApiCommandOutput) => void): void;
|
|
744
651
|
importRestApi(args: ImportRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportRestApiCommandOutput) => void): void;
|
|
745
652
|
/**
|
|
746
|
-
* @
|
|
747
|
-
* <p>Creates a customization of a GatewayResponse of a specified response type and status code on the given RestApi.</p>
|
|
653
|
+
* @see {@link PutGatewayResponseCommand}
|
|
748
654
|
*/
|
|
749
655
|
putGatewayResponse(args: PutGatewayResponseCommandInput, options?: __HttpHandlerOptions): Promise<PutGatewayResponseCommandOutput>;
|
|
750
656
|
putGatewayResponse(args: PutGatewayResponseCommandInput, cb: (err: any, data?: PutGatewayResponseCommandOutput) => void): void;
|
|
751
657
|
putGatewayResponse(args: PutGatewayResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutGatewayResponseCommandOutput) => void): void;
|
|
752
658
|
/**
|
|
753
|
-
* @
|
|
754
|
-
* <p>Sets up a method's integration.</p>
|
|
659
|
+
* @see {@link PutIntegrationCommand}
|
|
755
660
|
*/
|
|
756
661
|
putIntegration(args: PutIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<PutIntegrationCommandOutput>;
|
|
757
662
|
putIntegration(args: PutIntegrationCommandInput, cb: (err: any, data?: PutIntegrationCommandOutput) => void): void;
|
|
758
663
|
putIntegration(args: PutIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIntegrationCommandOutput) => void): void;
|
|
759
664
|
/**
|
|
760
|
-
* @
|
|
761
|
-
* <p>Represents a put integration.</p>
|
|
665
|
+
* @see {@link PutIntegrationResponseCommand}
|
|
762
666
|
*/
|
|
763
667
|
putIntegrationResponse(args: PutIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<PutIntegrationResponseCommandOutput>;
|
|
764
668
|
putIntegrationResponse(args: PutIntegrationResponseCommandInput, cb: (err: any, data?: PutIntegrationResponseCommandOutput) => void): void;
|
|
765
669
|
putIntegrationResponse(args: PutIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutIntegrationResponseCommandOutput) => void): void;
|
|
766
670
|
/**
|
|
767
|
-
* @
|
|
768
|
-
* <p>Add a method to an existing Resource resource.</p>
|
|
671
|
+
* @see {@link PutMethodCommand}
|
|
769
672
|
*/
|
|
770
673
|
putMethod(args: PutMethodCommandInput, options?: __HttpHandlerOptions): Promise<PutMethodCommandOutput>;
|
|
771
674
|
putMethod(args: PutMethodCommandInput, cb: (err: any, data?: PutMethodCommandOutput) => void): void;
|
|
772
675
|
putMethod(args: PutMethodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMethodCommandOutput) => void): void;
|
|
773
676
|
/**
|
|
774
|
-
* @
|
|
775
|
-
* <p>Adds a MethodResponse to an existing Method resource.</p>
|
|
677
|
+
* @see {@link PutMethodResponseCommand}
|
|
776
678
|
*/
|
|
777
679
|
putMethodResponse(args: PutMethodResponseCommandInput, options?: __HttpHandlerOptions): Promise<PutMethodResponseCommandOutput>;
|
|
778
680
|
putMethodResponse(args: PutMethodResponseCommandInput, cb: (err: any, data?: PutMethodResponseCommandOutput) => void): void;
|
|
779
681
|
putMethodResponse(args: PutMethodResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMethodResponseCommandOutput) => void): void;
|
|
780
682
|
/**
|
|
781
|
-
* @
|
|
782
|
-
* <p>A feature of the API Gateway control service for updating an existing API with an input of external API definitions.
|
|
783
|
-
* The update can take the form of merging the supplied definition into the existing API or overwriting the existing API.</p>
|
|
683
|
+
* @see {@link PutRestApiCommand}
|
|
784
684
|
*/
|
|
785
685
|
putRestApi(args: PutRestApiCommandInput, options?: __HttpHandlerOptions): Promise<PutRestApiCommandOutput>;
|
|
786
686
|
putRestApi(args: PutRestApiCommandInput, cb: (err: any, data?: PutRestApiCommandOutput) => void): void;
|
|
787
687
|
putRestApi(args: PutRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRestApiCommandOutput) => void): void;
|
|
788
688
|
/**
|
|
789
|
-
* @
|
|
790
|
-
* <p>Adds or updates a tag on a given resource.</p>
|
|
689
|
+
* @see {@link TagResourceCommand}
|
|
791
690
|
*/
|
|
792
691
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
793
692
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
794
693
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
795
694
|
/**
|
|
796
|
-
* @
|
|
797
|
-
* <p>Simulate the execution of an Authorizer in your RestApi with headers, parameters, and an incoming request body.</p>
|
|
695
|
+
* @see {@link TestInvokeAuthorizerCommand}
|
|
798
696
|
*/
|
|
799
697
|
testInvokeAuthorizer(args: TestInvokeAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<TestInvokeAuthorizerCommandOutput>;
|
|
800
698
|
testInvokeAuthorizer(args: TestInvokeAuthorizerCommandInput, cb: (err: any, data?: TestInvokeAuthorizerCommandOutput) => void): void;
|
|
801
699
|
testInvokeAuthorizer(args: TestInvokeAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestInvokeAuthorizerCommandOutput) => void): void;
|
|
802
700
|
/**
|
|
803
|
-
* @
|
|
804
|
-
* <p>Simulate the invocation of a Method in your RestApi with headers, parameters, and an incoming request body.</p>
|
|
701
|
+
* @see {@link TestInvokeMethodCommand}
|
|
805
702
|
*/
|
|
806
703
|
testInvokeMethod(args: TestInvokeMethodCommandInput, options?: __HttpHandlerOptions): Promise<TestInvokeMethodCommandOutput>;
|
|
807
704
|
testInvokeMethod(args: TestInvokeMethodCommandInput, cb: (err: any, data?: TestInvokeMethodCommandOutput) => void): void;
|
|
808
705
|
testInvokeMethod(args: TestInvokeMethodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestInvokeMethodCommandOutput) => void): void;
|
|
809
706
|
/**
|
|
810
|
-
* @
|
|
811
|
-
* <p>Removes a tag from a given resource.</p>
|
|
707
|
+
* @see {@link UntagResourceCommand}
|
|
812
708
|
*/
|
|
813
709
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
814
710
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
815
711
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
816
712
|
/**
|
|
817
|
-
* @
|
|
818
|
-
* <p>Changes information about the current Account resource.</p>
|
|
713
|
+
* @see {@link UpdateAccountCommand}
|
|
819
714
|
*/
|
|
820
715
|
updateAccount(args: UpdateAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountCommandOutput>;
|
|
821
716
|
updateAccount(args: UpdateAccountCommandInput, cb: (err: any, data?: UpdateAccountCommandOutput) => void): void;
|
|
822
717
|
updateAccount(args: UpdateAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountCommandOutput) => void): void;
|
|
823
718
|
/**
|
|
824
|
-
* @
|
|
825
|
-
* <p>Changes information about an ApiKey resource.</p>
|
|
719
|
+
* @see {@link UpdateApiKeyCommand}
|
|
826
720
|
*/
|
|
827
721
|
updateApiKey(args: UpdateApiKeyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApiKeyCommandOutput>;
|
|
828
722
|
updateApiKey(args: UpdateApiKeyCommandInput, cb: (err: any, data?: UpdateApiKeyCommandOutput) => void): void;
|
|
829
723
|
updateApiKey(args: UpdateApiKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApiKeyCommandOutput) => void): void;
|
|
830
724
|
/**
|
|
831
|
-
* @
|
|
832
|
-
* <p>Updates an existing Authorizer resource.</p>
|
|
725
|
+
* @see {@link UpdateAuthorizerCommand}
|
|
833
726
|
*/
|
|
834
727
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAuthorizerCommandOutput>;
|
|
835
728
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, cb: (err: any, data?: UpdateAuthorizerCommandOutput) => void): void;
|
|
836
729
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAuthorizerCommandOutput) => void): void;
|
|
837
730
|
/**
|
|
838
|
-
* @
|
|
839
|
-
* <p>Changes information about the BasePathMapping resource.</p>
|
|
731
|
+
* @see {@link UpdateBasePathMappingCommand}
|
|
840
732
|
*/
|
|
841
733
|
updateBasePathMapping(args: UpdateBasePathMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBasePathMappingCommandOutput>;
|
|
842
734
|
updateBasePathMapping(args: UpdateBasePathMappingCommandInput, cb: (err: any, data?: UpdateBasePathMappingCommandOutput) => void): void;
|
|
843
735
|
updateBasePathMapping(args: UpdateBasePathMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBasePathMappingCommandOutput) => void): void;
|
|
844
736
|
/**
|
|
845
|
-
* @
|
|
846
|
-
* <p>Changes information about an ClientCertificate resource.</p>
|
|
737
|
+
* @see {@link UpdateClientCertificateCommand}
|
|
847
738
|
*/
|
|
848
739
|
updateClientCertificate(args: UpdateClientCertificateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClientCertificateCommandOutput>;
|
|
849
740
|
updateClientCertificate(args: UpdateClientCertificateCommandInput, cb: (err: any, data?: UpdateClientCertificateCommandOutput) => void): void;
|
|
850
741
|
updateClientCertificate(args: UpdateClientCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClientCertificateCommandOutput) => void): void;
|
|
851
742
|
/**
|
|
852
|
-
* @
|
|
853
|
-
* <p>Changes information about a Deployment resource.</p>
|
|
743
|
+
* @see {@link UpdateDeploymentCommand}
|
|
854
744
|
*/
|
|
855
745
|
updateDeployment(args: UpdateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeploymentCommandOutput>;
|
|
856
746
|
updateDeployment(args: UpdateDeploymentCommandInput, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
|
|
857
747
|
updateDeployment(args: UpdateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
|
|
858
748
|
/**
|
|
859
|
-
* @
|
|
860
|
-
* <p>Updates a documentation part.</p>
|
|
749
|
+
* @see {@link UpdateDocumentationPartCommand}
|
|
861
750
|
*/
|
|
862
751
|
updateDocumentationPart(args: UpdateDocumentationPartCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDocumentationPartCommandOutput>;
|
|
863
752
|
updateDocumentationPart(args: UpdateDocumentationPartCommandInput, cb: (err: any, data?: UpdateDocumentationPartCommandOutput) => void): void;
|
|
864
753
|
updateDocumentationPart(args: UpdateDocumentationPartCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentationPartCommandOutput) => void): void;
|
|
865
754
|
/**
|
|
866
|
-
* @
|
|
867
|
-
* <p>Updates a documentation version.</p>
|
|
755
|
+
* @see {@link UpdateDocumentationVersionCommand}
|
|
868
756
|
*/
|
|
869
757
|
updateDocumentationVersion(args: UpdateDocumentationVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDocumentationVersionCommandOutput>;
|
|
870
758
|
updateDocumentationVersion(args: UpdateDocumentationVersionCommandInput, cb: (err: any, data?: UpdateDocumentationVersionCommandOutput) => void): void;
|
|
871
759
|
updateDocumentationVersion(args: UpdateDocumentationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDocumentationVersionCommandOutput) => void): void;
|
|
872
760
|
/**
|
|
873
|
-
* @
|
|
874
|
-
* <p>Changes information about the DomainName resource.</p>
|
|
761
|
+
* @see {@link UpdateDomainNameCommand}
|
|
875
762
|
*/
|
|
876
763
|
updateDomainName(args: UpdateDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainNameCommandOutput>;
|
|
877
764
|
updateDomainName(args: UpdateDomainNameCommandInput, cb: (err: any, data?: UpdateDomainNameCommandOutput) => void): void;
|
|
878
765
|
updateDomainName(args: UpdateDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainNameCommandOutput) => void): void;
|
|
879
766
|
/**
|
|
880
|
-
* @
|
|
881
|
-
* <p>Updates a GatewayResponse of a specified response type on the given RestApi.</p>
|
|
767
|
+
* @see {@link UpdateGatewayResponseCommand}
|
|
882
768
|
*/
|
|
883
769
|
updateGatewayResponse(args: UpdateGatewayResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayResponseCommandOutput>;
|
|
884
770
|
updateGatewayResponse(args: UpdateGatewayResponseCommandInput, cb: (err: any, data?: UpdateGatewayResponseCommandOutput) => void): void;
|
|
885
771
|
updateGatewayResponse(args: UpdateGatewayResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayResponseCommandOutput) => void): void;
|
|
886
772
|
/**
|
|
887
|
-
* @
|
|
888
|
-
* <p>Represents an update integration.</p>
|
|
773
|
+
* @see {@link UpdateIntegrationCommand}
|
|
889
774
|
*/
|
|
890
775
|
updateIntegration(args: UpdateIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIntegrationCommandOutput>;
|
|
891
776
|
updateIntegration(args: UpdateIntegrationCommandInput, cb: (err: any, data?: UpdateIntegrationCommandOutput) => void): void;
|
|
892
777
|
updateIntegration(args: UpdateIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIntegrationCommandOutput) => void): void;
|
|
893
778
|
/**
|
|
894
|
-
* @
|
|
895
|
-
* <p>Represents an update integration response.</p>
|
|
779
|
+
* @see {@link UpdateIntegrationResponseCommand}
|
|
896
780
|
*/
|
|
897
781
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIntegrationResponseCommandOutput>;
|
|
898
782
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, cb: (err: any, data?: UpdateIntegrationResponseCommandOutput) => void): void;
|
|
899
783
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIntegrationResponseCommandOutput) => void): void;
|
|
900
784
|
/**
|
|
901
|
-
* @
|
|
902
|
-
* <p>Updates an existing Method resource.</p>
|
|
785
|
+
* @see {@link UpdateMethodCommand}
|
|
903
786
|
*/
|
|
904
787
|
updateMethod(args: UpdateMethodCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMethodCommandOutput>;
|
|
905
788
|
updateMethod(args: UpdateMethodCommandInput, cb: (err: any, data?: UpdateMethodCommandOutput) => void): void;
|
|
906
789
|
updateMethod(args: UpdateMethodCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMethodCommandOutput) => void): void;
|
|
907
790
|
/**
|
|
908
|
-
* @
|
|
909
|
-
* <p>Updates an existing MethodResponse resource.</p>
|
|
791
|
+
* @see {@link UpdateMethodResponseCommand}
|
|
910
792
|
*/
|
|
911
793
|
updateMethodResponse(args: UpdateMethodResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMethodResponseCommandOutput>;
|
|
912
794
|
updateMethodResponse(args: UpdateMethodResponseCommandInput, cb: (err: any, data?: UpdateMethodResponseCommandOutput) => void): void;
|
|
913
795
|
updateMethodResponse(args: UpdateMethodResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMethodResponseCommandOutput) => void): void;
|
|
914
796
|
/**
|
|
915
|
-
* @
|
|
916
|
-
* <p>Changes information about a model.</p>
|
|
797
|
+
* @see {@link UpdateModelCommand}
|
|
917
798
|
*/
|
|
918
799
|
updateModel(args: UpdateModelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateModelCommandOutput>;
|
|
919
800
|
updateModel(args: UpdateModelCommandInput, cb: (err: any, data?: UpdateModelCommandOutput) => void): void;
|
|
920
801
|
updateModel(args: UpdateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateModelCommandOutput) => void): void;
|
|
921
802
|
/**
|
|
922
|
-
* @
|
|
923
|
-
* <p>Updates a RequestValidator of a given RestApi.</p>
|
|
803
|
+
* @see {@link UpdateRequestValidatorCommand}
|
|
924
804
|
*/
|
|
925
805
|
updateRequestValidator(args: UpdateRequestValidatorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRequestValidatorCommandOutput>;
|
|
926
806
|
updateRequestValidator(args: UpdateRequestValidatorCommandInput, cb: (err: any, data?: UpdateRequestValidatorCommandOutput) => void): void;
|
|
927
807
|
updateRequestValidator(args: UpdateRequestValidatorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRequestValidatorCommandOutput) => void): void;
|
|
928
808
|
/**
|
|
929
|
-
* @
|
|
930
|
-
* <p>Changes information about a Resource resource.</p>
|
|
809
|
+
* @see {@link UpdateResourceCommand}
|
|
931
810
|
*/
|
|
932
811
|
updateResource(args: UpdateResourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceCommandOutput>;
|
|
933
812
|
updateResource(args: UpdateResourceCommandInput, cb: (err: any, data?: UpdateResourceCommandOutput) => void): void;
|
|
934
813
|
updateResource(args: UpdateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceCommandOutput) => void): void;
|
|
935
814
|
/**
|
|
936
|
-
* @
|
|
937
|
-
* <p>Changes information about the specified API.</p>
|
|
815
|
+
* @see {@link UpdateRestApiCommand}
|
|
938
816
|
*/
|
|
939
817
|
updateRestApi(args: UpdateRestApiCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRestApiCommandOutput>;
|
|
940
818
|
updateRestApi(args: UpdateRestApiCommandInput, cb: (err: any, data?: UpdateRestApiCommandOutput) => void): void;
|
|
941
819
|
updateRestApi(args: UpdateRestApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRestApiCommandOutput) => void): void;
|
|
942
820
|
/**
|
|
943
|
-
* @
|
|
944
|
-
* <p>Changes information about a Stage resource.</p>
|
|
821
|
+
* @see {@link UpdateStageCommand}
|
|
945
822
|
*/
|
|
946
823
|
updateStage(args: UpdateStageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStageCommandOutput>;
|
|
947
824
|
updateStage(args: UpdateStageCommandInput, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
948
825
|
updateStage(args: UpdateStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
949
826
|
/**
|
|
950
|
-
* @
|
|
951
|
-
* <p>Grants a temporary extension to the remaining quota of a usage plan associated with a specified API key.</p>
|
|
827
|
+
* @see {@link UpdateUsageCommand}
|
|
952
828
|
*/
|
|
953
829
|
updateUsage(args: UpdateUsageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUsageCommandOutput>;
|
|
954
830
|
updateUsage(args: UpdateUsageCommandInput, cb: (err: any, data?: UpdateUsageCommandOutput) => void): void;
|
|
955
831
|
updateUsage(args: UpdateUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUsageCommandOutput) => void): void;
|
|
956
832
|
/**
|
|
957
|
-
* @
|
|
958
|
-
* <p>Updates a usage plan of a given plan Id.</p>
|
|
833
|
+
* @see {@link UpdateUsagePlanCommand}
|
|
959
834
|
*/
|
|
960
835
|
updateUsagePlan(args: UpdateUsagePlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUsagePlanCommandOutput>;
|
|
961
836
|
updateUsagePlan(args: UpdateUsagePlanCommandInput, cb: (err: any, data?: UpdateUsagePlanCommandOutput) => void): void;
|
|
962
837
|
updateUsagePlan(args: UpdateUsagePlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUsagePlanCommandOutput) => void): void;
|
|
963
838
|
/**
|
|
964
|
-
* @
|
|
965
|
-
* <p>Updates an existing VpcLink of a specified identifier.</p>
|
|
839
|
+
* @see {@link UpdateVpcLinkCommand}
|
|
966
840
|
*/
|
|
967
841
|
updateVpcLink(args: UpdateVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVpcLinkCommandOutput>;
|
|
968
842
|
updateVpcLink(args: UpdateVpcLinkCommandInput, cb: (err: any, data?: UpdateVpcLinkCommandOutput) => void): void;
|
|
969
843
|
updateVpcLink(args: UpdateVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVpcLinkCommandOutput) => void): void;
|
|
970
844
|
}
|
|
845
|
+
/**
|
|
846
|
+
* @public
|
|
847
|
+
* <fullname>Amazon API Gateway</fullname>
|
|
848
|
+
* <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>
|
|
849
|
+
*/
|
|
850
|
+
export declare class APIGateway extends APIGatewayClient implements APIGateway {
|
|
851
|
+
}
|