@aws-sdk/client-apprunner 3.199.0 → 3.200.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 +11 -0
- package/dist-cjs/AppRunner.js +75 -0
- package/dist-cjs/commands/CreateVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/DescribeVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/ListVpcIngressConnectionsCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +78 -3
- package/dist-cjs/pagination/ListVpcIngressConnectionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +416 -2
- package/dist-es/AppRunner.js +75 -0
- package/dist-es/commands/CreateVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/DeleteVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/DescribeVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/ListVpcIngressConnectionsCommand.js +42 -0
- package/dist-es/commands/UpdateVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +59 -0
- package/dist-es/pagination/ListVpcIngressConnectionsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +404 -0
- package/dist-types/AppRunner.d.ts +79 -0
- package/dist-types/AppRunnerClient.d.ts +7 -2
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +37 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +60 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +37 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +330 -1
- package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +15 -0
- package/dist-types/ts3.4/AppRunner.d.ts +85 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcIngressConnectionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -1
- package/dist-types/ts3.4/pagination/ListVpcIngressConnectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +28 -28
|
@@ -6,16 +6,19 @@ import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./c
|
|
|
6
6
|
import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput } from "./commands/CreateObservabilityConfigurationCommand";
|
|
7
7
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
8
8
|
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
9
|
+
import { CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput } from "./commands/CreateVpcIngressConnectionCommand";
|
|
9
10
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
10
11
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
11
12
|
import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput } from "./commands/DeleteObservabilityConfigurationCommand";
|
|
12
13
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
13
14
|
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
15
|
+
import { DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput } from "./commands/DeleteVpcIngressConnectionCommand";
|
|
14
16
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
15
17
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
16
18
|
import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput } from "./commands/DescribeObservabilityConfigurationCommand";
|
|
17
19
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
18
20
|
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
21
|
+
import { DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput } from "./commands/DescribeVpcIngressConnectionCommand";
|
|
19
22
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
20
23
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
21
24
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
@@ -24,12 +27,14 @@ import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./comma
|
|
|
24
27
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
25
28
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
26
29
|
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
|
|
30
|
+
import { ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput } from "./commands/ListVpcIngressConnectionsCommand";
|
|
27
31
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
|
|
28
32
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
|
|
29
33
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
30
34
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
35
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
36
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
37
|
+
import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput } from "./commands/UpdateVpcIngressConnectionCommand";
|
|
33
38
|
/**
|
|
34
39
|
* <fullname>App Runner</fullname>
|
|
35
40
|
*
|
|
@@ -114,6 +119,12 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
114
119
|
createVpcConnector(args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcConnectorCommandOutput>;
|
|
115
120
|
createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
116
121
|
createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
122
|
+
/**
|
|
123
|
+
* <p>Create an App Runner VPC Ingress Connection resource. App Runner requires this resource when you want to associate your App Runner service with an Amazon VPC endpoint.</p>
|
|
124
|
+
*/
|
|
125
|
+
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
126
|
+
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
127
|
+
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
117
128
|
/**
|
|
118
129
|
* <p>Delete an App Runner automatic scaling configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
119
130
|
* configuration that's used by one or more App Runner services.</p>
|
|
@@ -139,6 +150,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
139
150
|
* <p>Delete an App Runner service.</p>
|
|
140
151
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
141
152
|
* call to track the operation's progress.</p>
|
|
153
|
+
* <note>
|
|
154
|
+
* <p>Make sure that you don't have any active VPCIngressConnections associated with the service you want to delete.
|
|
155
|
+
* </p>
|
|
156
|
+
* </note>
|
|
142
157
|
*/
|
|
143
158
|
deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
|
|
144
159
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
@@ -150,6 +165,35 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
150
165
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcConnectorCommandOutput>;
|
|
151
166
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
152
167
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* <p>Delete an App Runner VPC Ingress Connection resource that's associated with an App Runner service. The VPC Ingress Connection must be in one of the following states to be deleted:
|
|
170
|
+
* </p>
|
|
171
|
+
* <ul>
|
|
172
|
+
* <li>
|
|
173
|
+
* <p>
|
|
174
|
+
* <code>AVAILABLE</code>
|
|
175
|
+
* </p>
|
|
176
|
+
* </li>
|
|
177
|
+
* <li>
|
|
178
|
+
* <p>
|
|
179
|
+
* <code>FAILED_CREATION</code>
|
|
180
|
+
* </p>
|
|
181
|
+
* </li>
|
|
182
|
+
* <li>
|
|
183
|
+
* <p>
|
|
184
|
+
* <code>FAILED_UPDATE</code>
|
|
185
|
+
* </p>
|
|
186
|
+
* </li>
|
|
187
|
+
* <li>
|
|
188
|
+
* <p>
|
|
189
|
+
* <code>FAILED_DELETION</code>
|
|
190
|
+
* </p>
|
|
191
|
+
* </li>
|
|
192
|
+
* </ul>
|
|
193
|
+
*/
|
|
194
|
+
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcIngressConnectionCommandOutput>;
|
|
195
|
+
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
196
|
+
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
153
197
|
/**
|
|
154
198
|
* <p>Return a full description of an App Runner automatic scaling configuration resource.</p>
|
|
155
199
|
*/
|
|
@@ -180,6 +224,12 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
180
224
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
|
|
181
225
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
182
226
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* <p>Return a full description of an App Runner VPC Ingress Connection resource.</p>
|
|
229
|
+
*/
|
|
230
|
+
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
231
|
+
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
232
|
+
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
183
233
|
/**
|
|
184
234
|
* <p>Disassociate a custom domain name from an App Runner service.</p>
|
|
185
235
|
* <p>Certificates tracking domain validity are associated with a custom domain and are stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS
|
|
@@ -241,6 +291,12 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
241
291
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
|
|
242
292
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
243
293
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
294
|
+
/**
|
|
295
|
+
* <p>Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.</p>
|
|
296
|
+
*/
|
|
297
|
+
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
298
|
+
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
299
|
+
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
244
300
|
/**
|
|
245
301
|
* <p>Pause an active App Runner service. App Runner reduces compute capacity for the service to zero and loses state (for example, ephemeral storage is
|
|
246
302
|
* removed).</p>
|
|
@@ -292,4 +348,27 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
292
348
|
updateService(args: UpdateServiceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceCommandOutput>;
|
|
293
349
|
updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
294
350
|
updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
351
|
+
/**
|
|
352
|
+
* <p>Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection must be in one of the following states to be updated:</p>
|
|
353
|
+
* <ul>
|
|
354
|
+
* <li>
|
|
355
|
+
* <p>
|
|
356
|
+
* AVAILABLE
|
|
357
|
+
* </p>
|
|
358
|
+
* </li>
|
|
359
|
+
* <li>
|
|
360
|
+
* <p>
|
|
361
|
+
* FAILED_CREATION
|
|
362
|
+
* </p>
|
|
363
|
+
* </li>
|
|
364
|
+
* <li>
|
|
365
|
+
* <p>
|
|
366
|
+
* FAILED_UPDATE
|
|
367
|
+
* </p>
|
|
368
|
+
* </li>
|
|
369
|
+
* </ul>
|
|
370
|
+
*/
|
|
371
|
+
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVpcIngressConnectionCommandOutput>;
|
|
372
|
+
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void): void;
|
|
373
|
+
updateVpcIngressConnection(args: UpdateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void): void;
|
|
295
374
|
}
|
|
@@ -13,16 +13,19 @@ import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./c
|
|
|
13
13
|
import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput } from "./commands/CreateObservabilityConfigurationCommand";
|
|
14
14
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
15
15
|
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
16
|
+
import { CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput } from "./commands/CreateVpcIngressConnectionCommand";
|
|
16
17
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
17
18
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
18
19
|
import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput } from "./commands/DeleteObservabilityConfigurationCommand";
|
|
19
20
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
20
21
|
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
22
|
+
import { DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput } from "./commands/DeleteVpcIngressConnectionCommand";
|
|
21
23
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
22
24
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
23
25
|
import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput } from "./commands/DescribeObservabilityConfigurationCommand";
|
|
24
26
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
25
27
|
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
28
|
+
import { DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput } from "./commands/DescribeVpcIngressConnectionCommand";
|
|
26
29
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
27
30
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
28
31
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
@@ -31,15 +34,17 @@ import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./comma
|
|
|
31
34
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
32
35
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
33
36
|
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
|
|
37
|
+
import { ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput } from "./commands/ListVpcIngressConnectionsCommand";
|
|
34
38
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
|
|
35
39
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
|
|
36
40
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
37
41
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
38
42
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
39
43
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
44
|
+
import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput } from "./commands/UpdateVpcIngressConnectionCommand";
|
|
40
45
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
41
|
-
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateObservabilityConfigurationCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteObservabilityConfigurationCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeObservabilityConfigurationCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListObservabilityConfigurationsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
42
|
-
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateObservabilityConfigurationCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteObservabilityConfigurationCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeObservabilityConfigurationCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListObservabilityConfigurationsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
46
|
+
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateObservabilityConfigurationCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | CreateVpcIngressConnectionCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteObservabilityConfigurationCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DeleteVpcIngressConnectionCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeObservabilityConfigurationCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DescribeVpcIngressConnectionCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListObservabilityConfigurationsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | ListVpcIngressConnectionsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput | UpdateVpcIngressConnectionCommandInput;
|
|
47
|
+
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateObservabilityConfigurationCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | CreateVpcIngressConnectionCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteObservabilityConfigurationCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DeleteVpcIngressConnectionCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeObservabilityConfigurationCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DescribeVpcIngressConnectionCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListObservabilityConfigurationsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | ListVpcIngressConnectionsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput | UpdateVpcIngressConnectionCommandOutput;
|
|
43
48
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
49
|
/**
|
|
45
50
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
|
+
import { CreateVpcIngressConnectionRequest, CreateVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
|
+
export interface CreateVpcIngressConnectionCommandInput extends CreateVpcIngressConnectionRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngressConnectionResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Create an App Runner VPC Ingress Connection resource. App Runner requires this resource when you want to associate your App Runner service with an Amazon VPC endpoint.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { AppRunnerClient, CreateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
|
|
16
|
+
* // const { AppRunnerClient, CreateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
|
|
17
|
+
* const client = new AppRunnerClient(config);
|
|
18
|
+
* const command = new CreateVpcIngressConnectionCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link CreateVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link CreateVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class CreateVpcIngressConnectionCommand extends $Command<CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
28
|
+
readonly input: CreateVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateVpcIngressConnectionCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -11,6 +11,10 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
|
|
|
11
11
|
* <p>Delete an App Runner service.</p>
|
|
12
12
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
13
13
|
* call to track the operation's progress.</p>
|
|
14
|
+
* <note>
|
|
15
|
+
* <p>Make sure that you don't have any active VPCIngressConnections associated with the service you want to delete.
|
|
16
|
+
* </p>
|
|
17
|
+
* </note>
|
|
14
18
|
* @example
|
|
15
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
20
|
* ```javascript
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
|
+
import { DeleteVpcIngressConnectionRequest, DeleteVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
|
+
export interface DeleteVpcIngressConnectionCommandInput extends DeleteVpcIngressConnectionRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngressConnectionResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Delete an App Runner VPC Ingress Connection resource that's associated with an App Runner service. The VPC Ingress Connection must be in one of the following states to be deleted:
|
|
12
|
+
* </p>
|
|
13
|
+
* <ul>
|
|
14
|
+
* <li>
|
|
15
|
+
* <p>
|
|
16
|
+
* <code>AVAILABLE</code>
|
|
17
|
+
* </p>
|
|
18
|
+
* </li>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>
|
|
21
|
+
* <code>FAILED_CREATION</code>
|
|
22
|
+
* </p>
|
|
23
|
+
* </li>
|
|
24
|
+
* <li>
|
|
25
|
+
* <p>
|
|
26
|
+
* <code>FAILED_UPDATE</code>
|
|
27
|
+
* </p>
|
|
28
|
+
* </li>
|
|
29
|
+
* <li>
|
|
30
|
+
* <p>
|
|
31
|
+
* <code>FAILED_DELETION</code>
|
|
32
|
+
* </p>
|
|
33
|
+
* </li>
|
|
34
|
+
* </ul>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { AppRunnerClient, DeleteVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
|
|
39
|
+
* // const { AppRunnerClient, DeleteVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
|
|
40
|
+
* const client = new AppRunnerClient(config);
|
|
41
|
+
* const command = new DeleteVpcIngressConnectionCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @see {@link DeleteVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
46
|
+
* @see {@link DeleteVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
47
|
+
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
export declare class DeleteVpcIngressConnectionCommand extends $Command<DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
51
|
+
readonly input: DeleteVpcIngressConnectionCommandInput;
|
|
52
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
constructor(input: DeleteVpcIngressConnectionCommandInput);
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput>;
|
|
58
|
+
private serialize;
|
|
59
|
+
private deserialize;
|
|
60
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
|
+
import { DescribeVpcIngressConnectionRequest, DescribeVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
|
+
export interface DescribeVpcIngressConnectionCommandInput extends DescribeVpcIngressConnectionRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DescribeVpcIngressConnectionCommandOutput extends DescribeVpcIngressConnectionResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Return a full description of an App Runner VPC Ingress Connection resource.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { AppRunnerClient, DescribeVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
|
|
16
|
+
* // const { AppRunnerClient, DescribeVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
|
|
17
|
+
* const client = new AppRunnerClient(config);
|
|
18
|
+
* const command = new DescribeVpcIngressConnectionCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link DescribeVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link DescribeVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class DescribeVpcIngressConnectionCommand extends $Command<DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
28
|
+
readonly input: DescribeVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeVpcIngressConnectionCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVpcIngressConnectionCommandInput, DescribeVpcIngressConnectionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
|
+
import { ListVpcIngressConnectionsRequest, ListVpcIngressConnectionsResponse } from "../models/models_0";
|
|
6
|
+
export interface ListVpcIngressConnectionsCommandInput extends ListVpcIngressConnectionsRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressConnectionsResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { AppRunnerClient, ListVpcIngressConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
|
|
16
|
+
* // const { AppRunnerClient, ListVpcIngressConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
|
|
17
|
+
* const client = new AppRunnerClient(config);
|
|
18
|
+
* const command = new ListVpcIngressConnectionsCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link ListVpcIngressConnectionsCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link ListVpcIngressConnectionsCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class ListVpcIngressConnectionsCommand extends $Command<ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput, AppRunnerClientResolvedConfig> {
|
|
28
|
+
readonly input: ListVpcIngressConnectionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListVpcIngressConnectionsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
|
+
import { UpdateVpcIngressConnectionRequest, UpdateVpcIngressConnectionResponse } from "../models/models_0";
|
|
6
|
+
export interface UpdateVpcIngressConnectionCommandInput extends UpdateVpcIngressConnectionRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngressConnectionResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection must be in one of the following states to be updated:</p>
|
|
12
|
+
* <ul>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>
|
|
15
|
+
* AVAILABLE
|
|
16
|
+
* </p>
|
|
17
|
+
* </li>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>
|
|
20
|
+
* FAILED_CREATION
|
|
21
|
+
* </p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>
|
|
25
|
+
* FAILED_UPDATE
|
|
26
|
+
* </p>
|
|
27
|
+
* </li>
|
|
28
|
+
* </ul>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { AppRunnerClient, UpdateVpcIngressConnectionCommand } from "@aws-sdk/client-apprunner"; // ES Modules import
|
|
33
|
+
* // const { AppRunnerClient, UpdateVpcIngressConnectionCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import
|
|
34
|
+
* const client = new AppRunnerClient(config);
|
|
35
|
+
* const command = new UpdateVpcIngressConnectionCommand(input);
|
|
36
|
+
* const response = await client.send(command);
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @see {@link UpdateVpcIngressConnectionCommandInput} for command's `input` shape.
|
|
40
|
+
* @see {@link UpdateVpcIngressConnectionCommandOutput} for command's `response` shape.
|
|
41
|
+
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
export declare class UpdateVpcIngressConnectionCommand extends $Command<UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
45
|
+
readonly input: UpdateVpcIngressConnectionCommandInput;
|
|
46
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
constructor(input: UpdateVpcIngressConnectionCommandInput);
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput>;
|
|
52
|
+
private serialize;
|
|
53
|
+
private deserialize;
|
|
54
|
+
}
|
|
@@ -4,16 +4,19 @@ export * from "./CreateConnectionCommand";
|
|
|
4
4
|
export * from "./CreateObservabilityConfigurationCommand";
|
|
5
5
|
export * from "./CreateServiceCommand";
|
|
6
6
|
export * from "./CreateVpcConnectorCommand";
|
|
7
|
+
export * from "./CreateVpcIngressConnectionCommand";
|
|
7
8
|
export * from "./DeleteAutoScalingConfigurationCommand";
|
|
8
9
|
export * from "./DeleteConnectionCommand";
|
|
9
10
|
export * from "./DeleteObservabilityConfigurationCommand";
|
|
10
11
|
export * from "./DeleteServiceCommand";
|
|
11
12
|
export * from "./DeleteVpcConnectorCommand";
|
|
13
|
+
export * from "./DeleteVpcIngressConnectionCommand";
|
|
12
14
|
export * from "./DescribeAutoScalingConfigurationCommand";
|
|
13
15
|
export * from "./DescribeCustomDomainsCommand";
|
|
14
16
|
export * from "./DescribeObservabilityConfigurationCommand";
|
|
15
17
|
export * from "./DescribeServiceCommand";
|
|
16
18
|
export * from "./DescribeVpcConnectorCommand";
|
|
19
|
+
export * from "./DescribeVpcIngressConnectionCommand";
|
|
17
20
|
export * from "./DisassociateCustomDomainCommand";
|
|
18
21
|
export * from "./ListAutoScalingConfigurationsCommand";
|
|
19
22
|
export * from "./ListConnectionsCommand";
|
|
@@ -22,9 +25,11 @@ export * from "./ListOperationsCommand";
|
|
|
22
25
|
export * from "./ListServicesCommand";
|
|
23
26
|
export * from "./ListTagsForResourceCommand";
|
|
24
27
|
export * from "./ListVpcConnectorsCommand";
|
|
28
|
+
export * from "./ListVpcIngressConnectionsCommand";
|
|
25
29
|
export * from "./PauseServiceCommand";
|
|
26
30
|
export * from "./ResumeServiceCommand";
|
|
27
31
|
export * from "./StartDeploymentCommand";
|
|
28
32
|
export * from "./TagResourceCommand";
|
|
29
33
|
export * from "./UntagResourceCommand";
|
|
30
34
|
export * from "./UpdateServiceCommand";
|
|
35
|
+
export * from "./UpdateVpcIngressConnectionCommand";
|