@aws-sdk/client-apigatewayv2 3.821.0 → 3.825.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/README.md +47 -7
- package/dist-cjs/index.js +395 -2
- package/dist-es/ApiGatewayV2.js +10 -0
- package/dist-es/commands/CreateRoutingRuleCommand.js +22 -0
- package/dist-es/commands/DeleteRoutingRuleCommand.js +22 -0
- package/dist-es/commands/GetRoutingRuleCommand.js +22 -0
- package/dist-es/commands/ListRoutingRulesCommand.js +22 -0
- package/dist-es/commands/PutRoutingRuleCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListRoutingRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +300 -0
- package/dist-types/ApiGatewayV2.d.ts +35 -0
- package/dist-types/ApiGatewayV2Client.d.ts +7 -2
- package/dist-types/commands/CreateDomainNameCommand.d.ts +3 -0
- package/dist-types/commands/CreateRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/DeleteRoutingRuleCommand.d.ts +81 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +2 -0
- package/dist-types/commands/GetDomainNamesCommand.d.ts +2 -0
- package/dist-types/commands/GetRoutingRuleCommand.d.ts +111 -0
- package/dist-types/commands/ListRoutingRulesCommand.d.ts +117 -0
- package/dist-types/commands/PutRoutingRuleCommand.d.ts +141 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +415 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListRoutingRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/ApiGatewayV2.d.ts +85 -0
- package/dist-types/ts3.4/ApiGatewayV2Client.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateRoutingRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRoutingRuleCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetRoutingRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListRoutingRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutRoutingRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +101 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListRoutingRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +11 -11
|
@@ -118,11 +118,19 @@ export interface MutualTlsAuthentication {
|
|
|
118
118
|
TruststoreVersion?: string | undefined;
|
|
119
119
|
TruststoreWarnings?: string[] | undefined;
|
|
120
120
|
}
|
|
121
|
+
export declare const RoutingMode: {
|
|
122
|
+
readonly API_MAPPING_ONLY: "API_MAPPING_ONLY";
|
|
123
|
+
readonly ROUTING_RULE_ONLY: "ROUTING_RULE_ONLY";
|
|
124
|
+
readonly ROUTING_RULE_THEN_API_MAPPING: "ROUTING_RULE_THEN_API_MAPPING";
|
|
125
|
+
};
|
|
126
|
+
export type RoutingMode = (typeof RoutingMode)[keyof typeof RoutingMode];
|
|
121
127
|
export interface DomainName {
|
|
122
128
|
ApiMappingSelectionExpression?: string | undefined;
|
|
123
129
|
DomainName: string | undefined;
|
|
130
|
+
DomainNameArn?: string | undefined;
|
|
124
131
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
125
132
|
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
133
|
+
RoutingMode?: RoutingMode | undefined;
|
|
126
134
|
Tags?: Record<string, string> | undefined;
|
|
127
135
|
}
|
|
128
136
|
export declare const ConnectionType: {
|
|
@@ -226,6 +234,35 @@ export interface RouteResponse {
|
|
|
226
234
|
RouteResponseId?: string | undefined;
|
|
227
235
|
RouteResponseKey: string | undefined;
|
|
228
236
|
}
|
|
237
|
+
export interface RoutingRuleActionInvokeApi {
|
|
238
|
+
ApiId: string | undefined;
|
|
239
|
+
Stage: string | undefined;
|
|
240
|
+
StripBasePath?: boolean | undefined;
|
|
241
|
+
}
|
|
242
|
+
export interface RoutingRuleAction {
|
|
243
|
+
InvokeApi: RoutingRuleActionInvokeApi | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface RoutingRuleMatchBasePaths {
|
|
246
|
+
AnyOf: string[] | undefined;
|
|
247
|
+
}
|
|
248
|
+
export interface RoutingRuleMatchHeaderValue {
|
|
249
|
+
Header: string | undefined;
|
|
250
|
+
ValueGlob: string | undefined;
|
|
251
|
+
}
|
|
252
|
+
export interface RoutingRuleMatchHeaders {
|
|
253
|
+
AnyOf: RoutingRuleMatchHeaderValue[] | undefined;
|
|
254
|
+
}
|
|
255
|
+
export interface RoutingRuleCondition {
|
|
256
|
+
MatchBasePaths?: RoutingRuleMatchBasePaths | undefined;
|
|
257
|
+
MatchHeaders?: RoutingRuleMatchHeaders | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface RoutingRule {
|
|
260
|
+
Actions?: RoutingRuleAction[] | undefined;
|
|
261
|
+
Conditions?: RoutingRuleCondition[] | undefined;
|
|
262
|
+
Priority?: number | undefined;
|
|
263
|
+
RoutingRuleArn?: string | undefined;
|
|
264
|
+
RoutingRuleId?: string | undefined;
|
|
265
|
+
}
|
|
229
266
|
export interface AccessLogSettings {
|
|
230
267
|
DestinationArn?: string | undefined;
|
|
231
268
|
Format?: string | undefined;
|
|
@@ -415,13 +452,16 @@ export interface CreateDomainNameRequest {
|
|
|
415
452
|
DomainName: string | undefined;
|
|
416
453
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
417
454
|
MutualTlsAuthentication?: MutualTlsAuthenticationInput | undefined;
|
|
455
|
+
RoutingMode?: RoutingMode | undefined;
|
|
418
456
|
Tags?: Record<string, string> | undefined;
|
|
419
457
|
}
|
|
420
458
|
export interface CreateDomainNameResponse {
|
|
421
459
|
ApiMappingSelectionExpression?: string | undefined;
|
|
422
460
|
DomainName?: string | undefined;
|
|
461
|
+
DomainNameArn?: string | undefined;
|
|
423
462
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
424
463
|
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
464
|
+
RoutingMode?: RoutingMode | undefined;
|
|
425
465
|
Tags?: Record<string, string> | undefined;
|
|
426
466
|
}
|
|
427
467
|
export interface TlsConfigInput {
|
|
@@ -544,6 +584,20 @@ export interface CreateRouteResponseResponse {
|
|
|
544
584
|
RouteResponseId?: string | undefined;
|
|
545
585
|
RouteResponseKey?: string | undefined;
|
|
546
586
|
}
|
|
587
|
+
export interface CreateRoutingRuleRequest {
|
|
588
|
+
Actions: RoutingRuleAction[] | undefined;
|
|
589
|
+
Conditions: RoutingRuleCondition[] | undefined;
|
|
590
|
+
DomainName: string | undefined;
|
|
591
|
+
DomainNameId?: string | undefined;
|
|
592
|
+
Priority: number | undefined;
|
|
593
|
+
}
|
|
594
|
+
export interface CreateRoutingRuleResponse {
|
|
595
|
+
Actions?: RoutingRuleAction[] | undefined;
|
|
596
|
+
Conditions?: RoutingRuleCondition[] | undefined;
|
|
597
|
+
Priority?: number | undefined;
|
|
598
|
+
RoutingRuleArn?: string | undefined;
|
|
599
|
+
RoutingRuleId?: string | undefined;
|
|
600
|
+
}
|
|
547
601
|
export interface CreateStageRequest {
|
|
548
602
|
AccessLogSettings?: AccessLogSettings | undefined;
|
|
549
603
|
ApiId: string | undefined;
|
|
@@ -647,6 +701,11 @@ export interface DeleteRouteSettingsRequest {
|
|
|
647
701
|
RouteKey: string | undefined;
|
|
648
702
|
StageName: string | undefined;
|
|
649
703
|
}
|
|
704
|
+
export interface DeleteRoutingRuleRequest {
|
|
705
|
+
DomainName: string | undefined;
|
|
706
|
+
DomainNameId?: string | undefined;
|
|
707
|
+
RoutingRuleId: string | undefined;
|
|
708
|
+
}
|
|
650
709
|
export interface DeleteStageRequest {
|
|
651
710
|
ApiId: string | undefined;
|
|
652
711
|
StageName: string | undefined;
|
|
@@ -768,8 +827,10 @@ export interface GetDomainNameRequest {
|
|
|
768
827
|
export interface GetDomainNameResponse {
|
|
769
828
|
ApiMappingSelectionExpression?: string | undefined;
|
|
770
829
|
DomainName?: string | undefined;
|
|
830
|
+
DomainNameArn?: string | undefined;
|
|
771
831
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
772
832
|
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
833
|
+
RoutingMode?: RoutingMode | undefined;
|
|
773
834
|
Tags?: Record<string, string> | undefined;
|
|
774
835
|
}
|
|
775
836
|
export interface GetDomainNamesRequest {
|
|
@@ -915,6 +976,18 @@ export interface GetRoutesResponse {
|
|
|
915
976
|
Items?: Route[] | undefined;
|
|
916
977
|
NextToken?: string | undefined;
|
|
917
978
|
}
|
|
979
|
+
export interface GetRoutingRuleRequest {
|
|
980
|
+
DomainName: string | undefined;
|
|
981
|
+
DomainNameId?: string | undefined;
|
|
982
|
+
RoutingRuleId: string | undefined;
|
|
983
|
+
}
|
|
984
|
+
export interface GetRoutingRuleResponse {
|
|
985
|
+
Actions?: RoutingRuleAction[] | undefined;
|
|
986
|
+
Conditions?: RoutingRuleCondition[] | undefined;
|
|
987
|
+
Priority?: number | undefined;
|
|
988
|
+
RoutingRuleArn?: string | undefined;
|
|
989
|
+
RoutingRuleId?: string | undefined;
|
|
990
|
+
}
|
|
918
991
|
export interface GetStageRequest {
|
|
919
992
|
ApiId: string | undefined;
|
|
920
993
|
StageName: string | undefined;
|
|
@@ -996,6 +1069,31 @@ export interface ImportApiResponse {
|
|
|
996
1069
|
Version?: string | undefined;
|
|
997
1070
|
Warnings?: string[] | undefined;
|
|
998
1071
|
}
|
|
1072
|
+
export interface ListRoutingRulesRequest {
|
|
1073
|
+
DomainName: string | undefined;
|
|
1074
|
+
DomainNameId?: string | undefined;
|
|
1075
|
+
MaxResults?: number | undefined;
|
|
1076
|
+
NextToken?: string | undefined;
|
|
1077
|
+
}
|
|
1078
|
+
export interface ListRoutingRulesResponse {
|
|
1079
|
+
NextToken?: string | undefined;
|
|
1080
|
+
RoutingRules?: RoutingRule[] | undefined;
|
|
1081
|
+
}
|
|
1082
|
+
export interface PutRoutingRuleRequest {
|
|
1083
|
+
Actions: RoutingRuleAction[] | undefined;
|
|
1084
|
+
Conditions: RoutingRuleCondition[] | undefined;
|
|
1085
|
+
DomainName: string | undefined;
|
|
1086
|
+
DomainNameId?: string | undefined;
|
|
1087
|
+
Priority: number | undefined;
|
|
1088
|
+
RoutingRuleId: string | undefined;
|
|
1089
|
+
}
|
|
1090
|
+
export interface PutRoutingRuleResponse {
|
|
1091
|
+
Actions?: RoutingRuleAction[] | undefined;
|
|
1092
|
+
Conditions?: RoutingRuleCondition[] | undefined;
|
|
1093
|
+
Priority?: number | undefined;
|
|
1094
|
+
RoutingRuleArn?: string | undefined;
|
|
1095
|
+
RoutingRuleId?: string | undefined;
|
|
1096
|
+
}
|
|
999
1097
|
export interface ReimportApiRequest {
|
|
1000
1098
|
ApiId: string | undefined;
|
|
1001
1099
|
Basepath?: string | undefined;
|
|
@@ -1125,12 +1223,15 @@ export interface UpdateDomainNameRequest {
|
|
|
1125
1223
|
DomainName: string | undefined;
|
|
1126
1224
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
1127
1225
|
MutualTlsAuthentication?: MutualTlsAuthenticationInput | undefined;
|
|
1226
|
+
RoutingMode?: RoutingMode | undefined;
|
|
1128
1227
|
}
|
|
1129
1228
|
export interface UpdateDomainNameResponse {
|
|
1130
1229
|
ApiMappingSelectionExpression?: string | undefined;
|
|
1131
1230
|
DomainName?: string | undefined;
|
|
1231
|
+
DomainNameArn?: string | undefined;
|
|
1132
1232
|
DomainNameConfigurations?: DomainNameConfiguration[] | undefined;
|
|
1133
1233
|
MutualTlsAuthentication?: MutualTlsAuthentication | undefined;
|
|
1234
|
+
RoutingMode?: RoutingMode | undefined;
|
|
1134
1235
|
Tags?: Record<string, string> | undefined;
|
|
1135
1236
|
}
|
|
1136
1237
|
export interface UpdateIntegrationRequest {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRoutingRulesCommandInput,
|
|
4
|
+
ListRoutingRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListRoutingRulesCommand";
|
|
6
|
+
import { ApiGatewayV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRoutingRules: (
|
|
8
|
+
config: ApiGatewayV2PaginationConfiguration,
|
|
9
|
+
input: ListRoutingRulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRoutingRulesCommandOutput>;
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
CreateRouteResponseCommandInput,
|
|
44
44
|
CreateRouteResponseCommandOutput,
|
|
45
45
|
} from "../commands/CreateRouteResponseCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateRoutingRuleCommandInput,
|
|
48
|
+
CreateRoutingRuleCommandOutput,
|
|
49
|
+
} from "../commands/CreateRoutingRuleCommand";
|
|
46
50
|
import {
|
|
47
51
|
CreateStageCommandInput,
|
|
48
52
|
CreateStageCommandOutput,
|
|
@@ -107,6 +111,10 @@ import {
|
|
|
107
111
|
DeleteRouteSettingsCommandInput,
|
|
108
112
|
DeleteRouteSettingsCommandOutput,
|
|
109
113
|
} from "../commands/DeleteRouteSettingsCommand";
|
|
114
|
+
import {
|
|
115
|
+
DeleteRoutingRuleCommandInput,
|
|
116
|
+
DeleteRoutingRuleCommandOutput,
|
|
117
|
+
} from "../commands/DeleteRoutingRuleCommand";
|
|
110
118
|
import {
|
|
111
119
|
DeleteStageCommandInput,
|
|
112
120
|
DeleteStageCommandOutput,
|
|
@@ -203,6 +211,10 @@ import {
|
|
|
203
211
|
GetRoutesCommandInput,
|
|
204
212
|
GetRoutesCommandOutput,
|
|
205
213
|
} from "../commands/GetRoutesCommand";
|
|
214
|
+
import {
|
|
215
|
+
GetRoutingRuleCommandInput,
|
|
216
|
+
GetRoutingRuleCommandOutput,
|
|
217
|
+
} from "../commands/GetRoutingRuleCommand";
|
|
206
218
|
import {
|
|
207
219
|
GetStageCommandInput,
|
|
208
220
|
GetStageCommandOutput,
|
|
@@ -227,6 +239,14 @@ import {
|
|
|
227
239
|
ImportApiCommandInput,
|
|
228
240
|
ImportApiCommandOutput,
|
|
229
241
|
} from "../commands/ImportApiCommand";
|
|
242
|
+
import {
|
|
243
|
+
ListRoutingRulesCommandInput,
|
|
244
|
+
ListRoutingRulesCommandOutput,
|
|
245
|
+
} from "../commands/ListRoutingRulesCommand";
|
|
246
|
+
import {
|
|
247
|
+
PutRoutingRuleCommandInput,
|
|
248
|
+
PutRoutingRuleCommandOutput,
|
|
249
|
+
} from "../commands/PutRoutingRuleCommand";
|
|
230
250
|
import {
|
|
231
251
|
ReimportApiCommandInput,
|
|
232
252
|
ReimportApiCommandOutput,
|
|
@@ -331,6 +351,10 @@ export declare const se_CreateRouteResponseCommand: (
|
|
|
331
351
|
input: CreateRouteResponseCommandInput,
|
|
332
352
|
context: __SerdeContext
|
|
333
353
|
) => Promise<__HttpRequest>;
|
|
354
|
+
export declare const se_CreateRoutingRuleCommand: (
|
|
355
|
+
input: CreateRoutingRuleCommandInput,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<__HttpRequest>;
|
|
334
358
|
export declare const se_CreateStageCommand: (
|
|
335
359
|
input: CreateStageCommandInput,
|
|
336
360
|
context: __SerdeContext
|
|
@@ -395,6 +419,10 @@ export declare const se_DeleteRouteSettingsCommand: (
|
|
|
395
419
|
input: DeleteRouteSettingsCommandInput,
|
|
396
420
|
context: __SerdeContext
|
|
397
421
|
) => Promise<__HttpRequest>;
|
|
422
|
+
export declare const se_DeleteRoutingRuleCommand: (
|
|
423
|
+
input: DeleteRoutingRuleCommandInput,
|
|
424
|
+
context: __SerdeContext
|
|
425
|
+
) => Promise<__HttpRequest>;
|
|
398
426
|
export declare const se_DeleteStageCommand: (
|
|
399
427
|
input: DeleteStageCommandInput,
|
|
400
428
|
context: __SerdeContext
|
|
@@ -491,6 +519,10 @@ export declare const se_GetRoutesCommand: (
|
|
|
491
519
|
input: GetRoutesCommandInput,
|
|
492
520
|
context: __SerdeContext
|
|
493
521
|
) => Promise<__HttpRequest>;
|
|
522
|
+
export declare const se_GetRoutingRuleCommand: (
|
|
523
|
+
input: GetRoutingRuleCommandInput,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<__HttpRequest>;
|
|
494
526
|
export declare const se_GetStageCommand: (
|
|
495
527
|
input: GetStageCommandInput,
|
|
496
528
|
context: __SerdeContext
|
|
@@ -515,6 +547,14 @@ export declare const se_ImportApiCommand: (
|
|
|
515
547
|
input: ImportApiCommandInput,
|
|
516
548
|
context: __SerdeContext
|
|
517
549
|
) => Promise<__HttpRequest>;
|
|
550
|
+
export declare const se_ListRoutingRulesCommand: (
|
|
551
|
+
input: ListRoutingRulesCommandInput,
|
|
552
|
+
context: __SerdeContext
|
|
553
|
+
) => Promise<__HttpRequest>;
|
|
554
|
+
export declare const se_PutRoutingRuleCommand: (
|
|
555
|
+
input: PutRoutingRuleCommandInput,
|
|
556
|
+
context: __SerdeContext
|
|
557
|
+
) => Promise<__HttpRequest>;
|
|
518
558
|
export declare const se_ReimportApiCommand: (
|
|
519
559
|
input: ReimportApiCommandInput,
|
|
520
560
|
context: __SerdeContext
|
|
@@ -619,6 +659,10 @@ export declare const de_CreateRouteResponseCommand: (
|
|
|
619
659
|
output: __HttpResponse,
|
|
620
660
|
context: __SerdeContext
|
|
621
661
|
) => Promise<CreateRouteResponseCommandOutput>;
|
|
662
|
+
export declare const de_CreateRoutingRuleCommand: (
|
|
663
|
+
output: __HttpResponse,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<CreateRoutingRuleCommandOutput>;
|
|
622
666
|
export declare const de_CreateStageCommand: (
|
|
623
667
|
output: __HttpResponse,
|
|
624
668
|
context: __SerdeContext
|
|
@@ -683,6 +727,10 @@ export declare const de_DeleteRouteSettingsCommand: (
|
|
|
683
727
|
output: __HttpResponse,
|
|
684
728
|
context: __SerdeContext
|
|
685
729
|
) => Promise<DeleteRouteSettingsCommandOutput>;
|
|
730
|
+
export declare const de_DeleteRoutingRuleCommand: (
|
|
731
|
+
output: __HttpResponse,
|
|
732
|
+
context: __SerdeContext
|
|
733
|
+
) => Promise<DeleteRoutingRuleCommandOutput>;
|
|
686
734
|
export declare const de_DeleteStageCommand: (
|
|
687
735
|
output: __HttpResponse,
|
|
688
736
|
context: __SerdeContext
|
|
@@ -779,6 +827,10 @@ export declare const de_GetRoutesCommand: (
|
|
|
779
827
|
output: __HttpResponse,
|
|
780
828
|
context: __SerdeContext
|
|
781
829
|
) => Promise<GetRoutesCommandOutput>;
|
|
830
|
+
export declare const de_GetRoutingRuleCommand: (
|
|
831
|
+
output: __HttpResponse,
|
|
832
|
+
context: __SerdeContext
|
|
833
|
+
) => Promise<GetRoutingRuleCommandOutput>;
|
|
782
834
|
export declare const de_GetStageCommand: (
|
|
783
835
|
output: __HttpResponse,
|
|
784
836
|
context: __SerdeContext
|
|
@@ -803,6 +855,14 @@ export declare const de_ImportApiCommand: (
|
|
|
803
855
|
output: __HttpResponse,
|
|
804
856
|
context: __SerdeContext
|
|
805
857
|
) => Promise<ImportApiCommandOutput>;
|
|
858
|
+
export declare const de_ListRoutingRulesCommand: (
|
|
859
|
+
output: __HttpResponse,
|
|
860
|
+
context: __SerdeContext
|
|
861
|
+
) => Promise<ListRoutingRulesCommandOutput>;
|
|
862
|
+
export declare const de_PutRoutingRuleCommand: (
|
|
863
|
+
output: __HttpResponse,
|
|
864
|
+
context: __SerdeContext
|
|
865
|
+
) => Promise<PutRoutingRuleCommandOutput>;
|
|
806
866
|
export declare const de_ReimportApiCommand: (
|
|
807
867
|
output: __HttpResponse,
|
|
808
868
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apigatewayv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apigatewayv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.825.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-apigatewayv2",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.825.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.825.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.825.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.821.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.825.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.5.
|
|
35
|
+
"@smithy/core": "^3.5.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.10",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.11",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.2",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.18",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.18",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.5",
|