@aws-sdk/client-apigatewayv2 3.934.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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApiGatewayV2Client";
|
|
8
|
+
import {
|
|
9
|
+
PutPortalProductSharingPolicyRequest,
|
|
10
|
+
PutPortalProductSharingPolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutPortalProductSharingPolicyCommandInput
|
|
15
|
+
extends PutPortalProductSharingPolicyRequest {}
|
|
16
|
+
export interface PutPortalProductSharingPolicyCommandOutput
|
|
17
|
+
extends PutPortalProductSharingPolicyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutPortalProductSharingPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutPortalProductSharingPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutPortalProductSharingPolicyCommandInput,
|
|
24
|
+
PutPortalProductSharingPolicyCommandOutput,
|
|
25
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutPortalProductSharingPolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutPortalProductSharingPolicyCommandInput,
|
|
33
|
+
PutPortalProductSharingPolicyCommandOutput,
|
|
34
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutPortalProductSharingPolicyCommand extends PutPortalProductSharingPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutPortalProductSharingPolicyRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutPortalProductSharingPolicyCommandInput;
|
|
48
|
+
output: PutPortalProductSharingPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApiGatewayV2Client";
|
|
8
|
+
import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdatePortalCommandInput extends UpdatePortalRequest {}
|
|
12
|
+
export interface UpdatePortalCommandOutput
|
|
13
|
+
extends UpdatePortalResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdatePortalCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdatePortalCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdatePortalCommandInput,
|
|
20
|
+
UpdatePortalCommandOutput,
|
|
21
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: UpdatePortalCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdatePortalCommandInput,
|
|
29
|
+
UpdatePortalCommandOutput,
|
|
30
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdatePortalCommand extends UpdatePortalCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdatePortalRequest;
|
|
40
|
+
output: UpdatePortalResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdatePortalCommandInput;
|
|
44
|
+
output: UpdatePortalCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApiGatewayV2Client";
|
|
8
|
+
import {
|
|
9
|
+
UpdatePortalProductRequest,
|
|
10
|
+
UpdatePortalProductResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdatePortalProductCommandInput
|
|
15
|
+
extends UpdatePortalProductRequest {}
|
|
16
|
+
export interface UpdatePortalProductCommandOutput
|
|
17
|
+
extends UpdatePortalProductResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdatePortalProductCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdatePortalProductCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdatePortalProductCommandInput,
|
|
24
|
+
UpdatePortalProductCommandOutput,
|
|
25
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdatePortalProductCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdatePortalProductCommandInput,
|
|
33
|
+
UpdatePortalProductCommandOutput,
|
|
34
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdatePortalProductCommand extends UpdatePortalProductCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdatePortalProductRequest;
|
|
44
|
+
output: UpdatePortalProductResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdatePortalProductCommandInput;
|
|
48
|
+
output: UpdatePortalProductCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApiGatewayV2Client";
|
|
8
|
+
import {
|
|
9
|
+
UpdateProductPageRequest,
|
|
10
|
+
UpdateProductPageResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateProductPageCommandInput
|
|
15
|
+
extends UpdateProductPageRequest {}
|
|
16
|
+
export interface UpdateProductPageCommandOutput
|
|
17
|
+
extends UpdateProductPageResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateProductPageCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateProductPageCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateProductPageCommandInput,
|
|
24
|
+
UpdateProductPageCommandOutput,
|
|
25
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateProductPageCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateProductPageCommandInput,
|
|
33
|
+
UpdateProductPageCommandOutput,
|
|
34
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateProductPageCommand extends UpdateProductPageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateProductPageRequest;
|
|
44
|
+
output: UpdateProductPageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateProductPageCommandInput;
|
|
48
|
+
output: UpdateProductPageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApiGatewayV2Client";
|
|
8
|
+
import {
|
|
9
|
+
UpdateProductRestEndpointPageRequest,
|
|
10
|
+
UpdateProductRestEndpointPageResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateProductRestEndpointPageCommandInput
|
|
15
|
+
extends UpdateProductRestEndpointPageRequest {}
|
|
16
|
+
export interface UpdateProductRestEndpointPageCommandOutput
|
|
17
|
+
extends UpdateProductRestEndpointPageResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateProductRestEndpointPageCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateProductRestEndpointPageCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateProductRestEndpointPageCommandInput,
|
|
24
|
+
UpdateProductRestEndpointPageCommandOutput,
|
|
25
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateProductRestEndpointPageCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateProductRestEndpointPageCommandInput,
|
|
33
|
+
UpdateProductRestEndpointPageCommandOutput,
|
|
34
|
+
ApiGatewayV2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateProductRestEndpointPageCommand extends UpdateProductRestEndpointPageCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateProductRestEndpointPageRequest;
|
|
44
|
+
output: UpdateProductRestEndpointPageResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateProductRestEndpointPageCommandInput;
|
|
48
|
+
output: UpdateProductRestEndpointPageCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -6,6 +6,10 @@ export * from "./CreateDomainNameCommand";
|
|
|
6
6
|
export * from "./CreateIntegrationCommand";
|
|
7
7
|
export * from "./CreateIntegrationResponseCommand";
|
|
8
8
|
export * from "./CreateModelCommand";
|
|
9
|
+
export * from "./CreatePortalCommand";
|
|
10
|
+
export * from "./CreatePortalProductCommand";
|
|
11
|
+
export * from "./CreateProductPageCommand";
|
|
12
|
+
export * from "./CreateProductRestEndpointPageCommand";
|
|
9
13
|
export * from "./CreateRouteCommand";
|
|
10
14
|
export * from "./CreateRouteResponseCommand";
|
|
11
15
|
export * from "./CreateRoutingRuleCommand";
|
|
@@ -21,6 +25,11 @@ export * from "./DeleteDomainNameCommand";
|
|
|
21
25
|
export * from "./DeleteIntegrationCommand";
|
|
22
26
|
export * from "./DeleteIntegrationResponseCommand";
|
|
23
27
|
export * from "./DeleteModelCommand";
|
|
28
|
+
export * from "./DeletePortalCommand";
|
|
29
|
+
export * from "./DeletePortalProductCommand";
|
|
30
|
+
export * from "./DeletePortalProductSharingPolicyCommand";
|
|
31
|
+
export * from "./DeleteProductPageCommand";
|
|
32
|
+
export * from "./DeleteProductRestEndpointPageCommand";
|
|
24
33
|
export * from "./DeleteRouteCommand";
|
|
25
34
|
export * from "./DeleteRouteRequestParameterCommand";
|
|
26
35
|
export * from "./DeleteRouteResponseCommand";
|
|
@@ -28,6 +37,7 @@ export * from "./DeleteRouteSettingsCommand";
|
|
|
28
37
|
export * from "./DeleteRoutingRuleCommand";
|
|
29
38
|
export * from "./DeleteStageCommand";
|
|
30
39
|
export * from "./DeleteVpcLinkCommand";
|
|
40
|
+
export * from "./DisablePortalCommand";
|
|
31
41
|
export * from "./ExportApiCommand";
|
|
32
42
|
export * from "./GetApiCommand";
|
|
33
43
|
export * from "./GetApiMappingCommand";
|
|
@@ -46,6 +56,11 @@ export * from "./GetIntegrationsCommand";
|
|
|
46
56
|
export * from "./GetModelCommand";
|
|
47
57
|
export * from "./GetModelTemplateCommand";
|
|
48
58
|
export * from "./GetModelsCommand";
|
|
59
|
+
export * from "./GetPortalCommand";
|
|
60
|
+
export * from "./GetPortalProductCommand";
|
|
61
|
+
export * from "./GetPortalProductSharingPolicyCommand";
|
|
62
|
+
export * from "./GetProductPageCommand";
|
|
63
|
+
export * from "./GetProductRestEndpointPageCommand";
|
|
49
64
|
export * from "./GetRouteCommand";
|
|
50
65
|
export * from "./GetRouteResponseCommand";
|
|
51
66
|
export * from "./GetRouteResponsesCommand";
|
|
@@ -57,7 +72,14 @@ export * from "./GetTagsCommand";
|
|
|
57
72
|
export * from "./GetVpcLinkCommand";
|
|
58
73
|
export * from "./GetVpcLinksCommand";
|
|
59
74
|
export * from "./ImportApiCommand";
|
|
75
|
+
export * from "./ListPortalProductsCommand";
|
|
76
|
+
export * from "./ListPortalsCommand";
|
|
77
|
+
export * from "./ListProductPagesCommand";
|
|
78
|
+
export * from "./ListProductRestEndpointPagesCommand";
|
|
60
79
|
export * from "./ListRoutingRulesCommand";
|
|
80
|
+
export * from "./PreviewPortalCommand";
|
|
81
|
+
export * from "./PublishPortalCommand";
|
|
82
|
+
export * from "./PutPortalProductSharingPolicyCommand";
|
|
61
83
|
export * from "./PutRoutingRuleCommand";
|
|
62
84
|
export * from "./ReimportApiCommand";
|
|
63
85
|
export * from "./ResetAuthorizersCacheCommand";
|
|
@@ -71,6 +93,10 @@ export * from "./UpdateDomainNameCommand";
|
|
|
71
93
|
export * from "./UpdateIntegrationCommand";
|
|
72
94
|
export * from "./UpdateIntegrationResponseCommand";
|
|
73
95
|
export * from "./UpdateModelCommand";
|
|
96
|
+
export * from "./UpdatePortalCommand";
|
|
97
|
+
export * from "./UpdatePortalProductCommand";
|
|
98
|
+
export * from "./UpdateProductPageCommand";
|
|
99
|
+
export * from "./UpdateProductRestEndpointPageCommand";
|
|
74
100
|
export * from "./UpdateRouteCommand";
|
|
75
101
|
export * from "./UpdateRouteResponseCommand";
|
|
76
102
|
export * from "./UpdateStageCommand";
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ApiGatewayV2ExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ApiGatewayV2ServiceException } from "./models/ApiGatewayV2ServiceException";
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
export declare const IpAddressType: {
|
|
2
|
+
readonly dualstack: "dualstack";
|
|
3
|
+
readonly ipv4: "ipv4";
|
|
4
|
+
};
|
|
5
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
6
|
+
export declare const ProtocolType: {
|
|
7
|
+
readonly HTTP: "HTTP";
|
|
8
|
+
readonly WEBSOCKET: "WEBSOCKET";
|
|
9
|
+
};
|
|
10
|
+
export type ProtocolType = (typeof ProtocolType)[keyof typeof ProtocolType];
|
|
11
|
+
export declare const AuthorizerType: {
|
|
12
|
+
readonly JWT: "JWT";
|
|
13
|
+
readonly REQUEST: "REQUEST";
|
|
14
|
+
};
|
|
15
|
+
export type AuthorizerType =
|
|
16
|
+
(typeof AuthorizerType)[keyof typeof AuthorizerType];
|
|
17
|
+
export declare const DeploymentStatus: {
|
|
18
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
19
|
+
readonly FAILED: "FAILED";
|
|
20
|
+
readonly PENDING: "PENDING";
|
|
21
|
+
};
|
|
22
|
+
export type DeploymentStatus =
|
|
23
|
+
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
24
|
+
export declare const DomainNameStatus: {
|
|
25
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
26
|
+
readonly PENDING_CERTIFICATE_REIMPORT: "PENDING_CERTIFICATE_REIMPORT";
|
|
27
|
+
readonly PENDING_OWNERSHIP_VERIFICATION: "PENDING_OWNERSHIP_VERIFICATION";
|
|
28
|
+
readonly UPDATING: "UPDATING";
|
|
29
|
+
};
|
|
30
|
+
export type DomainNameStatus =
|
|
31
|
+
(typeof DomainNameStatus)[keyof typeof DomainNameStatus];
|
|
32
|
+
export declare const EndpointType: {
|
|
33
|
+
readonly EDGE: "EDGE";
|
|
34
|
+
readonly REGIONAL: "REGIONAL";
|
|
35
|
+
};
|
|
36
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
37
|
+
export declare const SecurityPolicy: {
|
|
38
|
+
readonly TLS_1_0: "TLS_1_0";
|
|
39
|
+
readonly TLS_1_2: "TLS_1_2";
|
|
40
|
+
};
|
|
41
|
+
export type SecurityPolicy =
|
|
42
|
+
(typeof SecurityPolicy)[keyof typeof SecurityPolicy];
|
|
43
|
+
export declare const RoutingMode: {
|
|
44
|
+
readonly API_MAPPING_ONLY: "API_MAPPING_ONLY";
|
|
45
|
+
readonly ROUTING_RULE_ONLY: "ROUTING_RULE_ONLY";
|
|
46
|
+
readonly ROUTING_RULE_THEN_API_MAPPING: "ROUTING_RULE_THEN_API_MAPPING";
|
|
47
|
+
};
|
|
48
|
+
export type RoutingMode = (typeof RoutingMode)[keyof typeof RoutingMode];
|
|
49
|
+
export declare const ConnectionType: {
|
|
50
|
+
readonly INTERNET: "INTERNET";
|
|
51
|
+
readonly VPC_LINK: "VPC_LINK";
|
|
52
|
+
};
|
|
53
|
+
export type ConnectionType =
|
|
54
|
+
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
55
|
+
export declare const ContentHandlingStrategy: {
|
|
56
|
+
readonly CONVERT_TO_BINARY: "CONVERT_TO_BINARY";
|
|
57
|
+
readonly CONVERT_TO_TEXT: "CONVERT_TO_TEXT";
|
|
58
|
+
};
|
|
59
|
+
export type ContentHandlingStrategy =
|
|
60
|
+
(typeof ContentHandlingStrategy)[keyof typeof ContentHandlingStrategy];
|
|
61
|
+
export declare const IntegrationType: {
|
|
62
|
+
readonly AWS: "AWS";
|
|
63
|
+
readonly AWS_PROXY: "AWS_PROXY";
|
|
64
|
+
readonly HTTP: "HTTP";
|
|
65
|
+
readonly HTTP_PROXY: "HTTP_PROXY";
|
|
66
|
+
readonly MOCK: "MOCK";
|
|
67
|
+
};
|
|
68
|
+
export type IntegrationType =
|
|
69
|
+
(typeof IntegrationType)[keyof typeof IntegrationType];
|
|
70
|
+
export declare const PassthroughBehavior: {
|
|
71
|
+
readonly NEVER: "NEVER";
|
|
72
|
+
readonly WHEN_NO_MATCH: "WHEN_NO_MATCH";
|
|
73
|
+
readonly WHEN_NO_TEMPLATES: "WHEN_NO_TEMPLATES";
|
|
74
|
+
};
|
|
75
|
+
export type PassthroughBehavior =
|
|
76
|
+
(typeof PassthroughBehavior)[keyof typeof PassthroughBehavior];
|
|
77
|
+
export declare const PreviewStatus: {
|
|
78
|
+
readonly PREVIEW_FAILED: "PREVIEW_FAILED";
|
|
79
|
+
readonly PREVIEW_IN_PROGRESS: "PREVIEW_IN_PROGRESS";
|
|
80
|
+
readonly PREVIEW_READY: "PREVIEW_READY";
|
|
81
|
+
};
|
|
82
|
+
export type PreviewStatus = (typeof PreviewStatus)[keyof typeof PreviewStatus];
|
|
83
|
+
export declare const PublishStatus: {
|
|
84
|
+
readonly DISABLED: "DISABLED";
|
|
85
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
86
|
+
readonly PUBLISH_FAILED: "PUBLISH_FAILED";
|
|
87
|
+
readonly PUBLISH_IN_PROGRESS: "PUBLISH_IN_PROGRESS";
|
|
88
|
+
};
|
|
89
|
+
export type PublishStatus = (typeof PublishStatus)[keyof typeof PublishStatus];
|
|
90
|
+
export declare const Status: {
|
|
91
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
94
|
+
};
|
|
95
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
96
|
+
export declare const TryItState: {
|
|
97
|
+
readonly DISABLED: "DISABLED";
|
|
98
|
+
readonly ENABLED: "ENABLED";
|
|
99
|
+
};
|
|
100
|
+
export type TryItState = (typeof TryItState)[keyof typeof TryItState];
|
|
101
|
+
export declare const AuthorizationType: {
|
|
102
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
103
|
+
readonly CUSTOM: "CUSTOM";
|
|
104
|
+
readonly JWT: "JWT";
|
|
105
|
+
readonly NONE: "NONE";
|
|
106
|
+
};
|
|
107
|
+
export type AuthorizationType =
|
|
108
|
+
(typeof AuthorizationType)[keyof typeof AuthorizationType];
|
|
109
|
+
export declare const LoggingLevel: {
|
|
110
|
+
readonly ERROR: "ERROR";
|
|
111
|
+
readonly INFO: "INFO";
|
|
112
|
+
readonly OFF: "OFF";
|
|
113
|
+
};
|
|
114
|
+
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
115
|
+
export declare const VpcLinkStatus: {
|
|
116
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
117
|
+
readonly DELETING: "DELETING";
|
|
118
|
+
readonly FAILED: "FAILED";
|
|
119
|
+
readonly INACTIVE: "INACTIVE";
|
|
120
|
+
readonly PENDING: "PENDING";
|
|
121
|
+
};
|
|
122
|
+
export type VpcLinkStatus = (typeof VpcLinkStatus)[keyof typeof VpcLinkStatus];
|
|
123
|
+
export declare const VpcLinkVersion: {
|
|
124
|
+
readonly V2: "V2";
|
|
125
|
+
};
|
|
126
|
+
export type VpcLinkVersion =
|
|
127
|
+
(typeof VpcLinkVersion)[keyof typeof VpcLinkVersion];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ApiGatewayV2ServiceException as __BaseException } from "./ApiGatewayV2ServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class BadRequestException extends __BaseException {
|
|
12
|
+
readonly name: "BadRequestException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
Message?: string | undefined;
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
24
|
+
}
|
|
25
|
+
export declare class NotFoundException extends __BaseException {
|
|
26
|
+
readonly name: "NotFoundException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
ResourceType?: string | undefined;
|
|
30
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
31
|
+
}
|
|
32
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
33
|
+
readonly name: "TooManyRequestsException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
LimitType?: string | undefined;
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|