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