@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
|
@@ -24,6 +24,10 @@ import {
|
|
|
24
24
|
CreateVpcConnectorCommandInput,
|
|
25
25
|
CreateVpcConnectorCommandOutput,
|
|
26
26
|
} from "./commands/CreateVpcConnectorCommand";
|
|
27
|
+
import {
|
|
28
|
+
CreateVpcIngressConnectionCommandInput,
|
|
29
|
+
CreateVpcIngressConnectionCommandOutput,
|
|
30
|
+
} from "./commands/CreateVpcIngressConnectionCommand";
|
|
27
31
|
import {
|
|
28
32
|
DeleteAutoScalingConfigurationCommandInput,
|
|
29
33
|
DeleteAutoScalingConfigurationCommandOutput,
|
|
@@ -44,6 +48,10 @@ import {
|
|
|
44
48
|
DeleteVpcConnectorCommandInput,
|
|
45
49
|
DeleteVpcConnectorCommandOutput,
|
|
46
50
|
} from "./commands/DeleteVpcConnectorCommand";
|
|
51
|
+
import {
|
|
52
|
+
DeleteVpcIngressConnectionCommandInput,
|
|
53
|
+
DeleteVpcIngressConnectionCommandOutput,
|
|
54
|
+
} from "./commands/DeleteVpcIngressConnectionCommand";
|
|
47
55
|
import {
|
|
48
56
|
DescribeAutoScalingConfigurationCommandInput,
|
|
49
57
|
DescribeAutoScalingConfigurationCommandOutput,
|
|
@@ -64,6 +72,10 @@ import {
|
|
|
64
72
|
DescribeVpcConnectorCommandInput,
|
|
65
73
|
DescribeVpcConnectorCommandOutput,
|
|
66
74
|
} from "./commands/DescribeVpcConnectorCommand";
|
|
75
|
+
import {
|
|
76
|
+
DescribeVpcIngressConnectionCommandInput,
|
|
77
|
+
DescribeVpcIngressConnectionCommandOutput,
|
|
78
|
+
} from "./commands/DescribeVpcIngressConnectionCommand";
|
|
67
79
|
import {
|
|
68
80
|
DisassociateCustomDomainCommandInput,
|
|
69
81
|
DisassociateCustomDomainCommandOutput,
|
|
@@ -96,6 +108,10 @@ import {
|
|
|
96
108
|
ListVpcConnectorsCommandInput,
|
|
97
109
|
ListVpcConnectorsCommandOutput,
|
|
98
110
|
} from "./commands/ListVpcConnectorsCommand";
|
|
111
|
+
import {
|
|
112
|
+
ListVpcIngressConnectionsCommandInput,
|
|
113
|
+
ListVpcIngressConnectionsCommandOutput,
|
|
114
|
+
} from "./commands/ListVpcIngressConnectionsCommand";
|
|
99
115
|
import {
|
|
100
116
|
PauseServiceCommandInput,
|
|
101
117
|
PauseServiceCommandOutput,
|
|
@@ -120,6 +136,10 @@ import {
|
|
|
120
136
|
UpdateServiceCommandInput,
|
|
121
137
|
UpdateServiceCommandOutput,
|
|
122
138
|
} from "./commands/UpdateServiceCommand";
|
|
139
|
+
import {
|
|
140
|
+
UpdateVpcIngressConnectionCommandInput,
|
|
141
|
+
UpdateVpcIngressConnectionCommandOutput,
|
|
142
|
+
} from "./commands/UpdateVpcIngressConnectionCommand";
|
|
123
143
|
export declare class AppRunner extends AppRunnerClient {
|
|
124
144
|
associateCustomDomain(
|
|
125
145
|
args: AssociateCustomDomainCommandInput,
|
|
@@ -199,6 +219,19 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
199
219
|
options: __HttpHandlerOptions,
|
|
200
220
|
cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void
|
|
201
221
|
): void;
|
|
222
|
+
createVpcIngressConnection(
|
|
223
|
+
args: CreateVpcIngressConnectionCommandInput,
|
|
224
|
+
options?: __HttpHandlerOptions
|
|
225
|
+
): Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
226
|
+
createVpcIngressConnection(
|
|
227
|
+
args: CreateVpcIngressConnectionCommandInput,
|
|
228
|
+
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void
|
|
229
|
+
): void;
|
|
230
|
+
createVpcIngressConnection(
|
|
231
|
+
args: CreateVpcIngressConnectionCommandInput,
|
|
232
|
+
options: __HttpHandlerOptions,
|
|
233
|
+
cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void
|
|
234
|
+
): void;
|
|
202
235
|
deleteAutoScalingConfiguration(
|
|
203
236
|
args: DeleteAutoScalingConfigurationCommandInput,
|
|
204
237
|
options?: __HttpHandlerOptions
|
|
@@ -264,6 +297,19 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
264
297
|
options: __HttpHandlerOptions,
|
|
265
298
|
cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void
|
|
266
299
|
): void;
|
|
300
|
+
deleteVpcIngressConnection(
|
|
301
|
+
args: DeleteVpcIngressConnectionCommandInput,
|
|
302
|
+
options?: __HttpHandlerOptions
|
|
303
|
+
): Promise<DeleteVpcIngressConnectionCommandOutput>;
|
|
304
|
+
deleteVpcIngressConnection(
|
|
305
|
+
args: DeleteVpcIngressConnectionCommandInput,
|
|
306
|
+
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
deleteVpcIngressConnection(
|
|
309
|
+
args: DeleteVpcIngressConnectionCommandInput,
|
|
310
|
+
options: __HttpHandlerOptions,
|
|
311
|
+
cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void
|
|
312
|
+
): void;
|
|
267
313
|
describeAutoScalingConfiguration(
|
|
268
314
|
args: DescribeAutoScalingConfigurationCommandInput,
|
|
269
315
|
options?: __HttpHandlerOptions
|
|
@@ -335,6 +381,19 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
335
381
|
options: __HttpHandlerOptions,
|
|
336
382
|
cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void
|
|
337
383
|
): void;
|
|
384
|
+
describeVpcIngressConnection(
|
|
385
|
+
args: DescribeVpcIngressConnectionCommandInput,
|
|
386
|
+
options?: __HttpHandlerOptions
|
|
387
|
+
): Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
388
|
+
describeVpcIngressConnection(
|
|
389
|
+
args: DescribeVpcIngressConnectionCommandInput,
|
|
390
|
+
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void
|
|
391
|
+
): void;
|
|
392
|
+
describeVpcIngressConnection(
|
|
393
|
+
args: DescribeVpcIngressConnectionCommandInput,
|
|
394
|
+
options: __HttpHandlerOptions,
|
|
395
|
+
cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void
|
|
396
|
+
): void;
|
|
338
397
|
disassociateCustomDomain(
|
|
339
398
|
args: DisassociateCustomDomainCommandInput,
|
|
340
399
|
options?: __HttpHandlerOptions
|
|
@@ -439,6 +498,19 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
439
498
|
options: __HttpHandlerOptions,
|
|
440
499
|
cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void
|
|
441
500
|
): void;
|
|
501
|
+
listVpcIngressConnections(
|
|
502
|
+
args: ListVpcIngressConnectionsCommandInput,
|
|
503
|
+
options?: __HttpHandlerOptions
|
|
504
|
+
): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
505
|
+
listVpcIngressConnections(
|
|
506
|
+
args: ListVpcIngressConnectionsCommandInput,
|
|
507
|
+
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void
|
|
508
|
+
): void;
|
|
509
|
+
listVpcIngressConnections(
|
|
510
|
+
args: ListVpcIngressConnectionsCommandInput,
|
|
511
|
+
options: __HttpHandlerOptions,
|
|
512
|
+
cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void
|
|
513
|
+
): void;
|
|
442
514
|
pauseService(
|
|
443
515
|
args: PauseServiceCommandInput,
|
|
444
516
|
options?: __HttpHandlerOptions
|
|
@@ -517,4 +589,17 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
517
589
|
options: __HttpHandlerOptions,
|
|
518
590
|
cb: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
519
591
|
): void;
|
|
592
|
+
updateVpcIngressConnection(
|
|
593
|
+
args: UpdateVpcIngressConnectionCommandInput,
|
|
594
|
+
options?: __HttpHandlerOptions
|
|
595
|
+
): Promise<UpdateVpcIngressConnectionCommandOutput>;
|
|
596
|
+
updateVpcIngressConnection(
|
|
597
|
+
args: UpdateVpcIngressConnectionCommandInput,
|
|
598
|
+
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void
|
|
599
|
+
): void;
|
|
600
|
+
updateVpcIngressConnection(
|
|
601
|
+
args: UpdateVpcIngressConnectionCommandInput,
|
|
602
|
+
options: __HttpHandlerOptions,
|
|
603
|
+
cb: (err: any, data?: UpdateVpcIngressConnectionCommandOutput) => void
|
|
604
|
+
): void;
|
|
520
605
|
}
|
|
@@ -67,6 +67,10 @@ import {
|
|
|
67
67
|
CreateVpcConnectorCommandInput,
|
|
68
68
|
CreateVpcConnectorCommandOutput,
|
|
69
69
|
} from "./commands/CreateVpcConnectorCommand";
|
|
70
|
+
import {
|
|
71
|
+
CreateVpcIngressConnectionCommandInput,
|
|
72
|
+
CreateVpcIngressConnectionCommandOutput,
|
|
73
|
+
} from "./commands/CreateVpcIngressConnectionCommand";
|
|
70
74
|
import {
|
|
71
75
|
DeleteAutoScalingConfigurationCommandInput,
|
|
72
76
|
DeleteAutoScalingConfigurationCommandOutput,
|
|
@@ -87,6 +91,10 @@ import {
|
|
|
87
91
|
DeleteVpcConnectorCommandInput,
|
|
88
92
|
DeleteVpcConnectorCommandOutput,
|
|
89
93
|
} from "./commands/DeleteVpcConnectorCommand";
|
|
94
|
+
import {
|
|
95
|
+
DeleteVpcIngressConnectionCommandInput,
|
|
96
|
+
DeleteVpcIngressConnectionCommandOutput,
|
|
97
|
+
} from "./commands/DeleteVpcIngressConnectionCommand";
|
|
90
98
|
import {
|
|
91
99
|
DescribeAutoScalingConfigurationCommandInput,
|
|
92
100
|
DescribeAutoScalingConfigurationCommandOutput,
|
|
@@ -107,6 +115,10 @@ import {
|
|
|
107
115
|
DescribeVpcConnectorCommandInput,
|
|
108
116
|
DescribeVpcConnectorCommandOutput,
|
|
109
117
|
} from "./commands/DescribeVpcConnectorCommand";
|
|
118
|
+
import {
|
|
119
|
+
DescribeVpcIngressConnectionCommandInput,
|
|
120
|
+
DescribeVpcIngressConnectionCommandOutput,
|
|
121
|
+
} from "./commands/DescribeVpcIngressConnectionCommand";
|
|
110
122
|
import {
|
|
111
123
|
DisassociateCustomDomainCommandInput,
|
|
112
124
|
DisassociateCustomDomainCommandOutput,
|
|
@@ -139,6 +151,10 @@ import {
|
|
|
139
151
|
ListVpcConnectorsCommandInput,
|
|
140
152
|
ListVpcConnectorsCommandOutput,
|
|
141
153
|
} from "./commands/ListVpcConnectorsCommand";
|
|
154
|
+
import {
|
|
155
|
+
ListVpcIngressConnectionsCommandInput,
|
|
156
|
+
ListVpcIngressConnectionsCommandOutput,
|
|
157
|
+
} from "./commands/ListVpcIngressConnectionsCommand";
|
|
142
158
|
import {
|
|
143
159
|
PauseServiceCommandInput,
|
|
144
160
|
PauseServiceCommandOutput,
|
|
@@ -163,6 +179,10 @@ import {
|
|
|
163
179
|
UpdateServiceCommandInput,
|
|
164
180
|
UpdateServiceCommandOutput,
|
|
165
181
|
} from "./commands/UpdateServiceCommand";
|
|
182
|
+
import {
|
|
183
|
+
UpdateVpcIngressConnectionCommandInput,
|
|
184
|
+
UpdateVpcIngressConnectionCommandOutput,
|
|
185
|
+
} from "./commands/UpdateVpcIngressConnectionCommand";
|
|
166
186
|
import {
|
|
167
187
|
ClientInputEndpointParameters,
|
|
168
188
|
ClientResolvedEndpointParameters,
|
|
@@ -175,16 +195,19 @@ export declare type ServiceInputTypes =
|
|
|
175
195
|
| CreateObservabilityConfigurationCommandInput
|
|
176
196
|
| CreateServiceCommandInput
|
|
177
197
|
| CreateVpcConnectorCommandInput
|
|
198
|
+
| CreateVpcIngressConnectionCommandInput
|
|
178
199
|
| DeleteAutoScalingConfigurationCommandInput
|
|
179
200
|
| DeleteConnectionCommandInput
|
|
180
201
|
| DeleteObservabilityConfigurationCommandInput
|
|
181
202
|
| DeleteServiceCommandInput
|
|
182
203
|
| DeleteVpcConnectorCommandInput
|
|
204
|
+
| DeleteVpcIngressConnectionCommandInput
|
|
183
205
|
| DescribeAutoScalingConfigurationCommandInput
|
|
184
206
|
| DescribeCustomDomainsCommandInput
|
|
185
207
|
| DescribeObservabilityConfigurationCommandInput
|
|
186
208
|
| DescribeServiceCommandInput
|
|
187
209
|
| DescribeVpcConnectorCommandInput
|
|
210
|
+
| DescribeVpcIngressConnectionCommandInput
|
|
188
211
|
| DisassociateCustomDomainCommandInput
|
|
189
212
|
| ListAutoScalingConfigurationsCommandInput
|
|
190
213
|
| ListConnectionsCommandInput
|
|
@@ -193,12 +216,14 @@ export declare type ServiceInputTypes =
|
|
|
193
216
|
| ListServicesCommandInput
|
|
194
217
|
| ListTagsForResourceCommandInput
|
|
195
218
|
| ListVpcConnectorsCommandInput
|
|
219
|
+
| ListVpcIngressConnectionsCommandInput
|
|
196
220
|
| PauseServiceCommandInput
|
|
197
221
|
| ResumeServiceCommandInput
|
|
198
222
|
| StartDeploymentCommandInput
|
|
199
223
|
| TagResourceCommandInput
|
|
200
224
|
| UntagResourceCommandInput
|
|
201
|
-
| UpdateServiceCommandInput
|
|
225
|
+
| UpdateServiceCommandInput
|
|
226
|
+
| UpdateVpcIngressConnectionCommandInput;
|
|
202
227
|
export declare type ServiceOutputTypes =
|
|
203
228
|
| AssociateCustomDomainCommandOutput
|
|
204
229
|
| CreateAutoScalingConfigurationCommandOutput
|
|
@@ -206,16 +231,19 @@ export declare type ServiceOutputTypes =
|
|
|
206
231
|
| CreateObservabilityConfigurationCommandOutput
|
|
207
232
|
| CreateServiceCommandOutput
|
|
208
233
|
| CreateVpcConnectorCommandOutput
|
|
234
|
+
| CreateVpcIngressConnectionCommandOutput
|
|
209
235
|
| DeleteAutoScalingConfigurationCommandOutput
|
|
210
236
|
| DeleteConnectionCommandOutput
|
|
211
237
|
| DeleteObservabilityConfigurationCommandOutput
|
|
212
238
|
| DeleteServiceCommandOutput
|
|
213
239
|
| DeleteVpcConnectorCommandOutput
|
|
240
|
+
| DeleteVpcIngressConnectionCommandOutput
|
|
214
241
|
| DescribeAutoScalingConfigurationCommandOutput
|
|
215
242
|
| DescribeCustomDomainsCommandOutput
|
|
216
243
|
| DescribeObservabilityConfigurationCommandOutput
|
|
217
244
|
| DescribeServiceCommandOutput
|
|
218
245
|
| DescribeVpcConnectorCommandOutput
|
|
246
|
+
| DescribeVpcIngressConnectionCommandOutput
|
|
219
247
|
| DisassociateCustomDomainCommandOutput
|
|
220
248
|
| ListAutoScalingConfigurationsCommandOutput
|
|
221
249
|
| ListConnectionsCommandOutput
|
|
@@ -224,12 +252,14 @@ export declare type ServiceOutputTypes =
|
|
|
224
252
|
| ListServicesCommandOutput
|
|
225
253
|
| ListTagsForResourceCommandOutput
|
|
226
254
|
| ListVpcConnectorsCommandOutput
|
|
255
|
+
| ListVpcIngressConnectionsCommandOutput
|
|
227
256
|
| PauseServiceCommandOutput
|
|
228
257
|
| ResumeServiceCommandOutput
|
|
229
258
|
| StartDeploymentCommandOutput
|
|
230
259
|
| TagResourceCommandOutput
|
|
231
260
|
| UntagResourceCommandOutput
|
|
232
|
-
| UpdateServiceCommandOutput
|
|
261
|
+
| UpdateServiceCommandOutput
|
|
262
|
+
| UpdateVpcIngressConnectionCommandOutput;
|
|
233
263
|
export interface ClientDefaults
|
|
234
264
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
235
265
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AppRunnerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppRunnerClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateVpcIngressConnectionRequest,
|
|
16
|
+
CreateVpcIngressConnectionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateVpcIngressConnectionCommandInput
|
|
19
|
+
extends CreateVpcIngressConnectionRequest {}
|
|
20
|
+
export interface CreateVpcIngressConnectionCommandOutput
|
|
21
|
+
extends CreateVpcIngressConnectionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateVpcIngressConnectionCommand extends $Command<
|
|
24
|
+
CreateVpcIngressConnectionCommandInput,
|
|
25
|
+
CreateVpcIngressConnectionCommandOutput,
|
|
26
|
+
AppRunnerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateVpcIngressConnectionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateVpcIngressConnectionCommandInput,
|
|
37
|
+
CreateVpcIngressConnectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AppRunnerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppRunnerClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteVpcIngressConnectionRequest,
|
|
16
|
+
DeleteVpcIngressConnectionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteVpcIngressConnectionCommandInput
|
|
19
|
+
extends DeleteVpcIngressConnectionRequest {}
|
|
20
|
+
export interface DeleteVpcIngressConnectionCommandOutput
|
|
21
|
+
extends DeleteVpcIngressConnectionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteVpcIngressConnectionCommand extends $Command<
|
|
24
|
+
DeleteVpcIngressConnectionCommandInput,
|
|
25
|
+
DeleteVpcIngressConnectionCommandOutput,
|
|
26
|
+
AppRunnerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteVpcIngressConnectionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteVpcIngressConnectionCommandInput,
|
|
37
|
+
DeleteVpcIngressConnectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AppRunnerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppRunnerClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeVpcIngressConnectionRequest,
|
|
16
|
+
DescribeVpcIngressConnectionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DescribeVpcIngressConnectionCommandInput
|
|
19
|
+
extends DescribeVpcIngressConnectionRequest {}
|
|
20
|
+
export interface DescribeVpcIngressConnectionCommandOutput
|
|
21
|
+
extends DescribeVpcIngressConnectionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeVpcIngressConnectionCommand extends $Command<
|
|
24
|
+
DescribeVpcIngressConnectionCommandInput,
|
|
25
|
+
DescribeVpcIngressConnectionCommandOutput,
|
|
26
|
+
AppRunnerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeVpcIngressConnectionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeVpcIngressConnectionCommandInput,
|
|
37
|
+
DescribeVpcIngressConnectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AppRunnerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppRunnerClient";
|
|
14
|
+
import {
|
|
15
|
+
ListVpcIngressConnectionsRequest,
|
|
16
|
+
ListVpcIngressConnectionsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListVpcIngressConnectionsCommandInput
|
|
19
|
+
extends ListVpcIngressConnectionsRequest {}
|
|
20
|
+
export interface ListVpcIngressConnectionsCommandOutput
|
|
21
|
+
extends ListVpcIngressConnectionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListVpcIngressConnectionsCommand extends $Command<
|
|
24
|
+
ListVpcIngressConnectionsCommandInput,
|
|
25
|
+
ListVpcIngressConnectionsCommandOutput,
|
|
26
|
+
AppRunnerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListVpcIngressConnectionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListVpcIngressConnectionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListVpcIngressConnectionsCommandInput,
|
|
37
|
+
ListVpcIngressConnectionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AppRunnerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AppRunnerClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateVpcIngressConnectionRequest,
|
|
16
|
+
UpdateVpcIngressConnectionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UpdateVpcIngressConnectionCommandInput
|
|
19
|
+
extends UpdateVpcIngressConnectionRequest {}
|
|
20
|
+
export interface UpdateVpcIngressConnectionCommandOutput
|
|
21
|
+
extends UpdateVpcIngressConnectionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateVpcIngressConnectionCommand extends $Command<
|
|
24
|
+
UpdateVpcIngressConnectionCommandInput,
|
|
25
|
+
UpdateVpcIngressConnectionCommandOutput,
|
|
26
|
+
AppRunnerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateVpcIngressConnectionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateVpcIngressConnectionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppRunnerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateVpcIngressConnectionCommandInput,
|
|
37
|
+
UpdateVpcIngressConnectionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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";
|