@aws-sdk/client-apprunner 3.51.0 → 3.54.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/CHANGELOG.md +34 -0
- package/dist-cjs/AppRunner.js +60 -0
- package/dist-cjs/commands/CreateVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/DeleteVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/DescribeVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/ListVpcConnectorsCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoints.js +29 -1
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppRunnerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +153 -2
- package/dist-cjs/pagination/ListVpcConnectorsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +544 -675
- package/dist-es/AppRunner.js +60 -0
- package/dist-es/commands/CreateVpcConnectorCommand.js +39 -0
- package/dist-es/commands/DeleteVpcConnectorCommand.js +39 -0
- package/dist-es/commands/DescribeVpcConnectorCommand.js +39 -0
- package/dist-es/commands/ListVpcConnectorsCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoints.js +29 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppRunnerServiceException.js +12 -0
- package/dist-es/models/models_0.js +125 -2
- package/dist-es/pagination/ListVpcConnectorsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +844 -759
- package/dist-types/AppRunner.d.ts +33 -3
- package/dist-types/AppRunnerClient.d.ts +8 -4
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +36 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +36 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +35 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppRunnerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +294 -27
- package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppRunner.d.ts +20 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +8 -4
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +161 -16
- package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -4,18 +4,22 @@ import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput }
|
|
|
4
4
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
|
|
5
5
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
6
6
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
7
|
+
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
7
8
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
8
9
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
9
10
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
11
|
+
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
10
12
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
11
13
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
12
14
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
15
|
+
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
13
16
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
14
17
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
15
18
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
16
19
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
17
20
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
18
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
|
|
19
23
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
|
|
20
24
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
|
|
21
25
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
@@ -41,6 +45,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
41
45
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
42
46
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
43
47
|
|
|
48
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcConnectorCommandOutput>;
|
|
49
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
50
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
51
|
+
|
|
44
52
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
45
53
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
46
54
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
@@ -53,6 +61,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
53
61
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
54
62
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
55
63
|
|
|
64
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcConnectorCommandOutput>;
|
|
65
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
66
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
67
|
+
|
|
56
68
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
57
69
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
58
70
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
@@ -65,6 +77,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
65
77
|
describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
66
78
|
describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
67
79
|
|
|
80
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
|
|
81
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
82
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
83
|
+
|
|
68
84
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCustomDomainCommandOutput>;
|
|
69
85
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
70
86
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
@@ -89,6 +105,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
89
105
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
90
106
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
91
107
|
|
|
108
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
|
|
109
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
110
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
111
|
+
|
|
92
112
|
pauseService(args: PauseServiceCommandInput, options?: __HttpHandlerOptions): Promise<PauseServiceCommandOutput>;
|
|
93
113
|
pauseService(args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
94
114
|
pauseService(args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
@@ -5,31 +5,35 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "./commands/AssociateCustomDomainCommand";
|
|
10
10
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
|
|
11
11
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
12
12
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
13
|
+
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
13
14
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
14
15
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
15
16
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
17
|
+
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
16
18
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
17
19
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
18
20
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
21
|
+
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
19
22
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
20
23
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
21
24
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
22
25
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
23
26
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
24
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
|
|
25
29
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
|
|
26
30
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
|
|
27
31
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
28
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
34
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
31
|
-
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateServiceCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteServiceCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeServiceCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
32
|
-
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateServiceCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteServiceCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeServiceCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
35
|
+
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
33
37
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
34
38
|
|
|
35
39
|
requestHandler?: __HttpHandler;
|
|
@@ -38,7 +42,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
38
42
|
|
|
39
43
|
urlParser?: __UrlParser;
|
|
40
44
|
|
|
41
|
-
bodyLengthChecker?:
|
|
45
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
42
46
|
|
|
43
47
|
streamCollector?: __StreamCollector;
|
|
44
48
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { CreateVpcConnectorRequest, CreateVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateVpcConnectorCommandInput extends CreateVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateVpcConnectorCommand extends $Command<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: CreateVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { DeleteVpcConnectorRequest, DeleteVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteVpcConnectorCommandInput extends DeleteVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteVpcConnectorCommand extends $Command<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: DeleteVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { DescribeVpcConnectorRequest, DescribeVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeVpcConnectorCommandInput extends DescribeVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeVpcConnectorCommand extends $Command<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: DescribeVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { ListVpcConnectorsRequest, ListVpcConnectorsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListVpcConnectorsCommandInput extends ListVpcConnectorsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListVpcConnectorsCommand extends $Command<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListVpcConnectorsCommandInput;
|
|
12
|
+
constructor(input: ListVpcConnectorsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -2,18 +2,22 @@ export * from "./AssociateCustomDomainCommand";
|
|
|
2
2
|
export * from "./CreateAutoScalingConfigurationCommand";
|
|
3
3
|
export * from "./CreateConnectionCommand";
|
|
4
4
|
export * from "./CreateServiceCommand";
|
|
5
|
+
export * from "./CreateVpcConnectorCommand";
|
|
5
6
|
export * from "./DeleteAutoScalingConfigurationCommand";
|
|
6
7
|
export * from "./DeleteConnectionCommand";
|
|
7
8
|
export * from "./DeleteServiceCommand";
|
|
9
|
+
export * from "./DeleteVpcConnectorCommand";
|
|
8
10
|
export * from "./DescribeAutoScalingConfigurationCommand";
|
|
9
11
|
export * from "./DescribeCustomDomainsCommand";
|
|
10
12
|
export * from "./DescribeServiceCommand";
|
|
13
|
+
export * from "./DescribeVpcConnectorCommand";
|
|
11
14
|
export * from "./DisassociateCustomDomainCommand";
|
|
12
15
|
export * from "./ListAutoScalingConfigurationsCommand";
|
|
13
16
|
export * from "./ListConnectionsCommand";
|
|
14
17
|
export * from "./ListOperationsCommand";
|
|
15
18
|
export * from "./ListServicesCommand";
|
|
16
19
|
export * from "./ListTagsForResourceCommand";
|
|
20
|
+
export * from "./ListVpcConnectorsCommand";
|
|
17
21
|
export * from "./PauseServiceCommand";
|
|
18
22
|
export * from "./ResumeServiceCommand";
|
|
19
23
|
export * from "./StartDeploymentCommand";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class AppRunnerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
2
3
|
export interface AssociateCustomDomainRequest {
|
|
3
4
|
|
|
4
5
|
ServiceArn: string | undefined;
|
|
@@ -68,22 +69,28 @@ export declare namespace AssociateCustomDomainResponse {
|
|
|
68
69
|
const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
export
|
|
72
|
-
name: "InternalServiceErrorException";
|
|
73
|
-
$fault: "server";
|
|
72
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
73
|
+
readonly name: "InternalServiceErrorException";
|
|
74
|
+
readonly $fault: "server";
|
|
74
75
|
Message?: string;
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
export
|
|
78
|
-
name: "InvalidRequestException";
|
|
79
|
-
$fault: "client";
|
|
80
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
81
|
+
readonly name: "InvalidRequestException";
|
|
82
|
+
readonly $fault: "client";
|
|
80
83
|
Message?: string;
|
|
84
|
+
|
|
85
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
81
86
|
}
|
|
82
87
|
|
|
83
|
-
export
|
|
84
|
-
name: "InvalidStateException";
|
|
85
|
-
$fault: "client";
|
|
88
|
+
export declare class InvalidStateException extends __BaseException {
|
|
89
|
+
readonly name: "InvalidStateException";
|
|
90
|
+
readonly $fault: "client";
|
|
86
91
|
Message?: string;
|
|
92
|
+
|
|
93
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
87
94
|
}
|
|
88
95
|
|
|
89
96
|
export interface Tag {
|
|
@@ -152,10 +159,12 @@ export declare namespace CreateAutoScalingConfigurationResponse {
|
|
|
152
159
|
const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
|
|
153
160
|
}
|
|
154
161
|
|
|
155
|
-
export
|
|
156
|
-
name: "ServiceQuotaExceededException";
|
|
157
|
-
$fault: "client";
|
|
162
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
163
|
+
readonly name: "ServiceQuotaExceededException";
|
|
164
|
+
readonly $fault: "client";
|
|
158
165
|
Message?: string;
|
|
166
|
+
|
|
167
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
159
168
|
}
|
|
160
169
|
export declare enum ProviderType {
|
|
161
170
|
GITHUB = "GITHUB"
|
|
@@ -248,6 +257,30 @@ export declare namespace InstanceConfiguration {
|
|
|
248
257
|
|
|
249
258
|
const filterSensitiveLog: (obj: InstanceConfiguration) => any;
|
|
250
259
|
}
|
|
260
|
+
export declare enum EgressType {
|
|
261
|
+
DEFAULT = "DEFAULT",
|
|
262
|
+
VPC = "VPC"
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export interface EgressConfiguration {
|
|
266
|
+
|
|
267
|
+
EgressType?: EgressType | string;
|
|
268
|
+
|
|
269
|
+
VpcConnectorArn?: string;
|
|
270
|
+
}
|
|
271
|
+
export declare namespace EgressConfiguration {
|
|
272
|
+
|
|
273
|
+
const filterSensitiveLog: (obj: EgressConfiguration) => any;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export interface NetworkConfiguration {
|
|
277
|
+
|
|
278
|
+
EgressConfiguration?: EgressConfiguration;
|
|
279
|
+
}
|
|
280
|
+
export declare namespace NetworkConfiguration {
|
|
281
|
+
|
|
282
|
+
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
283
|
+
}
|
|
251
284
|
|
|
252
285
|
export interface AuthenticationConfiguration {
|
|
253
286
|
|
|
@@ -260,7 +293,10 @@ export declare namespace AuthenticationConfiguration {
|
|
|
260
293
|
const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
261
294
|
}
|
|
262
295
|
export declare enum Runtime {
|
|
296
|
+
CORRETTO_11 = "CORRETTO_11",
|
|
297
|
+
CORRETTO_8 = "CORRETTO_8",
|
|
263
298
|
NODEJS_12 = "NODEJS_12",
|
|
299
|
+
NODEJS_14 = "NODEJS_14",
|
|
264
300
|
PYTHON_3 = "PYTHON_3"
|
|
265
301
|
}
|
|
266
302
|
|
|
@@ -386,6 +422,8 @@ export interface CreateServiceRequest {
|
|
|
386
422
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
387
423
|
|
|
388
424
|
AutoScalingConfigurationArn?: string;
|
|
425
|
+
|
|
426
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
389
427
|
}
|
|
390
428
|
export declare namespace CreateServiceRequest {
|
|
391
429
|
|
|
@@ -440,6 +478,8 @@ export interface Service {
|
|
|
440
478
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
441
479
|
|
|
442
480
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
481
|
+
|
|
482
|
+
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
443
483
|
}
|
|
444
484
|
export declare namespace Service {
|
|
445
485
|
|
|
@@ -455,6 +495,55 @@ export declare namespace CreateServiceResponse {
|
|
|
455
495
|
|
|
456
496
|
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
457
497
|
}
|
|
498
|
+
export interface CreateVpcConnectorRequest {
|
|
499
|
+
|
|
500
|
+
VpcConnectorName: string | undefined;
|
|
501
|
+
|
|
502
|
+
Subnets: string[] | undefined;
|
|
503
|
+
|
|
504
|
+
SecurityGroups?: string[];
|
|
505
|
+
|
|
506
|
+
Tags?: Tag[];
|
|
507
|
+
}
|
|
508
|
+
export declare namespace CreateVpcConnectorRequest {
|
|
509
|
+
|
|
510
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
|
|
511
|
+
}
|
|
512
|
+
export declare enum VpcConnectorStatus {
|
|
513
|
+
ACTIVE = "ACTIVE",
|
|
514
|
+
INACTIVE = "INACTIVE"
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export interface VpcConnector {
|
|
518
|
+
|
|
519
|
+
VpcConnectorName?: string;
|
|
520
|
+
|
|
521
|
+
VpcConnectorArn?: string;
|
|
522
|
+
|
|
523
|
+
VpcConnectorRevision?: number;
|
|
524
|
+
|
|
525
|
+
Subnets?: string[];
|
|
526
|
+
|
|
527
|
+
SecurityGroups?: string[];
|
|
528
|
+
|
|
529
|
+
Status?: VpcConnectorStatus | string;
|
|
530
|
+
|
|
531
|
+
CreatedAt?: Date;
|
|
532
|
+
|
|
533
|
+
DeletedAt?: Date;
|
|
534
|
+
}
|
|
535
|
+
export declare namespace VpcConnector {
|
|
536
|
+
|
|
537
|
+
const filterSensitiveLog: (obj: VpcConnector) => any;
|
|
538
|
+
}
|
|
539
|
+
export interface CreateVpcConnectorResponse {
|
|
540
|
+
|
|
541
|
+
VpcConnector: VpcConnector | undefined;
|
|
542
|
+
}
|
|
543
|
+
export declare namespace CreateVpcConnectorResponse {
|
|
544
|
+
|
|
545
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
|
|
546
|
+
}
|
|
458
547
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
459
548
|
|
|
460
549
|
AutoScalingConfigurationArn: string | undefined;
|
|
@@ -472,10 +561,12 @@ export declare namespace DeleteAutoScalingConfigurationResponse {
|
|
|
472
561
|
const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
|
|
473
562
|
}
|
|
474
563
|
|
|
475
|
-
export
|
|
476
|
-
name: "ResourceNotFoundException";
|
|
477
|
-
$fault: "client";
|
|
564
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
565
|
+
readonly name: "ResourceNotFoundException";
|
|
566
|
+
readonly $fault: "client";
|
|
478
567
|
Message?: string;
|
|
568
|
+
|
|
569
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
479
570
|
}
|
|
480
571
|
export interface DeleteConnectionRequest {
|
|
481
572
|
|
|
@@ -511,6 +602,22 @@ export declare namespace DeleteServiceResponse {
|
|
|
511
602
|
|
|
512
603
|
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
513
604
|
}
|
|
605
|
+
export interface DeleteVpcConnectorRequest {
|
|
606
|
+
|
|
607
|
+
VpcConnectorArn: string | undefined;
|
|
608
|
+
}
|
|
609
|
+
export declare namespace DeleteVpcConnectorRequest {
|
|
610
|
+
|
|
611
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
|
|
612
|
+
}
|
|
613
|
+
export interface DeleteVpcConnectorResponse {
|
|
614
|
+
|
|
615
|
+
VpcConnector: VpcConnector | undefined;
|
|
616
|
+
}
|
|
617
|
+
export declare namespace DeleteVpcConnectorResponse {
|
|
618
|
+
|
|
619
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
|
|
620
|
+
}
|
|
514
621
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
515
622
|
|
|
516
623
|
AutoScalingConfigurationArn: string | undefined;
|
|
@@ -569,6 +676,22 @@ export declare namespace DescribeServiceResponse {
|
|
|
569
676
|
|
|
570
677
|
const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
|
|
571
678
|
}
|
|
679
|
+
export interface DescribeVpcConnectorRequest {
|
|
680
|
+
|
|
681
|
+
VpcConnectorArn: string | undefined;
|
|
682
|
+
}
|
|
683
|
+
export declare namespace DescribeVpcConnectorRequest {
|
|
684
|
+
|
|
685
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
|
|
686
|
+
}
|
|
687
|
+
export interface DescribeVpcConnectorResponse {
|
|
688
|
+
|
|
689
|
+
VpcConnector: VpcConnector | undefined;
|
|
690
|
+
}
|
|
691
|
+
export declare namespace DescribeVpcConnectorResponse {
|
|
692
|
+
|
|
693
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
|
|
694
|
+
}
|
|
572
695
|
export interface DisassociateCustomDomainRequest {
|
|
573
696
|
|
|
574
697
|
ServiceArn: string | undefined;
|
|
@@ -770,6 +893,26 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
770
893
|
|
|
771
894
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
772
895
|
}
|
|
896
|
+
export interface ListVpcConnectorsRequest {
|
|
897
|
+
|
|
898
|
+
MaxResults?: number;
|
|
899
|
+
|
|
900
|
+
NextToken?: string;
|
|
901
|
+
}
|
|
902
|
+
export declare namespace ListVpcConnectorsRequest {
|
|
903
|
+
|
|
904
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
|
|
905
|
+
}
|
|
906
|
+
export interface ListVpcConnectorsResponse {
|
|
907
|
+
|
|
908
|
+
VpcConnectors: VpcConnector[] | undefined;
|
|
909
|
+
|
|
910
|
+
NextToken?: string;
|
|
911
|
+
}
|
|
912
|
+
export declare namespace ListVpcConnectorsResponse {
|
|
913
|
+
|
|
914
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
|
|
915
|
+
}
|
|
773
916
|
export interface PauseServiceRequest {
|
|
774
917
|
|
|
775
918
|
ServiceArn: string | undefined;
|
|
@@ -865,6 +1008,8 @@ export interface UpdateServiceRequest {
|
|
|
865
1008
|
AutoScalingConfigurationArn?: string;
|
|
866
1009
|
|
|
867
1010
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
1011
|
+
|
|
1012
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
868
1013
|
}
|
|
869
1014
|
export declare namespace UpdateServiceRequest {
|
|
870
1015
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "../commands/ListVpcConnectorsCommand";
|
|
3
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListVpcConnectors(config: AppRunnerPaginationConfiguration, input: ListVpcConnectorsCommandInput, ...additionalArguments: any): Paginator<ListVpcConnectorsCommandOutput>;
|
|
@@ -4,18 +4,22 @@ import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput }
|
|
|
4
4
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "../commands/CreateAutoScalingConfigurationCommand";
|
|
5
5
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "../commands/CreateConnectionCommand";
|
|
6
6
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../commands/CreateServiceCommand";
|
|
7
|
+
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "../commands/CreateVpcConnectorCommand";
|
|
7
8
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "../commands/DeleteAutoScalingConfigurationCommand";
|
|
8
9
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "../commands/DeleteConnectionCommand";
|
|
9
10
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "../commands/DeleteServiceCommand";
|
|
11
|
+
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "../commands/DeleteVpcConnectorCommand";
|
|
10
12
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "../commands/DescribeAutoScalingConfigurationCommand";
|
|
11
13
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "../commands/DescribeCustomDomainsCommand";
|
|
12
14
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "../commands/DescribeServiceCommand";
|
|
15
|
+
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "../commands/DescribeVpcConnectorCommand";
|
|
13
16
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "../commands/DisassociateCustomDomainCommand";
|
|
14
17
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "../commands/ListAutoScalingConfigurationsCommand";
|
|
15
18
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
16
19
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
|
|
17
20
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
18
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "../commands/ListVpcConnectorsCommand";
|
|
19
23
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "../commands/PauseServiceCommand";
|
|
20
24
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "../commands/ResumeServiceCommand";
|
|
21
25
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "../commands/StartDeploymentCommand";
|
|
@@ -26,18 +30,22 @@ export declare const serializeAws_json1_0AssociateCustomDomainCommand: (input: A
|
|
|
26
30
|
export declare const serializeAws_json1_0CreateAutoScalingConfigurationCommand: (input: CreateAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
31
|
export declare const serializeAws_json1_0CreateConnectionCommand: (input: CreateConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
32
|
export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_json1_0CreateVpcConnectorCommand: (input: CreateVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
34
|
export declare const serializeAws_json1_0DeleteAutoScalingConfigurationCommand: (input: DeleteAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
35
|
export declare const serializeAws_json1_0DeleteConnectionCommand: (input: DeleteConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
36
|
export declare const serializeAws_json1_0DeleteServiceCommand: (input: DeleteServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_json1_0DeleteVpcConnectorCommand: (input: DeleteVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
38
|
export declare const serializeAws_json1_0DescribeAutoScalingConfigurationCommand: (input: DescribeAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
39
|
export declare const serializeAws_json1_0DescribeCustomDomainsCommand: (input: DescribeCustomDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
40
|
export declare const serializeAws_json1_0DescribeServiceCommand: (input: DescribeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_json1_0DescribeVpcConnectorCommand: (input: DescribeVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
42
|
export declare const serializeAws_json1_0DisassociateCustomDomainCommand: (input: DisassociateCustomDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
43
|
export declare const serializeAws_json1_0ListAutoScalingConfigurationsCommand: (input: ListAutoScalingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
44
|
export declare const serializeAws_json1_0ListConnectionsCommand: (input: ListConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
45
|
export declare const serializeAws_json1_0ListOperationsCommand: (input: ListOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
46
|
export declare const serializeAws_json1_0ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
47
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_json1_0ListVpcConnectorsCommand: (input: ListVpcConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
49
|
export declare const serializeAws_json1_0PauseServiceCommand: (input: PauseServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
50
|
export declare const serializeAws_json1_0ResumeServiceCommand: (input: ResumeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
51
|
export declare const serializeAws_json1_0StartDeploymentCommand: (input: StartDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -48,18 +56,22 @@ export declare const deserializeAws_json1_0AssociateCustomDomainCommand: (output
|
|
|
48
56
|
export declare const deserializeAws_json1_0CreateAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
49
57
|
export declare const deserializeAws_json1_0CreateConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectionCommandOutput>;
|
|
50
58
|
export declare const deserializeAws_json1_0CreateServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_json1_0CreateVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVpcConnectorCommandOutput>;
|
|
51
60
|
export declare const deserializeAws_json1_0DeleteAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
52
61
|
export declare const deserializeAws_json1_0DeleteConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionCommandOutput>;
|
|
53
62
|
export declare const deserializeAws_json1_0DeleteServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceCommandOutput>;
|
|
63
|
+
export declare const deserializeAws_json1_0DeleteVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVpcConnectorCommandOutput>;
|
|
54
64
|
export declare const deserializeAws_json1_0DescribeAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
55
65
|
export declare const deserializeAws_json1_0DescribeCustomDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCustomDomainsCommandOutput>;
|
|
56
66
|
export declare const deserializeAws_json1_0DescribeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceCommandOutput>;
|
|
67
|
+
export declare const deserializeAws_json1_0DescribeVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVpcConnectorCommandOutput>;
|
|
57
68
|
export declare const deserializeAws_json1_0DisassociateCustomDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateCustomDomainCommandOutput>;
|
|
58
69
|
export declare const deserializeAws_json1_0ListAutoScalingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
59
70
|
export declare const deserializeAws_json1_0ListConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectionsCommandOutput>;
|
|
60
71
|
export declare const deserializeAws_json1_0ListOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOperationsCommandOutput>;
|
|
61
72
|
export declare const deserializeAws_json1_0ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
|
|
62
73
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_json1_0ListVpcConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVpcConnectorsCommandOutput>;
|
|
63
75
|
export declare const deserializeAws_json1_0PauseServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PauseServiceCommandOutput>;
|
|
64
76
|
export declare const deserializeAws_json1_0ResumeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeServiceCommandOutput>;
|
|
65
77
|
export declare const deserializeAws_json1_0StartDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDeploymentCommandOutput>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppRunnerClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|