@aws-sdk/client-apigatewayv2 3.933.0 → 3.935.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 +215 -7
- package/dist-cjs/index.js +4158 -1317
- package/dist-es/ApiGatewayV2.js +52 -0
- package/dist-es/commands/CreatePortalCommand.js +16 -0
- package/dist-es/commands/CreatePortalProductCommand.js +16 -0
- package/dist-es/commands/CreateProductPageCommand.js +16 -0
- package/dist-es/commands/CreateProductRestEndpointPageCommand.js +16 -0
- package/dist-es/commands/DeletePortalCommand.js +16 -0
- package/dist-es/commands/DeletePortalProductCommand.js +16 -0
- package/dist-es/commands/DeletePortalProductSharingPolicyCommand.js +16 -0
- package/dist-es/commands/DeleteProductPageCommand.js +16 -0
- package/dist-es/commands/DeleteProductRestEndpointPageCommand.js +16 -0
- package/dist-es/commands/DisablePortalCommand.js +16 -0
- package/dist-es/commands/GetPortalCommand.js +16 -0
- package/dist-es/commands/GetPortalProductCommand.js +16 -0
- package/dist-es/commands/GetPortalProductSharingPolicyCommand.js +16 -0
- package/dist-es/commands/GetProductPageCommand.js +16 -0
- package/dist-es/commands/GetProductRestEndpointPageCommand.js +16 -0
- package/dist-es/commands/ListPortalProductsCommand.js +16 -0
- package/dist-es/commands/ListPortalsCommand.js +16 -0
- package/dist-es/commands/ListProductPagesCommand.js +16 -0
- package/dist-es/commands/ListProductRestEndpointPagesCommand.js +16 -0
- package/dist-es/commands/PreviewPortalCommand.js +16 -0
- package/dist-es/commands/PublishPortalCommand.js +16 -0
- package/dist-es/commands/PutPortalProductSharingPolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePortalCommand.js +16 -0
- package/dist-es/commands/UpdatePortalProductCommand.js +16 -0
- package/dist-es/commands/UpdateProductPageCommand.js +16 -0
- package/dist-es/commands/UpdateProductRestEndpointPageCommand.js +16 -0
- package/dist-es/commands/index.js +26 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +97 -0
- package/dist-es/models/errors.js +75 -0
- package/dist-es/models/models_0.js +1 -152
- package/dist-es/schemas/schemas_0.js +4211 -1758
- package/dist-types/ApiGatewayV2.d.ts +184 -0
- package/dist-types/ApiGatewayV2Client.d.ts +28 -2
- package/dist-types/commands/CreatePortalCommand.d.ts +164 -0
- package/dist-types/commands/CreatePortalProductCommand.d.ts +107 -0
- package/dist-types/commands/CreateProductPageCommand.d.ts +95 -0
- package/dist-types/commands/CreateProductRestEndpointPageCommand.d.ts +123 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +80 -0
- package/dist-types/commands/DeletePortalProductCommand.d.ts +83 -0
- package/dist-types/commands/DeletePortalProductSharingPolicyCommand.d.ts +83 -0
- package/dist-types/commands/DeleteProductPageCommand.d.ts +84 -0
- package/dist-types/commands/DeleteProductRestEndpointPageCommand.d.ts +84 -0
- package/dist-types/commands/DisablePortalCommand.d.ts +86 -0
- package/dist-types/commands/GetPortalCommand.d.ts +138 -0
- package/dist-types/commands/GetPortalProductCommand.d.ts +107 -0
- package/dist-types/commands/GetPortalProductSharingPolicyCommand.d.ts +86 -0
- package/dist-types/commands/GetProductPageCommand.d.ts +93 -0
- package/dist-types/commands/GetProductRestEndpointPageCommand.d.ts +110 -0
- package/dist-types/commands/ListPortalProductsCommand.d.ts +96 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +141 -0
- package/dist-types/commands/ListProductPagesCommand.d.ts +96 -0
- package/dist-types/commands/ListProductRestEndpointPagesCommand.d.ts +111 -0
- package/dist-types/commands/PreviewPortalCommand.d.ts +86 -0
- package/dist-types/commands/PublishPortalCommand.d.ts +87 -0
- package/dist-types/commands/PutPortalProductSharingPolicyCommand.d.ts +84 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +176 -0
- package/dist-types/commands/UpdatePortalProductCommand.d.ts +122 -0
- package/dist-types/commands/UpdateProductPageCommand.d.ts +96 -0
- package/dist-types/commands/UpdateProductRestEndpointPageCommand.d.ts +116 -0
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +257 -0
- package/dist-types/models/errors.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +2564 -1172
- package/dist-types/schemas/schemas_0.d.ts +101 -0
- package/dist-types/ts3.4/ApiGatewayV2.d.ts +444 -0
- package/dist-types/ts3.4/ApiGatewayV2Client.d.ts +156 -0
- package/dist-types/ts3.4/commands/CreatePortalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePortalProductCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProductPageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProductRestEndpointPageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePortalCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeletePortalProductCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeletePortalProductSharingPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteProductPageCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteProductRestEndpointPageCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisablePortalCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetPortalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPortalProductCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPortalProductSharingPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProductPageCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetProductRestEndpointPageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPortalProductsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPortalsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListProductPagesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListProductRestEndpointPagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PreviewPortalCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PublishPortalCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutPortalProductSharingPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePortalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePortalProductCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProductPageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProductRestEndpointPageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +127 -0
- package/dist-types/ts3.4/models/errors.d.ts +40 -0
- package/dist-types/ts3.4/models/models_0.d.ts +417 -142
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +101 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -7,10 +7,13 @@ import {
|
|
|
7
7
|
} from "@smithy/types";
|
|
8
8
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
9
9
|
export declare var AccessLogSettings: StaticStructureSchema;
|
|
10
|
+
export declare var ACMManaged: StaticStructureSchema;
|
|
10
11
|
export declare var Api: StaticStructureSchema;
|
|
11
12
|
export declare var ApiMapping: StaticStructureSchema;
|
|
13
|
+
export declare var Authorization: StaticStructureSchema;
|
|
12
14
|
export declare var Authorizer: StaticStructureSchema;
|
|
13
15
|
export declare var BadRequestException: StaticErrorSchema;
|
|
16
|
+
export declare var CognitoConfig: StaticStructureSchema;
|
|
14
17
|
export declare var ConflictException: StaticErrorSchema;
|
|
15
18
|
export declare var Cors: StaticStructureSchema;
|
|
16
19
|
export declare var CreateApiMappingRequest: StaticStructureSchema;
|
|
@@ -29,6 +32,14 @@ export declare var CreateIntegrationResponseResponse: StaticStructureSchema;
|
|
|
29
32
|
export declare var CreateIntegrationResult: StaticStructureSchema;
|
|
30
33
|
export declare var CreateModelRequest: StaticStructureSchema;
|
|
31
34
|
export declare var CreateModelResponse: StaticStructureSchema;
|
|
35
|
+
export declare var CreatePortalProductRequest: StaticStructureSchema;
|
|
36
|
+
export declare var CreatePortalProductResponse: StaticStructureSchema;
|
|
37
|
+
export declare var CreatePortalRequest: StaticStructureSchema;
|
|
38
|
+
export declare var CreatePortalResponse: StaticStructureSchema;
|
|
39
|
+
export declare var CreateProductPageRequest: StaticStructureSchema;
|
|
40
|
+
export declare var CreateProductPageResponse: StaticStructureSchema;
|
|
41
|
+
export declare var CreateProductRestEndpointPageRequest: StaticStructureSchema;
|
|
42
|
+
export declare var CreateProductRestEndpointPageResponse: StaticStructureSchema;
|
|
32
43
|
export declare var CreateRouteRequest: StaticStructureSchema;
|
|
33
44
|
export declare var CreateRouteResponseRequest: StaticStructureSchema;
|
|
34
45
|
export declare var CreateRouteResponseResponse: StaticStructureSchema;
|
|
@@ -39,6 +50,7 @@ export declare var CreateStageRequest: StaticStructureSchema;
|
|
|
39
50
|
export declare var CreateStageResponse: StaticStructureSchema;
|
|
40
51
|
export declare var CreateVpcLinkRequest: StaticStructureSchema;
|
|
41
52
|
export declare var CreateVpcLinkResponse: StaticStructureSchema;
|
|
53
|
+
export declare var CustomColors: StaticStructureSchema;
|
|
42
54
|
export declare var DeleteAccessLogSettingsRequest: StaticStructureSchema;
|
|
43
55
|
export declare var DeleteApiMappingRequest: StaticStructureSchema;
|
|
44
56
|
export declare var DeleteApiRequest: StaticStructureSchema;
|
|
@@ -49,6 +61,11 @@ export declare var DeleteDomainNameRequest: StaticStructureSchema;
|
|
|
49
61
|
export declare var DeleteIntegrationRequest: StaticStructureSchema;
|
|
50
62
|
export declare var DeleteIntegrationResponseRequest: StaticStructureSchema;
|
|
51
63
|
export declare var DeleteModelRequest: StaticStructureSchema;
|
|
64
|
+
export declare var DeletePortalProductRequest: StaticStructureSchema;
|
|
65
|
+
export declare var DeletePortalProductSharingPolicyRequest: StaticStructureSchema;
|
|
66
|
+
export declare var DeletePortalRequest: StaticStructureSchema;
|
|
67
|
+
export declare var DeleteProductPageRequest: StaticStructureSchema;
|
|
68
|
+
export declare var DeleteProductRestEndpointPageRequest: StaticStructureSchema;
|
|
52
69
|
export declare var DeleteRouteRequest: StaticStructureSchema;
|
|
53
70
|
export declare var DeleteRouteRequestParameterRequest: StaticStructureSchema;
|
|
54
71
|
export declare var DeleteRouteResponseRequest: StaticStructureSchema;
|
|
@@ -58,8 +75,16 @@ export declare var DeleteStageRequest: StaticStructureSchema;
|
|
|
58
75
|
export declare var DeleteVpcLinkRequest: StaticStructureSchema;
|
|
59
76
|
export declare var DeleteVpcLinkResponse: StaticStructureSchema;
|
|
60
77
|
export declare var Deployment: StaticStructureSchema;
|
|
78
|
+
export declare var DisablePortalRequest: StaticStructureSchema;
|
|
79
|
+
export declare var DisplayContent: StaticStructureSchema;
|
|
80
|
+
export declare var DisplayContentOverrides: StaticStructureSchema;
|
|
81
|
+
export declare var DisplayOrder: StaticStructureSchema;
|
|
61
82
|
export declare var DomainName: StaticStructureSchema;
|
|
62
83
|
export declare var DomainNameConfiguration: StaticStructureSchema;
|
|
84
|
+
export declare var EndpointConfigurationRequest: StaticStructureSchema;
|
|
85
|
+
export declare var EndpointConfigurationResponse: StaticStructureSchema;
|
|
86
|
+
export declare var EndpointDisplayContent: StaticStructureSchema;
|
|
87
|
+
export declare var EndpointDisplayContentResponse: StaticStructureSchema;
|
|
63
88
|
export declare var ExportApiRequest: StaticStructureSchema;
|
|
64
89
|
export declare var ExportApiResponse: StaticStructureSchema;
|
|
65
90
|
export declare var GetApiMappingRequest: StaticStructureSchema;
|
|
@@ -96,6 +121,16 @@ export declare var GetModelsRequest: StaticStructureSchema;
|
|
|
96
121
|
export declare var GetModelsResponse: StaticStructureSchema;
|
|
97
122
|
export declare var GetModelTemplateRequest: StaticStructureSchema;
|
|
98
123
|
export declare var GetModelTemplateResponse: StaticStructureSchema;
|
|
124
|
+
export declare var GetPortalProductRequest: StaticStructureSchema;
|
|
125
|
+
export declare var GetPortalProductResponse: StaticStructureSchema;
|
|
126
|
+
export declare var GetPortalProductSharingPolicyRequest: StaticStructureSchema;
|
|
127
|
+
export declare var GetPortalProductSharingPolicyResponse: StaticStructureSchema;
|
|
128
|
+
export declare var GetPortalRequest: StaticStructureSchema;
|
|
129
|
+
export declare var GetPortalResponse: StaticStructureSchema;
|
|
130
|
+
export declare var GetProductPageRequest: StaticStructureSchema;
|
|
131
|
+
export declare var GetProductPageResponse: StaticStructureSchema;
|
|
132
|
+
export declare var GetProductRestEndpointPageRequest: StaticStructureSchema;
|
|
133
|
+
export declare var GetProductRestEndpointPageResponse: StaticStructureSchema;
|
|
99
134
|
export declare var GetRouteRequest: StaticStructureSchema;
|
|
100
135
|
export declare var GetRouteResponseRequest: StaticStructureSchema;
|
|
101
136
|
export declare var GetRouteResponseResponse: StaticStructureSchema;
|
|
@@ -116,23 +151,47 @@ export declare var GetVpcLinkRequest: StaticStructureSchema;
|
|
|
116
151
|
export declare var GetVpcLinkResponse: StaticStructureSchema;
|
|
117
152
|
export declare var GetVpcLinksRequest: StaticStructureSchema;
|
|
118
153
|
export declare var GetVpcLinksResponse: StaticStructureSchema;
|
|
154
|
+
export declare var IdentifierParts: StaticStructureSchema;
|
|
119
155
|
export declare var ImportApiRequest: StaticStructureSchema;
|
|
120
156
|
export declare var ImportApiResponse: StaticStructureSchema;
|
|
121
157
|
export declare var Integration: StaticStructureSchema;
|
|
122
158
|
export declare var IntegrationResponse: StaticStructureSchema;
|
|
123
159
|
export declare var JWTConfiguration: StaticStructureSchema;
|
|
160
|
+
export declare var ListPortalProductsRequest: StaticStructureSchema;
|
|
161
|
+
export declare var ListPortalProductsResponse: StaticStructureSchema;
|
|
162
|
+
export declare var ListPortalsRequest: StaticStructureSchema;
|
|
163
|
+
export declare var ListPortalsResponse: StaticStructureSchema;
|
|
164
|
+
export declare var ListProductPagesRequest: StaticStructureSchema;
|
|
165
|
+
export declare var ListProductPagesResponse: StaticStructureSchema;
|
|
166
|
+
export declare var ListProductRestEndpointPagesRequest: StaticStructureSchema;
|
|
167
|
+
export declare var ListProductRestEndpointPagesResponse: StaticStructureSchema;
|
|
124
168
|
export declare var ListRoutingRulesRequest: StaticStructureSchema;
|
|
125
169
|
export declare var ListRoutingRulesResponse: StaticStructureSchema;
|
|
126
170
|
export declare var Model: StaticStructureSchema;
|
|
127
171
|
export declare var MutualTlsAuthentication: StaticStructureSchema;
|
|
128
172
|
export declare var MutualTlsAuthenticationInput: StaticStructureSchema;
|
|
173
|
+
export declare var None: StaticStructureSchema;
|
|
129
174
|
export declare var NotFoundException: StaticErrorSchema;
|
|
130
175
|
export declare var ParameterConstraints: StaticStructureSchema;
|
|
176
|
+
export declare var PortalContent: StaticStructureSchema;
|
|
177
|
+
export declare var PortalProductSummary: StaticStructureSchema;
|
|
178
|
+
export declare var PortalSummary: StaticStructureSchema;
|
|
179
|
+
export declare var PortalTheme: StaticStructureSchema;
|
|
180
|
+
export declare var Preview: StaticStructureSchema;
|
|
181
|
+
export declare var PreviewPortalRequest: StaticStructureSchema;
|
|
182
|
+
export declare var PreviewPortalResponse: StaticStructureSchema;
|
|
183
|
+
export declare var ProductPageSummaryNoBody: StaticStructureSchema;
|
|
184
|
+
export declare var ProductRestEndpointPageSummaryNoBody: StaticStructureSchema;
|
|
185
|
+
export declare var PublishPortalRequest: StaticStructureSchema;
|
|
186
|
+
export declare var PublishPortalResponse: StaticStructureSchema;
|
|
187
|
+
export declare var PutPortalProductSharingPolicyRequest: StaticStructureSchema;
|
|
188
|
+
export declare var PutPortalProductSharingPolicyResponse: StaticStructureSchema;
|
|
131
189
|
export declare var PutRoutingRuleRequest: StaticStructureSchema;
|
|
132
190
|
export declare var PutRoutingRuleResponse: StaticStructureSchema;
|
|
133
191
|
export declare var ReimportApiRequest: StaticStructureSchema;
|
|
134
192
|
export declare var ReimportApiResponse: StaticStructureSchema;
|
|
135
193
|
export declare var ResetAuthorizersCacheRequest: StaticStructureSchema;
|
|
194
|
+
export declare var RestEndpointIdentifier: StaticStructureSchema;
|
|
136
195
|
export declare var Route: StaticStructureSchema;
|
|
137
196
|
export declare var RouteResponse: StaticStructureSchema;
|
|
138
197
|
export declare var RouteSettings: StaticStructureSchema;
|
|
@@ -143,7 +202,9 @@ export declare var RoutingRuleCondition: StaticStructureSchema;
|
|
|
143
202
|
export declare var RoutingRuleMatchBasePaths: StaticStructureSchema;
|
|
144
203
|
export declare var RoutingRuleMatchHeaders: StaticStructureSchema;
|
|
145
204
|
export declare var RoutingRuleMatchHeaderValue: StaticStructureSchema;
|
|
205
|
+
export declare var Section: StaticStructureSchema;
|
|
146
206
|
export declare var Stage: StaticStructureSchema;
|
|
207
|
+
export declare var StatusException: StaticStructureSchema;
|
|
147
208
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
148
209
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
149
210
|
export declare var TlsConfig: StaticStructureSchema;
|
|
@@ -166,6 +227,14 @@ export declare var UpdateIntegrationResponseResponse: StaticStructureSchema;
|
|
|
166
227
|
export declare var UpdateIntegrationResult: StaticStructureSchema;
|
|
167
228
|
export declare var UpdateModelRequest: StaticStructureSchema;
|
|
168
229
|
export declare var UpdateModelResponse: StaticStructureSchema;
|
|
230
|
+
export declare var UpdatePortalProductRequest: StaticStructureSchema;
|
|
231
|
+
export declare var UpdatePortalProductResponse: StaticStructureSchema;
|
|
232
|
+
export declare var UpdatePortalRequest: StaticStructureSchema;
|
|
233
|
+
export declare var UpdatePortalResponse: StaticStructureSchema;
|
|
234
|
+
export declare var UpdateProductPageRequest: StaticStructureSchema;
|
|
235
|
+
export declare var UpdateProductPageResponse: StaticStructureSchema;
|
|
236
|
+
export declare var UpdateProductRestEndpointPageRequest: StaticStructureSchema;
|
|
237
|
+
export declare var UpdateProductRestEndpointPageResponse: StaticStructureSchema;
|
|
169
238
|
export declare var UpdateRouteRequest: StaticStructureSchema;
|
|
170
239
|
export declare var UpdateRouteResponseRequest: StaticStructureSchema;
|
|
171
240
|
export declare var UpdateRouteResponseResponse: StaticStructureSchema;
|
|
@@ -178,6 +247,7 @@ export declare var VpcLink: StaticStructureSchema;
|
|
|
178
247
|
export declare var __Unit: "unit";
|
|
179
248
|
export declare var ApiGatewayV2ServiceException: StaticErrorSchema;
|
|
180
249
|
export declare var __listOf__string: number;
|
|
250
|
+
export declare var __listOf__stringMin20Max2048: number;
|
|
181
251
|
export declare var __listOfApi: StaticListSchema;
|
|
182
252
|
export declare var __listOfApiMapping: StaticListSchema;
|
|
183
253
|
export declare var __listOfAuthorizer: StaticListSchema;
|
|
@@ -186,12 +256,17 @@ export declare var __listOfDomainName: StaticListSchema;
|
|
|
186
256
|
export declare var __listOfIntegration: StaticListSchema;
|
|
187
257
|
export declare var __listOfIntegrationResponse: StaticListSchema;
|
|
188
258
|
export declare var __listOfModel: StaticListSchema;
|
|
259
|
+
export declare var __listOfPortalProductSummary: StaticListSchema;
|
|
260
|
+
export declare var __listOfPortalSummary: StaticListSchema;
|
|
261
|
+
export declare var __listOfProductPageSummaryNoBody: StaticListSchema;
|
|
262
|
+
export declare var __listOfProductRestEndpointPageSummaryNoBody: StaticListSchema;
|
|
189
263
|
export declare var __listOfRoute: StaticListSchema;
|
|
190
264
|
export declare var __listOfRouteResponse: StaticListSchema;
|
|
191
265
|
export declare var __listOfRoutingRule: StaticListSchema;
|
|
192
266
|
export declare var __listOfRoutingRuleAction: StaticListSchema;
|
|
193
267
|
export declare var __listOfRoutingRuleCondition: StaticListSchema;
|
|
194
268
|
export declare var __listOfRoutingRuleMatchHeaderValue: StaticListSchema;
|
|
269
|
+
export declare var __listOfSection: StaticListSchema;
|
|
195
270
|
export declare var __listOfSelectionKey: number;
|
|
196
271
|
export declare var __listOfStage: StaticListSchema;
|
|
197
272
|
export declare var __listOfVpcLink: StaticListSchema;
|
|
@@ -219,6 +294,10 @@ export declare var CreateDomainName: StaticOperationSchema;
|
|
|
219
294
|
export declare var CreateIntegration: StaticOperationSchema;
|
|
220
295
|
export declare var CreateIntegrationResponse: StaticOperationSchema;
|
|
221
296
|
export declare var CreateModel: StaticOperationSchema;
|
|
297
|
+
export declare var CreatePortal: StaticOperationSchema;
|
|
298
|
+
export declare var CreatePortalProduct: StaticOperationSchema;
|
|
299
|
+
export declare var CreateProductPage: StaticOperationSchema;
|
|
300
|
+
export declare var CreateProductRestEndpointPage: StaticOperationSchema;
|
|
222
301
|
export declare var CreateRoute: StaticOperationSchema;
|
|
223
302
|
export declare var CreateRouteResponse: StaticOperationSchema;
|
|
224
303
|
export declare var CreateRoutingRule: StaticOperationSchema;
|
|
@@ -234,6 +313,11 @@ export declare var DeleteDomainName: StaticOperationSchema;
|
|
|
234
313
|
export declare var DeleteIntegration: StaticOperationSchema;
|
|
235
314
|
export declare var DeleteIntegrationResponse: StaticOperationSchema;
|
|
236
315
|
export declare var DeleteModel: StaticOperationSchema;
|
|
316
|
+
export declare var DeletePortal: StaticOperationSchema;
|
|
317
|
+
export declare var DeletePortalProduct: StaticOperationSchema;
|
|
318
|
+
export declare var DeletePortalProductSharingPolicy: StaticOperationSchema;
|
|
319
|
+
export declare var DeleteProductPage: StaticOperationSchema;
|
|
320
|
+
export declare var DeleteProductRestEndpointPage: StaticOperationSchema;
|
|
237
321
|
export declare var DeleteRoute: StaticOperationSchema;
|
|
238
322
|
export declare var DeleteRouteRequestParameter: StaticOperationSchema;
|
|
239
323
|
export declare var DeleteRouteResponse: StaticOperationSchema;
|
|
@@ -241,6 +325,7 @@ export declare var DeleteRouteSettings: StaticOperationSchema;
|
|
|
241
325
|
export declare var DeleteRoutingRule: StaticOperationSchema;
|
|
242
326
|
export declare var DeleteStage: StaticOperationSchema;
|
|
243
327
|
export declare var DeleteVpcLink: StaticOperationSchema;
|
|
328
|
+
export declare var DisablePortal: StaticOperationSchema;
|
|
244
329
|
export declare var ExportApi: StaticOperationSchema;
|
|
245
330
|
export declare var GetApi: StaticOperationSchema;
|
|
246
331
|
export declare var GetApiMapping: StaticOperationSchema;
|
|
@@ -259,6 +344,11 @@ export declare var GetIntegrations: StaticOperationSchema;
|
|
|
259
344
|
export declare var GetModel: StaticOperationSchema;
|
|
260
345
|
export declare var GetModels: StaticOperationSchema;
|
|
261
346
|
export declare var GetModelTemplate: StaticOperationSchema;
|
|
347
|
+
export declare var GetPortal: StaticOperationSchema;
|
|
348
|
+
export declare var GetPortalProduct: StaticOperationSchema;
|
|
349
|
+
export declare var GetPortalProductSharingPolicy: StaticOperationSchema;
|
|
350
|
+
export declare var GetProductPage: StaticOperationSchema;
|
|
351
|
+
export declare var GetProductRestEndpointPage: StaticOperationSchema;
|
|
262
352
|
export declare var GetRoute: StaticOperationSchema;
|
|
263
353
|
export declare var GetRouteResponse: StaticOperationSchema;
|
|
264
354
|
export declare var GetRouteResponses: StaticOperationSchema;
|
|
@@ -270,7 +360,14 @@ export declare var GetTags: StaticOperationSchema;
|
|
|
270
360
|
export declare var GetVpcLink: StaticOperationSchema;
|
|
271
361
|
export declare var GetVpcLinks: StaticOperationSchema;
|
|
272
362
|
export declare var ImportApi: StaticOperationSchema;
|
|
363
|
+
export declare var ListPortalProducts: StaticOperationSchema;
|
|
364
|
+
export declare var ListPortals: StaticOperationSchema;
|
|
365
|
+
export declare var ListProductPages: StaticOperationSchema;
|
|
366
|
+
export declare var ListProductRestEndpointPages: StaticOperationSchema;
|
|
273
367
|
export declare var ListRoutingRules: StaticOperationSchema;
|
|
368
|
+
export declare var PreviewPortal: StaticOperationSchema;
|
|
369
|
+
export declare var PublishPortal: StaticOperationSchema;
|
|
370
|
+
export declare var PutPortalProductSharingPolicy: StaticOperationSchema;
|
|
274
371
|
export declare var PutRoutingRule: StaticOperationSchema;
|
|
275
372
|
export declare var ReimportApi: StaticOperationSchema;
|
|
276
373
|
export declare var ResetAuthorizersCache: StaticOperationSchema;
|
|
@@ -284,6 +381,10 @@ export declare var UpdateDomainName: StaticOperationSchema;
|
|
|
284
381
|
export declare var UpdateIntegration: StaticOperationSchema;
|
|
285
382
|
export declare var UpdateIntegrationResponse: StaticOperationSchema;
|
|
286
383
|
export declare var UpdateModel: StaticOperationSchema;
|
|
384
|
+
export declare var UpdatePortal: StaticOperationSchema;
|
|
385
|
+
export declare var UpdatePortalProduct: StaticOperationSchema;
|
|
386
|
+
export declare var UpdateProductPage: StaticOperationSchema;
|
|
387
|
+
export declare var UpdateProductRestEndpointPage: StaticOperationSchema;
|
|
287
388
|
export declare var UpdateRoute: StaticOperationSchema;
|
|
288
389
|
export declare var UpdateRouteResponse: StaticOperationSchema;
|
|
289
390
|
export declare var UpdateStage: StaticOperationSchema;
|
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.935.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.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|