@@ -41,6 +41,11 @@ import {
41
41
CreateRouteResponseCommandInput ,
42
42
CreateRouteResponseCommandOutput ,
43
43
} from "./commands/CreateRouteResponseCommand" ;
44
+ import {
45
+ CreateRoutingRuleCommand ,
46
+ CreateRoutingRuleCommandInput ,
47
+ CreateRoutingRuleCommandOutput ,
48
+ } from "./commands/CreateRoutingRuleCommand" ;
44
49
import { CreateStageCommand , CreateStageCommandInput , CreateStageCommandOutput } from "./commands/CreateStageCommand" ;
45
50
import {
46
51
CreateVpcLinkCommand ,
@@ -105,6 +110,11 @@ import {
105
110
DeleteRouteSettingsCommandInput ,
106
111
DeleteRouteSettingsCommandOutput ,
107
112
} from "./commands/DeleteRouteSettingsCommand" ;
113
+ import {
114
+ DeleteRoutingRuleCommand ,
115
+ DeleteRoutingRuleCommandInput ,
116
+ DeleteRoutingRuleCommandOutput ,
117
+ } from "./commands/DeleteRoutingRuleCommand" ;
108
118
import { DeleteStageCommand , DeleteStageCommandInput , DeleteStageCommandOutput } from "./commands/DeleteStageCommand" ;
109
119
import {
110
120
DeleteVpcLinkCommand ,
@@ -193,12 +203,27 @@ import {
193
203
GetRouteResponsesCommandOutput ,
194
204
} from "./commands/GetRouteResponsesCommand" ;
195
205
import { GetRoutesCommand , GetRoutesCommandInput , GetRoutesCommandOutput } from "./commands/GetRoutesCommand" ;
206
+ import {
207
+ GetRoutingRuleCommand ,
208
+ GetRoutingRuleCommandInput ,
209
+ GetRoutingRuleCommandOutput ,
210
+ } from "./commands/GetRoutingRuleCommand" ;
196
211
import { GetStageCommand , GetStageCommandInput , GetStageCommandOutput } from "./commands/GetStageCommand" ;
197
212
import { GetStagesCommand , GetStagesCommandInput , GetStagesCommandOutput } from "./commands/GetStagesCommand" ;
198
213
import { GetTagsCommand , GetTagsCommandInput , GetTagsCommandOutput } from "./commands/GetTagsCommand" ;
199
214
import { GetVpcLinkCommand , GetVpcLinkCommandInput , GetVpcLinkCommandOutput } from "./commands/GetVpcLinkCommand" ;
200
215
import { GetVpcLinksCommand , GetVpcLinksCommandInput , GetVpcLinksCommandOutput } from "./commands/GetVpcLinksCommand" ;
201
216
import { ImportApiCommand , ImportApiCommandInput , ImportApiCommandOutput } from "./commands/ImportApiCommand" ;
217
+ import {
218
+ ListRoutingRulesCommand ,
219
+ ListRoutingRulesCommandInput ,
220
+ ListRoutingRulesCommandOutput ,
221
+ } from "./commands/ListRoutingRulesCommand" ;
222
+ import {
223
+ PutRoutingRuleCommand ,
224
+ PutRoutingRuleCommandInput ,
225
+ PutRoutingRuleCommandOutput ,
226
+ } from "./commands/PutRoutingRuleCommand" ;
202
227
import { ReimportApiCommand , ReimportApiCommandInput , ReimportApiCommandOutput } from "./commands/ReimportApiCommand" ;
203
228
import {
204
229
ResetAuthorizersCacheCommand ,
@@ -267,6 +292,7 @@ const commands = {
267
292
CreateModelCommand,
268
293
CreateRouteCommand,
269
294
CreateRouteResponseCommand,
295
+ CreateRoutingRuleCommand,
270
296
CreateStageCommand,
271
297
CreateVpcLinkCommand,
272
298
DeleteAccessLogSettingsCommand,
@@ -283,6 +309,7 @@ const commands = {
283
309
DeleteRouteRequestParameterCommand,
284
310
DeleteRouteResponseCommand,
285
311
DeleteRouteSettingsCommand,
312
+ DeleteRoutingRuleCommand,
286
313
DeleteStageCommand,
287
314
DeleteVpcLinkCommand,
288
315
ExportApiCommand,
@@ -307,12 +334,15 @@ const commands = {
307
334
GetRouteResponseCommand,
308
335
GetRouteResponsesCommand,
309
336
GetRoutesCommand,
337
+ GetRoutingRuleCommand,
310
338
GetStageCommand,
311
339
GetStagesCommand,
312
340
GetTagsCommand,
313
341
GetVpcLinkCommand,
314
342
GetVpcLinksCommand,
315
343
ImportApiCommand,
344
+ ListRoutingRulesCommand,
345
+ PutRoutingRuleCommand,
316
346
ReimportApiCommand,
317
347
ResetAuthorizersCacheCommand,
318
348
TagResourceCommand,
@@ -484,6 +514,23 @@ export interface ApiGatewayV2 {
484
514
cb : ( err : any , data ?: CreateRouteResponseCommandOutput ) => void
485
515
) : void ;
486
516
517
+ /**
518
+ * @see {@link CreateRoutingRuleCommand }
519
+ */
520
+ createRoutingRule (
521
+ args : CreateRoutingRuleCommandInput ,
522
+ options ?: __HttpHandlerOptions
523
+ ) : Promise < CreateRoutingRuleCommandOutput > ;
524
+ createRoutingRule (
525
+ args : CreateRoutingRuleCommandInput ,
526
+ cb : ( err : any , data ?: CreateRoutingRuleCommandOutput ) => void
527
+ ) : void ;
528
+ createRoutingRule (
529
+ args : CreateRoutingRuleCommandInput ,
530
+ options : __HttpHandlerOptions ,
531
+ cb : ( err : any , data ?: CreateRoutingRuleCommandOutput ) => void
532
+ ) : void ;
533
+
487
534
/**
488
535
* @see {@link CreateStageCommand }
489
536
*/
@@ -726,6 +773,23 @@ export interface ApiGatewayV2 {
726
773
cb : ( err : any , data ?: DeleteRouteSettingsCommandOutput ) => void
727
774
) : void ;
728
775
776
+ /**
777
+ * @see {@link DeleteRoutingRuleCommand }
778
+ */
779
+ deleteRoutingRule (
780
+ args : DeleteRoutingRuleCommandInput ,
781
+ options ?: __HttpHandlerOptions
782
+ ) : Promise < DeleteRoutingRuleCommandOutput > ;
783
+ deleteRoutingRule (
784
+ args : DeleteRoutingRuleCommandInput ,
785
+ cb : ( err : any , data ?: DeleteRoutingRuleCommandOutput ) => void
786
+ ) : void ;
787
+ deleteRoutingRule (
788
+ args : DeleteRoutingRuleCommandInput ,
789
+ options : __HttpHandlerOptions ,
790
+ cb : ( err : any , data ?: DeleteRoutingRuleCommandOutput ) => void
791
+ ) : void ;
792
+
729
793
/**
730
794
* @see {@link DeleteStageCommand }
731
795
*/
@@ -1040,6 +1104,20 @@ export interface ApiGatewayV2 {
1040
1104
cb : ( err : any , data ?: GetRoutesCommandOutput ) => void
1041
1105
) : void ;
1042
1106
1107
+ /**
1108
+ * @see {@link GetRoutingRuleCommand }
1109
+ */
1110
+ getRoutingRule (
1111
+ args : GetRoutingRuleCommandInput ,
1112
+ options ?: __HttpHandlerOptions
1113
+ ) : Promise < GetRoutingRuleCommandOutput > ;
1114
+ getRoutingRule ( args : GetRoutingRuleCommandInput , cb : ( err : any , data ?: GetRoutingRuleCommandOutput ) => void ) : void ;
1115
+ getRoutingRule (
1116
+ args : GetRoutingRuleCommandInput ,
1117
+ options : __HttpHandlerOptions ,
1118
+ cb : ( err : any , data ?: GetRoutingRuleCommandOutput ) => void
1119
+ ) : void ;
1120
+
1043
1121
/**
1044
1122
* @see {@link GetStageCommand }
1045
1123
*/
@@ -1107,6 +1185,37 @@ export interface ApiGatewayV2 {
1107
1185
cb : ( err : any , data ?: ImportApiCommandOutput ) => void
1108
1186
) : void ;
1109
1187
1188
+ /**
1189
+ * @see {@link ListRoutingRulesCommand }
1190
+ */
1191
+ listRoutingRules (
1192
+ args : ListRoutingRulesCommandInput ,
1193
+ options ?: __HttpHandlerOptions
1194
+ ) : Promise < ListRoutingRulesCommandOutput > ;
1195
+ listRoutingRules (
1196
+ args : ListRoutingRulesCommandInput ,
1197
+ cb : ( err : any , data ?: ListRoutingRulesCommandOutput ) => void
1198
+ ) : void ;
1199
+ listRoutingRules (
1200
+ args : ListRoutingRulesCommandInput ,
1201
+ options : __HttpHandlerOptions ,
1202
+ cb : ( err : any , data ?: ListRoutingRulesCommandOutput ) => void
1203
+ ) : void ;
1204
+
1205
+ /**
1206
+ * @see {@link PutRoutingRuleCommand }
1207
+ */
1208
+ putRoutingRule (
1209
+ args : PutRoutingRuleCommandInput ,
1210
+ options ?: __HttpHandlerOptions
1211
+ ) : Promise < PutRoutingRuleCommandOutput > ;
1212
+ putRoutingRule ( args : PutRoutingRuleCommandInput , cb : ( err : any , data ?: PutRoutingRuleCommandOutput ) => void ) : void ;
1213
+ putRoutingRule (
1214
+ args : PutRoutingRuleCommandInput ,
1215
+ options : __HttpHandlerOptions ,
1216
+ cb : ( err : any , data ?: PutRoutingRuleCommandOutput ) => void
1217
+ ) : void ;
1218
+
1110
1219
/**
1111
1220
* @see {@link ReimportApiCommand }
1112
1221
*/
0 commit comments