@aws-sdk/client-apigatewayv2 3.315.0 → 3.319.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/ApiGatewayV2.js +76 -1008
- package/dist-es/ApiGatewayV2.js +76 -1008
- package/dist-types/ApiGatewayV2.d.ts +79 -148
- package/dist-types/ts3.4/ApiGatewayV2.d.ts +4 -1
- package/package.json +8 -8
|
@@ -72,512 +72,443 @@ import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/Up
|
|
|
72
72
|
import { UpdateRouteResponseCommandInput, UpdateRouteResponseCommandOutput } from "./commands/UpdateRouteResponseCommand";
|
|
73
73
|
import { UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand";
|
|
74
74
|
import { UpdateVpcLinkCommandInput, UpdateVpcLinkCommandOutput } from "./commands/UpdateVpcLinkCommand";
|
|
75
|
-
|
|
76
|
-
* @public
|
|
77
|
-
* <p>Amazon API Gateway V2</p>
|
|
78
|
-
*/
|
|
79
|
-
export declare class ApiGatewayV2 extends ApiGatewayV2Client {
|
|
75
|
+
export interface ApiGatewayV2 {
|
|
80
76
|
/**
|
|
81
|
-
* @
|
|
82
|
-
* <p>Creates an Api resource.</p>
|
|
77
|
+
* @see {@link CreateApiCommand}
|
|
83
78
|
*/
|
|
84
79
|
createApi(args: CreateApiCommandInput, options?: __HttpHandlerOptions): Promise<CreateApiCommandOutput>;
|
|
85
80
|
createApi(args: CreateApiCommandInput, cb: (err: any, data?: CreateApiCommandOutput) => void): void;
|
|
86
81
|
createApi(args: CreateApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApiCommandOutput) => void): void;
|
|
87
82
|
/**
|
|
88
|
-
* @
|
|
89
|
-
* <p>Creates an API mapping.</p>
|
|
83
|
+
* @see {@link CreateApiMappingCommand}
|
|
90
84
|
*/
|
|
91
85
|
createApiMapping(args: CreateApiMappingCommandInput, options?: __HttpHandlerOptions): Promise<CreateApiMappingCommandOutput>;
|
|
92
86
|
createApiMapping(args: CreateApiMappingCommandInput, cb: (err: any, data?: CreateApiMappingCommandOutput) => void): void;
|
|
93
87
|
createApiMapping(args: CreateApiMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApiMappingCommandOutput) => void): void;
|
|
94
88
|
/**
|
|
95
|
-
* @
|
|
96
|
-
* <p>Creates an Authorizer for an API.</p>
|
|
89
|
+
* @see {@link CreateAuthorizerCommand}
|
|
97
90
|
*/
|
|
98
91
|
createAuthorizer(args: CreateAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<CreateAuthorizerCommandOutput>;
|
|
99
92
|
createAuthorizer(args: CreateAuthorizerCommandInput, cb: (err: any, data?: CreateAuthorizerCommandOutput) => void): void;
|
|
100
93
|
createAuthorizer(args: CreateAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAuthorizerCommandOutput) => void): void;
|
|
101
94
|
/**
|
|
102
|
-
* @
|
|
103
|
-
* <p>Creates a Deployment for an API.</p>
|
|
95
|
+
* @see {@link CreateDeploymentCommand}
|
|
104
96
|
*/
|
|
105
97
|
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
106
98
|
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
107
99
|
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
108
100
|
/**
|
|
109
|
-
* @
|
|
110
|
-
* <p>Creates a domain name.</p>
|
|
101
|
+
* @see {@link CreateDomainNameCommand}
|
|
111
102
|
*/
|
|
112
103
|
createDomainName(args: CreateDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainNameCommandOutput>;
|
|
113
104
|
createDomainName(args: CreateDomainNameCommandInput, cb: (err: any, data?: CreateDomainNameCommandOutput) => void): void;
|
|
114
105
|
createDomainName(args: CreateDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainNameCommandOutput) => void): void;
|
|
115
106
|
/**
|
|
116
|
-
* @
|
|
117
|
-
* <p>Creates an Integration.</p>
|
|
107
|
+
* @see {@link CreateIntegrationCommand}
|
|
118
108
|
*/
|
|
119
109
|
createIntegration(args: CreateIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateIntegrationCommandOutput>;
|
|
120
110
|
createIntegration(args: CreateIntegrationCommandInput, cb: (err: any, data?: CreateIntegrationCommandOutput) => void): void;
|
|
121
111
|
createIntegration(args: CreateIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationCommandOutput) => void): void;
|
|
122
112
|
/**
|
|
123
|
-
* @
|
|
124
|
-
* <p>Creates an IntegrationResponses.</p>
|
|
113
|
+
* @see {@link CreateIntegrationResponseCommand}
|
|
125
114
|
*/
|
|
126
115
|
createIntegrationResponse(args: CreateIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<CreateIntegrationResponseCommandOutput>;
|
|
127
116
|
createIntegrationResponse(args: CreateIntegrationResponseCommandInput, cb: (err: any, data?: CreateIntegrationResponseCommandOutput) => void): void;
|
|
128
117
|
createIntegrationResponse(args: CreateIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationResponseCommandOutput) => void): void;
|
|
129
118
|
/**
|
|
130
|
-
* @
|
|
131
|
-
* <p>Creates a Model for an API.</p>
|
|
119
|
+
* @see {@link CreateModelCommand}
|
|
132
120
|
*/
|
|
133
121
|
createModel(args: CreateModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCommandOutput>;
|
|
134
122
|
createModel(args: CreateModelCommandInput, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
135
123
|
createModel(args: CreateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
136
124
|
/**
|
|
137
|
-
* @
|
|
138
|
-
* <p>Creates a Route for an API.</p>
|
|
125
|
+
* @see {@link CreateRouteCommand}
|
|
139
126
|
*/
|
|
140
127
|
createRoute(args: CreateRouteCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteCommandOutput>;
|
|
141
128
|
createRoute(args: CreateRouteCommandInput, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
|
|
142
129
|
createRoute(args: CreateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteCommandOutput) => void): void;
|
|
143
130
|
/**
|
|
144
|
-
* @
|
|
145
|
-
* <p>Creates a RouteResponse for a Route.</p>
|
|
131
|
+
* @see {@link CreateRouteResponseCommand}
|
|
146
132
|
*/
|
|
147
133
|
createRouteResponse(args: CreateRouteResponseCommandInput, options?: __HttpHandlerOptions): Promise<CreateRouteResponseCommandOutput>;
|
|
148
134
|
createRouteResponse(args: CreateRouteResponseCommandInput, cb: (err: any, data?: CreateRouteResponseCommandOutput) => void): void;
|
|
149
135
|
createRouteResponse(args: CreateRouteResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRouteResponseCommandOutput) => void): void;
|
|
150
136
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Creates a Stage for an API.</p>
|
|
137
|
+
* @see {@link CreateStageCommand}
|
|
153
138
|
*/
|
|
154
139
|
createStage(args: CreateStageCommandInput, options?: __HttpHandlerOptions): Promise<CreateStageCommandOutput>;
|
|
155
140
|
createStage(args: CreateStageCommandInput, cb: (err: any, data?: CreateStageCommandOutput) => void): void;
|
|
156
141
|
createStage(args: CreateStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStageCommandOutput) => void): void;
|
|
157
142
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Creates a VPC link.</p>
|
|
143
|
+
* @see {@link CreateVpcLinkCommand}
|
|
160
144
|
*/
|
|
161
145
|
createVpcLink(args: CreateVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcLinkCommandOutput>;
|
|
162
146
|
createVpcLink(args: CreateVpcLinkCommandInput, cb: (err: any, data?: CreateVpcLinkCommandOutput) => void): void;
|
|
163
147
|
createVpcLink(args: CreateVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcLinkCommandOutput) => void): void;
|
|
164
148
|
/**
|
|
165
|
-
* @
|
|
166
|
-
* <p>Deletes the AccessLogSettings for a Stage. To disable access logging for a Stage, delete its AccessLogSettings.</p>
|
|
149
|
+
* @see {@link DeleteAccessLogSettingsCommand}
|
|
167
150
|
*/
|
|
168
151
|
deleteAccessLogSettings(args: DeleteAccessLogSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccessLogSettingsCommandOutput>;
|
|
169
152
|
deleteAccessLogSettings(args: DeleteAccessLogSettingsCommandInput, cb: (err: any, data?: DeleteAccessLogSettingsCommandOutput) => void): void;
|
|
170
153
|
deleteAccessLogSettings(args: DeleteAccessLogSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccessLogSettingsCommandOutput) => void): void;
|
|
171
154
|
/**
|
|
172
|
-
* @
|
|
173
|
-
* <p>Deletes an Api resource.</p>
|
|
155
|
+
* @see {@link DeleteApiCommand}
|
|
174
156
|
*/
|
|
175
157
|
deleteApi(args: DeleteApiCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApiCommandOutput>;
|
|
176
158
|
deleteApi(args: DeleteApiCommandInput, cb: (err: any, data?: DeleteApiCommandOutput) => void): void;
|
|
177
159
|
deleteApi(args: DeleteApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApiCommandOutput) => void): void;
|
|
178
160
|
/**
|
|
179
|
-
* @
|
|
180
|
-
* <p>Deletes an API mapping.</p>
|
|
161
|
+
* @see {@link DeleteApiMappingCommand}
|
|
181
162
|
*/
|
|
182
163
|
deleteApiMapping(args: DeleteApiMappingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApiMappingCommandOutput>;
|
|
183
164
|
deleteApiMapping(args: DeleteApiMappingCommandInput, cb: (err: any, data?: DeleteApiMappingCommandOutput) => void): void;
|
|
184
165
|
deleteApiMapping(args: DeleteApiMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApiMappingCommandOutput) => void): void;
|
|
185
166
|
/**
|
|
186
|
-
* @
|
|
187
|
-
* <p>Deletes an Authorizer.</p>
|
|
167
|
+
* @see {@link DeleteAuthorizerCommand}
|
|
188
168
|
*/
|
|
189
169
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAuthorizerCommandOutput>;
|
|
190
170
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, cb: (err: any, data?: DeleteAuthorizerCommandOutput) => void): void;
|
|
191
171
|
deleteAuthorizer(args: DeleteAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAuthorizerCommandOutput) => void): void;
|
|
192
172
|
/**
|
|
193
|
-
* @
|
|
194
|
-
* <p>Deletes a CORS configuration.</p>
|
|
173
|
+
* @see {@link DeleteCorsConfigurationCommand}
|
|
195
174
|
*/
|
|
196
175
|
deleteCorsConfiguration(args: DeleteCorsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCorsConfigurationCommandOutput>;
|
|
197
176
|
deleteCorsConfiguration(args: DeleteCorsConfigurationCommandInput, cb: (err: any, data?: DeleteCorsConfigurationCommandOutput) => void): void;
|
|
198
177
|
deleteCorsConfiguration(args: DeleteCorsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCorsConfigurationCommandOutput) => void): void;
|
|
199
178
|
/**
|
|
200
|
-
* @
|
|
201
|
-
* <p>Deletes a Deployment.</p>
|
|
179
|
+
* @see {@link DeleteDeploymentCommand}
|
|
202
180
|
*/
|
|
203
181
|
deleteDeployment(args: DeleteDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeploymentCommandOutput>;
|
|
204
182
|
deleteDeployment(args: DeleteDeploymentCommandInput, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
|
|
205
183
|
deleteDeployment(args: DeleteDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
|
|
206
184
|
/**
|
|
207
|
-
* @
|
|
208
|
-
* <p>Deletes a domain name.</p>
|
|
185
|
+
* @see {@link DeleteDomainNameCommand}
|
|
209
186
|
*/
|
|
210
187
|
deleteDomainName(args: DeleteDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainNameCommandOutput>;
|
|
211
188
|
deleteDomainName(args: DeleteDomainNameCommandInput, cb: (err: any, data?: DeleteDomainNameCommandOutput) => void): void;
|
|
212
189
|
deleteDomainName(args: DeleteDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainNameCommandOutput) => void): void;
|
|
213
190
|
/**
|
|
214
|
-
* @
|
|
215
|
-
* <p>Deletes an Integration.</p>
|
|
191
|
+
* @see {@link DeleteIntegrationCommand}
|
|
216
192
|
*/
|
|
217
193
|
deleteIntegration(args: DeleteIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationCommandOutput>;
|
|
218
194
|
deleteIntegration(args: DeleteIntegrationCommandInput, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
219
195
|
deleteIntegration(args: DeleteIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
220
196
|
/**
|
|
221
|
-
* @
|
|
222
|
-
* <p>Deletes an IntegrationResponses.</p>
|
|
197
|
+
* @see {@link DeleteIntegrationResponseCommand}
|
|
223
198
|
*/
|
|
224
199
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationResponseCommandOutput>;
|
|
225
200
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, cb: (err: any, data?: DeleteIntegrationResponseCommandOutput) => void): void;
|
|
226
201
|
deleteIntegrationResponse(args: DeleteIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationResponseCommandOutput) => void): void;
|
|
227
202
|
/**
|
|
228
|
-
* @
|
|
229
|
-
* <p>Deletes a Model.</p>
|
|
203
|
+
* @see {@link DeleteModelCommand}
|
|
230
204
|
*/
|
|
231
205
|
deleteModel(args: DeleteModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCommandOutput>;
|
|
232
206
|
deleteModel(args: DeleteModelCommandInput, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
233
207
|
deleteModel(args: DeleteModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
234
208
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <p>Deletes a Route.</p>
|
|
209
|
+
* @see {@link DeleteRouteCommand}
|
|
237
210
|
*/
|
|
238
211
|
deleteRoute(args: DeleteRouteCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteCommandOutput>;
|
|
239
212
|
deleteRoute(args: DeleteRouteCommandInput, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
|
|
240
213
|
deleteRoute(args: DeleteRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteCommandOutput) => void): void;
|
|
241
214
|
/**
|
|
242
|
-
* @
|
|
243
|
-
* <p>Deletes a route request parameter.</p>
|
|
215
|
+
* @see {@link DeleteRouteRequestParameterCommand}
|
|
244
216
|
*/
|
|
245
217
|
deleteRouteRequestParameter(args: DeleteRouteRequestParameterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteRequestParameterCommandOutput>;
|
|
246
218
|
deleteRouteRequestParameter(args: DeleteRouteRequestParameterCommandInput, cb: (err: any, data?: DeleteRouteRequestParameterCommandOutput) => void): void;
|
|
247
219
|
deleteRouteRequestParameter(args: DeleteRouteRequestParameterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteRequestParameterCommandOutput) => void): void;
|
|
248
220
|
/**
|
|
249
|
-
* @
|
|
250
|
-
* <p>Deletes a RouteResponse.</p>
|
|
221
|
+
* @see {@link DeleteRouteResponseCommand}
|
|
251
222
|
*/
|
|
252
223
|
deleteRouteResponse(args: DeleteRouteResponseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteResponseCommandOutput>;
|
|
253
224
|
deleteRouteResponse(args: DeleteRouteResponseCommandInput, cb: (err: any, data?: DeleteRouteResponseCommandOutput) => void): void;
|
|
254
225
|
deleteRouteResponse(args: DeleteRouteResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteResponseCommandOutput) => void): void;
|
|
255
226
|
/**
|
|
256
|
-
* @
|
|
257
|
-
* <p>Deletes the RouteSettings for a stage.</p>
|
|
227
|
+
* @see {@link DeleteRouteSettingsCommand}
|
|
258
228
|
*/
|
|
259
229
|
deleteRouteSettings(args: DeleteRouteSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRouteSettingsCommandOutput>;
|
|
260
230
|
deleteRouteSettings(args: DeleteRouteSettingsCommandInput, cb: (err: any, data?: DeleteRouteSettingsCommandOutput) => void): void;
|
|
261
231
|
deleteRouteSettings(args: DeleteRouteSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRouteSettingsCommandOutput) => void): void;
|
|
262
232
|
/**
|
|
263
|
-
* @
|
|
264
|
-
* <p>Deletes a Stage.</p>
|
|
233
|
+
* @see {@link DeleteStageCommand}
|
|
265
234
|
*/
|
|
266
235
|
deleteStage(args: DeleteStageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStageCommandOutput>;
|
|
267
236
|
deleteStage(args: DeleteStageCommandInput, cb: (err: any, data?: DeleteStageCommandOutput) => void): void;
|
|
268
237
|
deleteStage(args: DeleteStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStageCommandOutput) => void): void;
|
|
269
238
|
/**
|
|
270
|
-
* @
|
|
271
|
-
* <p>Deletes a VPC link.</p>
|
|
239
|
+
* @see {@link DeleteVpcLinkCommand}
|
|
272
240
|
*/
|
|
273
241
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcLinkCommandOutput>;
|
|
274
242
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, cb: (err: any, data?: DeleteVpcLinkCommandOutput) => void): void;
|
|
275
243
|
deleteVpcLink(args: DeleteVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcLinkCommandOutput) => void): void;
|
|
276
244
|
/**
|
|
277
|
-
* @
|
|
245
|
+
* @see {@link ExportApiCommand}
|
|
278
246
|
*/
|
|
279
247
|
exportApi(args: ExportApiCommandInput, options?: __HttpHandlerOptions): Promise<ExportApiCommandOutput>;
|
|
280
248
|
exportApi(args: ExportApiCommandInput, cb: (err: any, data?: ExportApiCommandOutput) => void): void;
|
|
281
249
|
exportApi(args: ExportApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportApiCommandOutput) => void): void;
|
|
282
250
|
/**
|
|
283
|
-
* @
|
|
284
|
-
* <p>Gets an Api resource.</p>
|
|
251
|
+
* @see {@link GetApiCommand}
|
|
285
252
|
*/
|
|
286
253
|
getApi(args: GetApiCommandInput, options?: __HttpHandlerOptions): Promise<GetApiCommandOutput>;
|
|
287
254
|
getApi(args: GetApiCommandInput, cb: (err: any, data?: GetApiCommandOutput) => void): void;
|
|
288
255
|
getApi(args: GetApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApiCommandOutput) => void): void;
|
|
289
256
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* <p>Gets an API mapping.</p>
|
|
257
|
+
* @see {@link GetApiMappingCommand}
|
|
292
258
|
*/
|
|
293
259
|
getApiMapping(args: GetApiMappingCommandInput, options?: __HttpHandlerOptions): Promise<GetApiMappingCommandOutput>;
|
|
294
260
|
getApiMapping(args: GetApiMappingCommandInput, cb: (err: any, data?: GetApiMappingCommandOutput) => void): void;
|
|
295
261
|
getApiMapping(args: GetApiMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApiMappingCommandOutput) => void): void;
|
|
296
262
|
/**
|
|
297
|
-
* @
|
|
298
|
-
* <p>Gets API mappings.</p>
|
|
263
|
+
* @see {@link GetApiMappingsCommand}
|
|
299
264
|
*/
|
|
300
265
|
getApiMappings(args: GetApiMappingsCommandInput, options?: __HttpHandlerOptions): Promise<GetApiMappingsCommandOutput>;
|
|
301
266
|
getApiMappings(args: GetApiMappingsCommandInput, cb: (err: any, data?: GetApiMappingsCommandOutput) => void): void;
|
|
302
267
|
getApiMappings(args: GetApiMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApiMappingsCommandOutput) => void): void;
|
|
303
268
|
/**
|
|
304
|
-
* @
|
|
305
|
-
* <p>Gets a collection of Api resources.</p>
|
|
269
|
+
* @see {@link GetApisCommand}
|
|
306
270
|
*/
|
|
307
271
|
getApis(args: GetApisCommandInput, options?: __HttpHandlerOptions): Promise<GetApisCommandOutput>;
|
|
308
272
|
getApis(args: GetApisCommandInput, cb: (err: any, data?: GetApisCommandOutput) => void): void;
|
|
309
273
|
getApis(args: GetApisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApisCommandOutput) => void): void;
|
|
310
274
|
/**
|
|
311
|
-
* @
|
|
312
|
-
* <p>Gets an Authorizer.</p>
|
|
275
|
+
* @see {@link GetAuthorizerCommand}
|
|
313
276
|
*/
|
|
314
277
|
getAuthorizer(args: GetAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthorizerCommandOutput>;
|
|
315
278
|
getAuthorizer(args: GetAuthorizerCommandInput, cb: (err: any, data?: GetAuthorizerCommandOutput) => void): void;
|
|
316
279
|
getAuthorizer(args: GetAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizerCommandOutput) => void): void;
|
|
317
280
|
/**
|
|
318
|
-
* @
|
|
319
|
-
* <p>Gets the Authorizers for an API.</p>
|
|
281
|
+
* @see {@link GetAuthorizersCommand}
|
|
320
282
|
*/
|
|
321
283
|
getAuthorizers(args: GetAuthorizersCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthorizersCommandOutput>;
|
|
322
284
|
getAuthorizers(args: GetAuthorizersCommandInput, cb: (err: any, data?: GetAuthorizersCommandOutput) => void): void;
|
|
323
285
|
getAuthorizers(args: GetAuthorizersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthorizersCommandOutput) => void): void;
|
|
324
286
|
/**
|
|
325
|
-
* @
|
|
326
|
-
* <p>Gets a Deployment.</p>
|
|
287
|
+
* @see {@link GetDeploymentCommand}
|
|
327
288
|
*/
|
|
328
289
|
getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
|
|
329
290
|
getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
330
291
|
getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
|
|
331
292
|
/**
|
|
332
|
-
* @
|
|
333
|
-
* <p>Gets the Deployments for an API.</p>
|
|
293
|
+
* @see {@link GetDeploymentsCommand}
|
|
334
294
|
*/
|
|
335
295
|
getDeployments(args: GetDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentsCommandOutput>;
|
|
336
296
|
getDeployments(args: GetDeploymentsCommandInput, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
|
|
337
297
|
getDeployments(args: GetDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
|
|
338
298
|
/**
|
|
339
|
-
* @
|
|
340
|
-
* <p>Gets a domain name.</p>
|
|
299
|
+
* @see {@link GetDomainNameCommand}
|
|
341
300
|
*/
|
|
342
301
|
getDomainName(args: GetDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainNameCommandOutput>;
|
|
343
302
|
getDomainName(args: GetDomainNameCommandInput, cb: (err: any, data?: GetDomainNameCommandOutput) => void): void;
|
|
344
303
|
getDomainName(args: GetDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainNameCommandOutput) => void): void;
|
|
345
304
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* <p>Gets the domain names for an AWS account.</p>
|
|
305
|
+
* @see {@link GetDomainNamesCommand}
|
|
348
306
|
*/
|
|
349
307
|
getDomainNames(args: GetDomainNamesCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainNamesCommandOutput>;
|
|
350
308
|
getDomainNames(args: GetDomainNamesCommandInput, cb: (err: any, data?: GetDomainNamesCommandOutput) => void): void;
|
|
351
309
|
getDomainNames(args: GetDomainNamesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainNamesCommandOutput) => void): void;
|
|
352
310
|
/**
|
|
353
|
-
* @
|
|
354
|
-
* <p>Gets an Integration.</p>
|
|
311
|
+
* @see {@link GetIntegrationCommand}
|
|
355
312
|
*/
|
|
356
313
|
getIntegration(args: GetIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationCommandOutput>;
|
|
357
314
|
getIntegration(args: GetIntegrationCommandInput, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
358
315
|
getIntegration(args: GetIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
359
316
|
/**
|
|
360
|
-
* @
|
|
361
|
-
* <p>Gets an IntegrationResponses.</p>
|
|
317
|
+
* @see {@link GetIntegrationResponseCommand}
|
|
362
318
|
*/
|
|
363
319
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationResponseCommandOutput>;
|
|
364
320
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, cb: (err: any, data?: GetIntegrationResponseCommandOutput) => void): void;
|
|
365
321
|
getIntegrationResponse(args: GetIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationResponseCommandOutput) => void): void;
|
|
366
322
|
/**
|
|
367
|
-
* @
|
|
368
|
-
* <p>Gets the IntegrationResponses for an Integration.</p>
|
|
323
|
+
* @see {@link GetIntegrationResponsesCommand}
|
|
369
324
|
*/
|
|
370
325
|
getIntegrationResponses(args: GetIntegrationResponsesCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationResponsesCommandOutput>;
|
|
371
326
|
getIntegrationResponses(args: GetIntegrationResponsesCommandInput, cb: (err: any, data?: GetIntegrationResponsesCommandOutput) => void): void;
|
|
372
327
|
getIntegrationResponses(args: GetIntegrationResponsesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationResponsesCommandOutput) => void): void;
|
|
373
328
|
/**
|
|
374
|
-
* @
|
|
375
|
-
* <p>Gets the Integrations for an API.</p>
|
|
329
|
+
* @see {@link GetIntegrationsCommand}
|
|
376
330
|
*/
|
|
377
331
|
getIntegrations(args: GetIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationsCommandOutput>;
|
|
378
332
|
getIntegrations(args: GetIntegrationsCommandInput, cb: (err: any, data?: GetIntegrationsCommandOutput) => void): void;
|
|
379
333
|
getIntegrations(args: GetIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationsCommandOutput) => void): void;
|
|
380
334
|
/**
|
|
381
|
-
* @
|
|
382
|
-
* <p>Gets a Model.</p>
|
|
335
|
+
* @see {@link GetModelCommand}
|
|
383
336
|
*/
|
|
384
337
|
getModel(args: GetModelCommandInput, options?: __HttpHandlerOptions): Promise<GetModelCommandOutput>;
|
|
385
338
|
getModel(args: GetModelCommandInput, cb: (err: any, data?: GetModelCommandOutput) => void): void;
|
|
386
339
|
getModel(args: GetModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelCommandOutput) => void): void;
|
|
387
340
|
/**
|
|
388
|
-
* @
|
|
389
|
-
* <p>Gets the Models for an API.</p>
|
|
341
|
+
* @see {@link GetModelsCommand}
|
|
390
342
|
*/
|
|
391
343
|
getModels(args: GetModelsCommandInput, options?: __HttpHandlerOptions): Promise<GetModelsCommandOutput>;
|
|
392
344
|
getModels(args: GetModelsCommandInput, cb: (err: any, data?: GetModelsCommandOutput) => void): void;
|
|
393
345
|
getModels(args: GetModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelsCommandOutput) => void): void;
|
|
394
346
|
/**
|
|
395
|
-
* @
|
|
396
|
-
* <p>Gets a model template.</p>
|
|
347
|
+
* @see {@link GetModelTemplateCommand}
|
|
397
348
|
*/
|
|
398
349
|
getModelTemplate(args: GetModelTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetModelTemplateCommandOutput>;
|
|
399
350
|
getModelTemplate(args: GetModelTemplateCommandInput, cb: (err: any, data?: GetModelTemplateCommandOutput) => void): void;
|
|
400
351
|
getModelTemplate(args: GetModelTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelTemplateCommandOutput) => void): void;
|
|
401
352
|
/**
|
|
402
|
-
* @
|
|
403
|
-
* <p>Gets a Route.</p>
|
|
353
|
+
* @see {@link GetRouteCommand}
|
|
404
354
|
*/
|
|
405
355
|
getRoute(args: GetRouteCommandInput, options?: __HttpHandlerOptions): Promise<GetRouteCommandOutput>;
|
|
406
356
|
getRoute(args: GetRouteCommandInput, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
|
|
407
357
|
getRoute(args: GetRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRouteCommandOutput) => void): void;
|
|
408
358
|
/**
|
|
409
|
-
* @
|
|
410
|
-
* <p>Gets a RouteResponse.</p>
|
|
359
|
+
* @see {@link GetRouteResponseCommand}
|
|
411
360
|
*/
|
|
412
361
|
getRouteResponse(args: GetRouteResponseCommandInput, options?: __HttpHandlerOptions): Promise<GetRouteResponseCommandOutput>;
|
|
413
362
|
getRouteResponse(args: GetRouteResponseCommandInput, cb: (err: any, data?: GetRouteResponseCommandOutput) => void): void;
|
|
414
363
|
getRouteResponse(args: GetRouteResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRouteResponseCommandOutput) => void): void;
|
|
415
364
|
/**
|
|
416
|
-
* @
|
|
417
|
-
* <p>Gets the RouteResponses for a Route.</p>
|
|
365
|
+
* @see {@link GetRouteResponsesCommand}
|
|
418
366
|
*/
|
|
419
367
|
getRouteResponses(args: GetRouteResponsesCommandInput, options?: __HttpHandlerOptions): Promise<GetRouteResponsesCommandOutput>;
|
|
420
368
|
getRouteResponses(args: GetRouteResponsesCommandInput, cb: (err: any, data?: GetRouteResponsesCommandOutput) => void): void;
|
|
421
369
|
getRouteResponses(args: GetRouteResponsesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRouteResponsesCommandOutput) => void): void;
|
|
422
370
|
/**
|
|
423
|
-
* @
|
|
424
|
-
* <p>Gets the Routes for an API.</p>
|
|
371
|
+
* @see {@link GetRoutesCommand}
|
|
425
372
|
*/
|
|
426
373
|
getRoutes(args: GetRoutesCommandInput, options?: __HttpHandlerOptions): Promise<GetRoutesCommandOutput>;
|
|
427
374
|
getRoutes(args: GetRoutesCommandInput, cb: (err: any, data?: GetRoutesCommandOutput) => void): void;
|
|
428
375
|
getRoutes(args: GetRoutesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRoutesCommandOutput) => void): void;
|
|
429
376
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* <p>Gets a Stage.</p>
|
|
377
|
+
* @see {@link GetStageCommand}
|
|
432
378
|
*/
|
|
433
379
|
getStage(args: GetStageCommandInput, options?: __HttpHandlerOptions): Promise<GetStageCommandOutput>;
|
|
434
380
|
getStage(args: GetStageCommandInput, cb: (err: any, data?: GetStageCommandOutput) => void): void;
|
|
435
381
|
getStage(args: GetStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStageCommandOutput) => void): void;
|
|
436
382
|
/**
|
|
437
|
-
* @
|
|
438
|
-
* <p>Gets the Stages for an API.</p>
|
|
383
|
+
* @see {@link GetStagesCommand}
|
|
439
384
|
*/
|
|
440
385
|
getStages(args: GetStagesCommandInput, options?: __HttpHandlerOptions): Promise<GetStagesCommandOutput>;
|
|
441
386
|
getStages(args: GetStagesCommandInput, cb: (err: any, data?: GetStagesCommandOutput) => void): void;
|
|
442
387
|
getStages(args: GetStagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStagesCommandOutput) => void): void;
|
|
443
388
|
/**
|
|
444
|
-
* @
|
|
445
|
-
* <p>Gets a collection of Tag resources.</p>
|
|
389
|
+
* @see {@link GetTagsCommand}
|
|
446
390
|
*/
|
|
447
391
|
getTags(args: GetTagsCommandInput, options?: __HttpHandlerOptions): Promise<GetTagsCommandOutput>;
|
|
448
392
|
getTags(args: GetTagsCommandInput, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
449
393
|
getTags(args: GetTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTagsCommandOutput) => void): void;
|
|
450
394
|
/**
|
|
451
|
-
* @
|
|
452
|
-
* <p>Gets a VPC link.</p>
|
|
395
|
+
* @see {@link GetVpcLinkCommand}
|
|
453
396
|
*/
|
|
454
397
|
getVpcLink(args: GetVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<GetVpcLinkCommandOutput>;
|
|
455
398
|
getVpcLink(args: GetVpcLinkCommandInput, cb: (err: any, data?: GetVpcLinkCommandOutput) => void): void;
|
|
456
399
|
getVpcLink(args: GetVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpcLinkCommandOutput) => void): void;
|
|
457
400
|
/**
|
|
458
|
-
* @
|
|
459
|
-
* <p>Gets a collection of VPC links.</p>
|
|
401
|
+
* @see {@link GetVpcLinksCommand}
|
|
460
402
|
*/
|
|
461
403
|
getVpcLinks(args: GetVpcLinksCommandInput, options?: __HttpHandlerOptions): Promise<GetVpcLinksCommandOutput>;
|
|
462
404
|
getVpcLinks(args: GetVpcLinksCommandInput, cb: (err: any, data?: GetVpcLinksCommandOutput) => void): void;
|
|
463
405
|
getVpcLinks(args: GetVpcLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVpcLinksCommandOutput) => void): void;
|
|
464
406
|
/**
|
|
465
|
-
* @
|
|
466
|
-
* <p>Imports an API.</p>
|
|
407
|
+
* @see {@link ImportApiCommand}
|
|
467
408
|
*/
|
|
468
409
|
importApi(args: ImportApiCommandInput, options?: __HttpHandlerOptions): Promise<ImportApiCommandOutput>;
|
|
469
410
|
importApi(args: ImportApiCommandInput, cb: (err: any, data?: ImportApiCommandOutput) => void): void;
|
|
470
411
|
importApi(args: ImportApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportApiCommandOutput) => void): void;
|
|
471
412
|
/**
|
|
472
|
-
* @
|
|
473
|
-
* <p>Puts an Api resource.</p>
|
|
413
|
+
* @see {@link ReimportApiCommand}
|
|
474
414
|
*/
|
|
475
415
|
reimportApi(args: ReimportApiCommandInput, options?: __HttpHandlerOptions): Promise<ReimportApiCommandOutput>;
|
|
476
416
|
reimportApi(args: ReimportApiCommandInput, cb: (err: any, data?: ReimportApiCommandOutput) => void): void;
|
|
477
417
|
reimportApi(args: ReimportApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReimportApiCommandOutput) => void): void;
|
|
478
418
|
/**
|
|
479
|
-
* @
|
|
480
|
-
* <p>Resets all authorizer cache entries on a stage. Supported only for HTTP APIs.</p>
|
|
419
|
+
* @see {@link ResetAuthorizersCacheCommand}
|
|
481
420
|
*/
|
|
482
421
|
resetAuthorizersCache(args: ResetAuthorizersCacheCommandInput, options?: __HttpHandlerOptions): Promise<ResetAuthorizersCacheCommandOutput>;
|
|
483
422
|
resetAuthorizersCache(args: ResetAuthorizersCacheCommandInput, cb: (err: any, data?: ResetAuthorizersCacheCommandOutput) => void): void;
|
|
484
423
|
resetAuthorizersCache(args: ResetAuthorizersCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetAuthorizersCacheCommandOutput) => void): void;
|
|
485
424
|
/**
|
|
486
|
-
* @
|
|
487
|
-
* <p>Creates a new Tag resource to represent a tag.</p>
|
|
425
|
+
* @see {@link TagResourceCommand}
|
|
488
426
|
*/
|
|
489
427
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
490
428
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
491
429
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
492
430
|
/**
|
|
493
|
-
* @
|
|
494
|
-
* <p>Deletes a Tag.</p>
|
|
431
|
+
* @see {@link UntagResourceCommand}
|
|
495
432
|
*/
|
|
496
433
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
497
434
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
498
435
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
499
436
|
/**
|
|
500
|
-
* @
|
|
501
|
-
* <p>Updates an Api resource.</p>
|
|
437
|
+
* @see {@link UpdateApiCommand}
|
|
502
438
|
*/
|
|
503
439
|
updateApi(args: UpdateApiCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApiCommandOutput>;
|
|
504
440
|
updateApi(args: UpdateApiCommandInput, cb: (err: any, data?: UpdateApiCommandOutput) => void): void;
|
|
505
441
|
updateApi(args: UpdateApiCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApiCommandOutput) => void): void;
|
|
506
442
|
/**
|
|
507
|
-
* @
|
|
508
|
-
* <p>The API mapping.</p>
|
|
443
|
+
* @see {@link UpdateApiMappingCommand}
|
|
509
444
|
*/
|
|
510
445
|
updateApiMapping(args: UpdateApiMappingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApiMappingCommandOutput>;
|
|
511
446
|
updateApiMapping(args: UpdateApiMappingCommandInput, cb: (err: any, data?: UpdateApiMappingCommandOutput) => void): void;
|
|
512
447
|
updateApiMapping(args: UpdateApiMappingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApiMappingCommandOutput) => void): void;
|
|
513
448
|
/**
|
|
514
|
-
* @
|
|
515
|
-
* <p>Updates an Authorizer.</p>
|
|
449
|
+
* @see {@link UpdateAuthorizerCommand}
|
|
516
450
|
*/
|
|
517
451
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAuthorizerCommandOutput>;
|
|
518
452
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, cb: (err: any, data?: UpdateAuthorizerCommandOutput) => void): void;
|
|
519
453
|
updateAuthorizer(args: UpdateAuthorizerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAuthorizerCommandOutput) => void): void;
|
|
520
454
|
/**
|
|
521
|
-
* @
|
|
522
|
-
* <p>Updates a Deployment.</p>
|
|
455
|
+
* @see {@link UpdateDeploymentCommand}
|
|
523
456
|
*/
|
|
524
457
|
updateDeployment(args: UpdateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeploymentCommandOutput>;
|
|
525
458
|
updateDeployment(args: UpdateDeploymentCommandInput, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
|
|
526
459
|
updateDeployment(args: UpdateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
|
|
527
460
|
/**
|
|
528
|
-
* @
|
|
529
|
-
* <p>Updates a domain name.</p>
|
|
461
|
+
* @see {@link UpdateDomainNameCommand}
|
|
530
462
|
*/
|
|
531
463
|
updateDomainName(args: UpdateDomainNameCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainNameCommandOutput>;
|
|
532
464
|
updateDomainName(args: UpdateDomainNameCommandInput, cb: (err: any, data?: UpdateDomainNameCommandOutput) => void): void;
|
|
533
465
|
updateDomainName(args: UpdateDomainNameCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainNameCommandOutput) => void): void;
|
|
534
466
|
/**
|
|
535
|
-
* @
|
|
536
|
-
* <p>Updates an Integration.</p>
|
|
467
|
+
* @see {@link UpdateIntegrationCommand}
|
|
537
468
|
*/
|
|
538
469
|
updateIntegration(args: UpdateIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIntegrationCommandOutput>;
|
|
539
470
|
updateIntegration(args: UpdateIntegrationCommandInput, cb: (err: any, data?: UpdateIntegrationCommandOutput) => void): void;
|
|
540
471
|
updateIntegration(args: UpdateIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIntegrationCommandOutput) => void): void;
|
|
541
472
|
/**
|
|
542
|
-
* @
|
|
543
|
-
* <p>Updates an IntegrationResponses.</p>
|
|
473
|
+
* @see {@link UpdateIntegrationResponseCommand}
|
|
544
474
|
*/
|
|
545
475
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIntegrationResponseCommandOutput>;
|
|
546
476
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, cb: (err: any, data?: UpdateIntegrationResponseCommandOutput) => void): void;
|
|
547
477
|
updateIntegrationResponse(args: UpdateIntegrationResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIntegrationResponseCommandOutput) => void): void;
|
|
548
478
|
/**
|
|
549
|
-
* @
|
|
550
|
-
* <p>Updates a Model.</p>
|
|
479
|
+
* @see {@link UpdateModelCommand}
|
|
551
480
|
*/
|
|
552
481
|
updateModel(args: UpdateModelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateModelCommandOutput>;
|
|
553
482
|
updateModel(args: UpdateModelCommandInput, cb: (err: any, data?: UpdateModelCommandOutput) => void): void;
|
|
554
483
|
updateModel(args: UpdateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateModelCommandOutput) => void): void;
|
|
555
484
|
/**
|
|
556
|
-
* @
|
|
557
|
-
* <p>Updates a Route.</p>
|
|
485
|
+
* @see {@link UpdateRouteCommand}
|
|
558
486
|
*/
|
|
559
487
|
updateRoute(args: UpdateRouteCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteCommandOutput>;
|
|
560
488
|
updateRoute(args: UpdateRouteCommandInput, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
561
489
|
updateRoute(args: UpdateRouteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouteCommandOutput) => void): void;
|
|
562
490
|
/**
|
|
563
|
-
* @
|
|
564
|
-
* <p>Updates a RouteResponse.</p>
|
|
491
|
+
* @see {@link UpdateRouteResponseCommand}
|
|
565
492
|
*/
|
|
566
493
|
updateRouteResponse(args: UpdateRouteResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRouteResponseCommandOutput>;
|
|
567
494
|
updateRouteResponse(args: UpdateRouteResponseCommandInput, cb: (err: any, data?: UpdateRouteResponseCommandOutput) => void): void;
|
|
568
495
|
updateRouteResponse(args: UpdateRouteResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRouteResponseCommandOutput) => void): void;
|
|
569
496
|
/**
|
|
570
|
-
* @
|
|
571
|
-
* <p>Updates a Stage.</p>
|
|
497
|
+
* @see {@link UpdateStageCommand}
|
|
572
498
|
*/
|
|
573
499
|
updateStage(args: UpdateStageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStageCommandOutput>;
|
|
574
500
|
updateStage(args: UpdateStageCommandInput, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
575
501
|
updateStage(args: UpdateStageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStageCommandOutput) => void): void;
|
|
576
502
|
/**
|
|
577
|
-
* @
|
|
578
|
-
* <p>Updates a VPC link.</p>
|
|
503
|
+
* @see {@link UpdateVpcLinkCommand}
|
|
579
504
|
*/
|
|
580
505
|
updateVpcLink(args: UpdateVpcLinkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVpcLinkCommandOutput>;
|
|
581
506
|
updateVpcLink(args: UpdateVpcLinkCommandInput, cb: (err: any, data?: UpdateVpcLinkCommandOutput) => void): void;
|
|
582
507
|
updateVpcLink(args: UpdateVpcLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVpcLinkCommandOutput) => void): void;
|
|
583
508
|
}
|
|
509
|
+
/**
|
|
510
|
+
* @public
|
|
511
|
+
* <p>Amazon API Gateway V2</p>
|
|
512
|
+
*/
|
|
513
|
+
export declare class ApiGatewayV2 extends ApiGatewayV2Client implements ApiGatewayV2 {
|
|
514
|
+
}
|
|
@@ -288,7 +288,7 @@ import {
|
|
|
288
288
|
UpdateVpcLinkCommandInput,
|
|
289
289
|
UpdateVpcLinkCommandOutput,
|
|
290
290
|
} from "./commands/UpdateVpcLinkCommand";
|
|
291
|
-
export
|
|
291
|
+
export interface ApiGatewayV2 {
|
|
292
292
|
createApi(
|
|
293
293
|
args: CreateApiCommandInput,
|
|
294
294
|
options?: __HttpHandlerOptions
|
|
@@ -1226,3 +1226,6 @@ export declare class ApiGatewayV2 extends ApiGatewayV2Client {
|
|
|
1226
1226
|
cb: (err: any, data?: UpdateVpcLinkCommandOutput) => void
|
|
1227
1227
|
): void;
|
|
1228
1228
|
}
|
|
1229
|
+
export declare class ApiGatewayV2
|
|
1230
|
+
extends ApiGatewayV2Client
|
|
1231
|
+
implements ApiGatewayV2 {}
|