@aws-sdk/client-apprunner 3.198.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 +22 -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 +82 -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 +63 -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 +335 -2
- 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 +133 -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 +29 -29
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-apprunner:** This release adds support for private App Runner services. Services may now be configured to be made private and only accessible from a VPC. The changes include a new VpcIngressConnection resource and several new and modified APIs. ([cce87ac](https://github.com/aws/aws-sdk-js-v3/commit/cce87acf067b146e3d2107563cc16c48a8c53995))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **client-apprunner:** AWS App Runner adds .NET 6, Go 1, PHP 8.1 and Ruby 3.1 runtimes. ([12cc3bc](https://github.com/aws/aws-sdk-js-v3/commit/12cc3bcc2c087cd3e07ac4d92981794d960d2839))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @aws-sdk/client-apprunner
|
package/dist-cjs/AppRunner.js
CHANGED
|
@@ -8,16 +8,19 @@ const CreateConnectionCommand_1 = require("./commands/CreateConnectionCommand");
|
|
|
8
8
|
const CreateObservabilityConfigurationCommand_1 = require("./commands/CreateObservabilityConfigurationCommand");
|
|
9
9
|
const CreateServiceCommand_1 = require("./commands/CreateServiceCommand");
|
|
10
10
|
const CreateVpcConnectorCommand_1 = require("./commands/CreateVpcConnectorCommand");
|
|
11
|
+
const CreateVpcIngressConnectionCommand_1 = require("./commands/CreateVpcIngressConnectionCommand");
|
|
11
12
|
const DeleteAutoScalingConfigurationCommand_1 = require("./commands/DeleteAutoScalingConfigurationCommand");
|
|
12
13
|
const DeleteConnectionCommand_1 = require("./commands/DeleteConnectionCommand");
|
|
13
14
|
const DeleteObservabilityConfigurationCommand_1 = require("./commands/DeleteObservabilityConfigurationCommand");
|
|
14
15
|
const DeleteServiceCommand_1 = require("./commands/DeleteServiceCommand");
|
|
15
16
|
const DeleteVpcConnectorCommand_1 = require("./commands/DeleteVpcConnectorCommand");
|
|
17
|
+
const DeleteVpcIngressConnectionCommand_1 = require("./commands/DeleteVpcIngressConnectionCommand");
|
|
16
18
|
const DescribeAutoScalingConfigurationCommand_1 = require("./commands/DescribeAutoScalingConfigurationCommand");
|
|
17
19
|
const DescribeCustomDomainsCommand_1 = require("./commands/DescribeCustomDomainsCommand");
|
|
18
20
|
const DescribeObservabilityConfigurationCommand_1 = require("./commands/DescribeObservabilityConfigurationCommand");
|
|
19
21
|
const DescribeServiceCommand_1 = require("./commands/DescribeServiceCommand");
|
|
20
22
|
const DescribeVpcConnectorCommand_1 = require("./commands/DescribeVpcConnectorCommand");
|
|
23
|
+
const DescribeVpcIngressConnectionCommand_1 = require("./commands/DescribeVpcIngressConnectionCommand");
|
|
21
24
|
const DisassociateCustomDomainCommand_1 = require("./commands/DisassociateCustomDomainCommand");
|
|
22
25
|
const ListAutoScalingConfigurationsCommand_1 = require("./commands/ListAutoScalingConfigurationsCommand");
|
|
23
26
|
const ListConnectionsCommand_1 = require("./commands/ListConnectionsCommand");
|
|
@@ -26,12 +29,14 @@ const ListOperationsCommand_1 = require("./commands/ListOperationsCommand");
|
|
|
26
29
|
const ListServicesCommand_1 = require("./commands/ListServicesCommand");
|
|
27
30
|
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
28
31
|
const ListVpcConnectorsCommand_1 = require("./commands/ListVpcConnectorsCommand");
|
|
32
|
+
const ListVpcIngressConnectionsCommand_1 = require("./commands/ListVpcIngressConnectionsCommand");
|
|
29
33
|
const PauseServiceCommand_1 = require("./commands/PauseServiceCommand");
|
|
30
34
|
const ResumeServiceCommand_1 = require("./commands/ResumeServiceCommand");
|
|
31
35
|
const StartDeploymentCommand_1 = require("./commands/StartDeploymentCommand");
|
|
32
36
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
33
37
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
34
38
|
const UpdateServiceCommand_1 = require("./commands/UpdateServiceCommand");
|
|
39
|
+
const UpdateVpcIngressConnectionCommand_1 = require("./commands/UpdateVpcIngressConnectionCommand");
|
|
35
40
|
class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
36
41
|
associateCustomDomain(args, optionsOrCb, cb) {
|
|
37
42
|
const command = new AssociateCustomDomainCommand_1.AssociateCustomDomainCommand(args);
|
|
@@ -117,6 +122,20 @@ class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
|
117
122
|
return this.send(command, optionsOrCb);
|
|
118
123
|
}
|
|
119
124
|
}
|
|
125
|
+
createVpcIngressConnection(args, optionsOrCb, cb) {
|
|
126
|
+
const command = new CreateVpcIngressConnectionCommand_1.CreateVpcIngressConnectionCommand(args);
|
|
127
|
+
if (typeof optionsOrCb === "function") {
|
|
128
|
+
this.send(command, optionsOrCb);
|
|
129
|
+
}
|
|
130
|
+
else if (typeof cb === "function") {
|
|
131
|
+
if (typeof optionsOrCb !== "object")
|
|
132
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
133
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
return this.send(command, optionsOrCb);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
120
139
|
deleteAutoScalingConfiguration(args, optionsOrCb, cb) {
|
|
121
140
|
const command = new DeleteAutoScalingConfigurationCommand_1.DeleteAutoScalingConfigurationCommand(args);
|
|
122
141
|
if (typeof optionsOrCb === "function") {
|
|
@@ -187,6 +206,20 @@ class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
|
187
206
|
return this.send(command, optionsOrCb);
|
|
188
207
|
}
|
|
189
208
|
}
|
|
209
|
+
deleteVpcIngressConnection(args, optionsOrCb, cb) {
|
|
210
|
+
const command = new DeleteVpcIngressConnectionCommand_1.DeleteVpcIngressConnectionCommand(args);
|
|
211
|
+
if (typeof optionsOrCb === "function") {
|
|
212
|
+
this.send(command, optionsOrCb);
|
|
213
|
+
}
|
|
214
|
+
else if (typeof cb === "function") {
|
|
215
|
+
if (typeof optionsOrCb !== "object")
|
|
216
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
217
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
218
|
+
}
|
|
219
|
+
else {
|
|
220
|
+
return this.send(command, optionsOrCb);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
190
223
|
describeAutoScalingConfiguration(args, optionsOrCb, cb) {
|
|
191
224
|
const command = new DescribeAutoScalingConfigurationCommand_1.DescribeAutoScalingConfigurationCommand(args);
|
|
192
225
|
if (typeof optionsOrCb === "function") {
|
|
@@ -257,6 +290,20 @@ class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
|
257
290
|
return this.send(command, optionsOrCb);
|
|
258
291
|
}
|
|
259
292
|
}
|
|
293
|
+
describeVpcIngressConnection(args, optionsOrCb, cb) {
|
|
294
|
+
const command = new DescribeVpcIngressConnectionCommand_1.DescribeVpcIngressConnectionCommand(args);
|
|
295
|
+
if (typeof optionsOrCb === "function") {
|
|
296
|
+
this.send(command, optionsOrCb);
|
|
297
|
+
}
|
|
298
|
+
else if (typeof cb === "function") {
|
|
299
|
+
if (typeof optionsOrCb !== "object")
|
|
300
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
301
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
302
|
+
}
|
|
303
|
+
else {
|
|
304
|
+
return this.send(command, optionsOrCb);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
260
307
|
disassociateCustomDomain(args, optionsOrCb, cb) {
|
|
261
308
|
const command = new DisassociateCustomDomainCommand_1.DisassociateCustomDomainCommand(args);
|
|
262
309
|
if (typeof optionsOrCb === "function") {
|
|
@@ -369,6 +416,20 @@ class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
|
369
416
|
return this.send(command, optionsOrCb);
|
|
370
417
|
}
|
|
371
418
|
}
|
|
419
|
+
listVpcIngressConnections(args, optionsOrCb, cb) {
|
|
420
|
+
const command = new ListVpcIngressConnectionsCommand_1.ListVpcIngressConnectionsCommand(args);
|
|
421
|
+
if (typeof optionsOrCb === "function") {
|
|
422
|
+
this.send(command, optionsOrCb);
|
|
423
|
+
}
|
|
424
|
+
else if (typeof cb === "function") {
|
|
425
|
+
if (typeof optionsOrCb !== "object")
|
|
426
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
427
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
428
|
+
}
|
|
429
|
+
else {
|
|
430
|
+
return this.send(command, optionsOrCb);
|
|
431
|
+
}
|
|
432
|
+
}
|
|
372
433
|
pauseService(args, optionsOrCb, cb) {
|
|
373
434
|
const command = new PauseServiceCommand_1.PauseServiceCommand(args);
|
|
374
435
|
if (typeof optionsOrCb === "function") {
|
|
@@ -453,5 +514,19 @@ class AppRunner extends AppRunnerClient_1.AppRunnerClient {
|
|
|
453
514
|
return this.send(command, optionsOrCb);
|
|
454
515
|
}
|
|
455
516
|
}
|
|
517
|
+
updateVpcIngressConnection(args, optionsOrCb, cb) {
|
|
518
|
+
const command = new UpdateVpcIngressConnectionCommand_1.UpdateVpcIngressConnectionCommand(args);
|
|
519
|
+
if (typeof optionsOrCb === "function") {
|
|
520
|
+
this.send(command, optionsOrCb);
|
|
521
|
+
}
|
|
522
|
+
else if (typeof cb === "function") {
|
|
523
|
+
if (typeof optionsOrCb !== "object")
|
|
524
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
525
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
526
|
+
}
|
|
527
|
+
else {
|
|
528
|
+
return this.send(command, optionsOrCb);
|
|
529
|
+
}
|
|
530
|
+
}
|
|
456
531
|
}
|
|
457
532
|
exports.AppRunner = AppRunner;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateVpcIngressConnectionCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class CreateVpcIngressConnectionCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateVpcIngressConnectionCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "AppRunnerClient";
|
|
28
|
+
const commandName = "CreateVpcIngressConnectionCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.CreateVpcIngressConnectionRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.CreateVpcIngressConnectionResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0CreateVpcIngressConnectionCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0CreateVpcIngressConnectionCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.CreateVpcIngressConnectionCommand = CreateVpcIngressConnectionCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteVpcIngressConnectionCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class DeleteVpcIngressConnectionCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteVpcIngressConnectionCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "AppRunnerClient";
|
|
28
|
+
const commandName = "DeleteVpcIngressConnectionCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.DeleteVpcIngressConnectionRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.DeleteVpcIngressConnectionResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0DeleteVpcIngressConnectionCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0DeleteVpcIngressConnectionCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.DeleteVpcIngressConnectionCommand = DeleteVpcIngressConnectionCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeVpcIngressConnectionCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class DescribeVpcIngressConnectionCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeVpcIngressConnectionCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "AppRunnerClient";
|
|
28
|
+
const commandName = "DescribeVpcIngressConnectionCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.DescribeVpcIngressConnectionRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.DescribeVpcIngressConnectionResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0DescribeVpcIngressConnectionCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0DescribeVpcIngressConnectionCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.DescribeVpcIngressConnectionCommand = DescribeVpcIngressConnectionCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListVpcIngressConnectionsCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class ListVpcIngressConnectionsCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListVpcIngressConnectionsCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "AppRunnerClient";
|
|
28
|
+
const commandName = "ListVpcIngressConnectionsCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.ListVpcIngressConnectionsRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.ListVpcIngressConnectionsResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0ListVpcIngressConnectionsCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0ListVpcIngressConnectionsCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.ListVpcIngressConnectionsCommand = ListVpcIngressConnectionsCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateVpcIngressConnectionCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
|
|
9
|
+
class UpdateVpcIngressConnectionCommand extends smithy_client_1.Command {
|
|
10
|
+
constructor(input) {
|
|
11
|
+
super();
|
|
12
|
+
this.input = input;
|
|
13
|
+
}
|
|
14
|
+
static getEndpointParameterInstructions() {
|
|
15
|
+
return {
|
|
16
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
17
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
18
|
+
Region: { type: "builtInParams", name: "region" },
|
|
19
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateVpcIngressConnectionCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "AppRunnerClient";
|
|
28
|
+
const commandName = "UpdateVpcIngressConnectionCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.UpdateVpcIngressConnectionRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: models_0_1.UpdateVpcIngressConnectionResponseFilterSensitiveLog,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_json1_0_1.serializeAws_json1_0UpdateVpcIngressConnectionCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_json1_0_1.deserializeAws_json1_0UpdateVpcIngressConnectionCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.UpdateVpcIngressConnectionCommand = UpdateVpcIngressConnectionCommand;
|
|
@@ -7,16 +7,19 @@ tslib_1.__exportStar(require("./CreateConnectionCommand"), exports);
|
|
|
7
7
|
tslib_1.__exportStar(require("./CreateObservabilityConfigurationCommand"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./CreateServiceCommand"), exports);
|
|
9
9
|
tslib_1.__exportStar(require("./CreateVpcConnectorCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateVpcIngressConnectionCommand"), exports);
|
|
10
11
|
tslib_1.__exportStar(require("./DeleteAutoScalingConfigurationCommand"), exports);
|
|
11
12
|
tslib_1.__exportStar(require("./DeleteConnectionCommand"), exports);
|
|
12
13
|
tslib_1.__exportStar(require("./DeleteObservabilityConfigurationCommand"), exports);
|
|
13
14
|
tslib_1.__exportStar(require("./DeleteServiceCommand"), exports);
|
|
14
15
|
tslib_1.__exportStar(require("./DeleteVpcConnectorCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteVpcIngressConnectionCommand"), exports);
|
|
15
17
|
tslib_1.__exportStar(require("./DescribeAutoScalingConfigurationCommand"), exports);
|
|
16
18
|
tslib_1.__exportStar(require("./DescribeCustomDomainsCommand"), exports);
|
|
17
19
|
tslib_1.__exportStar(require("./DescribeObservabilityConfigurationCommand"), exports);
|
|
18
20
|
tslib_1.__exportStar(require("./DescribeServiceCommand"), exports);
|
|
19
21
|
tslib_1.__exportStar(require("./DescribeVpcConnectorCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DescribeVpcIngressConnectionCommand"), exports);
|
|
20
23
|
tslib_1.__exportStar(require("./DisassociateCustomDomainCommand"), exports);
|
|
21
24
|
tslib_1.__exportStar(require("./ListAutoScalingConfigurationsCommand"), exports);
|
|
22
25
|
tslib_1.__exportStar(require("./ListConnectionsCommand"), exports);
|
|
@@ -25,9 +28,11 @@ tslib_1.__exportStar(require("./ListOperationsCommand"), exports);
|
|
|
25
28
|
tslib_1.__exportStar(require("./ListServicesCommand"), exports);
|
|
26
29
|
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
27
30
|
tslib_1.__exportStar(require("./ListVpcConnectorsCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./ListVpcIngressConnectionsCommand"), exports);
|
|
28
32
|
tslib_1.__exportStar(require("./PauseServiceCommand"), exports);
|
|
29
33
|
tslib_1.__exportStar(require("./ResumeServiceCommand"), exports);
|
|
30
34
|
tslib_1.__exportStar(require("./StartDeploymentCommand"), exports);
|
|
31
35
|
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
32
36
|
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
33
37
|
tslib_1.__exportStar(require("./UpdateServiceCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./UpdateVpcIngressConnectionCommand"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UpdateServiceResponseFilterSensitiveLog = exports.UpdateServiceRequestFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.StartDeploymentResponseFilterSensitiveLog = exports.StartDeploymentRequestFilterSensitiveLog = exports.ResumeServiceResponseFilterSensitiveLog = exports.ResumeServiceRequestFilterSensitiveLog = void 0;
|
|
3
|
+
exports.SourceCodeVersionFilterSensitiveLog = exports.CodeConfigurationFilterSensitiveLog = exports.CodeConfigurationValuesFilterSensitiveLog = exports.AuthenticationConfigurationFilterSensitiveLog = exports.ServiceObservabilityConfigurationFilterSensitiveLog = exports.NetworkConfigurationFilterSensitiveLog = exports.IngressConfigurationFilterSensitiveLog = exports.EgressConfigurationFilterSensitiveLog = exports.InstanceConfigurationFilterSensitiveLog = exports.HealthCheckConfigurationFilterSensitiveLog = exports.EncryptionConfigurationFilterSensitiveLog = exports.CreateObservabilityConfigurationResponseFilterSensitiveLog = exports.ObservabilityConfigurationFilterSensitiveLog = exports.CreateObservabilityConfigurationRequestFilterSensitiveLog = exports.TraceConfigurationFilterSensitiveLog = exports.CreateConnectionResponseFilterSensitiveLog = exports.ConnectionFilterSensitiveLog = exports.CreateConnectionRequestFilterSensitiveLog = exports.CreateAutoScalingConfigurationResponseFilterSensitiveLog = exports.AutoScalingConfigurationFilterSensitiveLog = exports.CreateAutoScalingConfigurationRequestFilterSensitiveLog = exports.TagFilterSensitiveLog = exports.AssociateCustomDomainResponseFilterSensitiveLog = exports.VpcDNSTargetFilterSensitiveLog = exports.CustomDomainFilterSensitiveLog = exports.CertificateValidationRecordFilterSensitiveLog = exports.AssociateCustomDomainRequestFilterSensitiveLog = exports.OperationType = exports.OperationStatus = exports.ResourceNotFoundException = exports.VpcIngressConnectionStatus = exports.VpcConnectorStatus = exports.ServiceStatus = exports.ImageRepositoryType = exports.SourceCodeVersionType = exports.ConfigurationSource = exports.Runtime = exports.EgressType = exports.HealthCheckProtocol = exports.ObservabilityConfigurationStatus = exports.TracingVendor = exports.ConnectionStatus = exports.ProviderType = exports.ServiceQuotaExceededException = exports.AutoScalingConfigurationStatus = exports.InvalidStateException = exports.InvalidRequestException = exports.InternalServiceErrorException = exports.CustomDomainAssociationStatus = exports.CertificateValidationRecordStatus = void 0;
|
|
4
|
+
exports.ListOperationsRequestFilterSensitiveLog = exports.ListObservabilityConfigurationsResponseFilterSensitiveLog = exports.ObservabilityConfigurationSummaryFilterSensitiveLog = exports.ListObservabilityConfigurationsRequestFilterSensitiveLog = exports.ListConnectionsResponseFilterSensitiveLog = exports.ConnectionSummaryFilterSensitiveLog = exports.ListConnectionsRequestFilterSensitiveLog = exports.ListAutoScalingConfigurationsResponseFilterSensitiveLog = exports.ListAutoScalingConfigurationsRequestFilterSensitiveLog = exports.DisassociateCustomDomainResponseFilterSensitiveLog = exports.DisassociateCustomDomainRequestFilterSensitiveLog = exports.DescribeVpcIngressConnectionResponseFilterSensitiveLog = exports.DescribeVpcIngressConnectionRequestFilterSensitiveLog = exports.DescribeVpcConnectorResponseFilterSensitiveLog = exports.DescribeVpcConnectorRequestFilterSensitiveLog = exports.DescribeServiceResponseFilterSensitiveLog = exports.DescribeServiceRequestFilterSensitiveLog = exports.DescribeObservabilityConfigurationResponseFilterSensitiveLog = exports.DescribeObservabilityConfigurationRequestFilterSensitiveLog = exports.DescribeCustomDomainsResponseFilterSensitiveLog = exports.DescribeCustomDomainsRequestFilterSensitiveLog = exports.DescribeAutoScalingConfigurationResponseFilterSensitiveLog = exports.DescribeAutoScalingConfigurationRequestFilterSensitiveLog = exports.DeleteVpcIngressConnectionResponseFilterSensitiveLog = exports.DeleteVpcIngressConnectionRequestFilterSensitiveLog = exports.DeleteVpcConnectorResponseFilterSensitiveLog = exports.DeleteVpcConnectorRequestFilterSensitiveLog = exports.DeleteServiceResponseFilterSensitiveLog = exports.DeleteServiceRequestFilterSensitiveLog = exports.DeleteObservabilityConfigurationResponseFilterSensitiveLog = exports.DeleteObservabilityConfigurationRequestFilterSensitiveLog = exports.DeleteConnectionResponseFilterSensitiveLog = exports.DeleteConnectionRequestFilterSensitiveLog = exports.DeleteAutoScalingConfigurationResponseFilterSensitiveLog = exports.DeleteAutoScalingConfigurationRequestFilterSensitiveLog = exports.CreateVpcIngressConnectionResponseFilterSensitiveLog = exports.VpcIngressConnectionFilterSensitiveLog = exports.CreateVpcIngressConnectionRequestFilterSensitiveLog = exports.IngressVpcConfigurationFilterSensitiveLog = exports.CreateVpcConnectorResponseFilterSensitiveLog = exports.VpcConnectorFilterSensitiveLog = exports.CreateVpcConnectorRequestFilterSensitiveLog = exports.CreateServiceResponseFilterSensitiveLog = exports.ServiceFilterSensitiveLog = exports.AutoScalingConfigurationSummaryFilterSensitiveLog = exports.CreateServiceRequestFilterSensitiveLog = exports.SourceConfigurationFilterSensitiveLog = exports.ImageRepositoryFilterSensitiveLog = exports.ImageConfigurationFilterSensitiveLog = exports.CodeRepositoryFilterSensitiveLog = void 0;
|
|
5
|
+
exports.UpdateVpcIngressConnectionResponseFilterSensitiveLog = exports.UpdateVpcIngressConnectionRequestFilterSensitiveLog = exports.UpdateServiceResponseFilterSensitiveLog = exports.UpdateServiceRequestFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.StartDeploymentResponseFilterSensitiveLog = exports.StartDeploymentRequestFilterSensitiveLog = exports.ResumeServiceResponseFilterSensitiveLog = exports.ResumeServiceRequestFilterSensitiveLog = exports.PauseServiceResponseFilterSensitiveLog = exports.PauseServiceRequestFilterSensitiveLog = exports.ListVpcIngressConnectionsResponseFilterSensitiveLog = exports.VpcIngressConnectionSummaryFilterSensitiveLog = exports.ListVpcIngressConnectionsRequestFilterSensitiveLog = exports.ListVpcIngressConnectionsFilterFilterSensitiveLog = exports.ListVpcConnectorsResponseFilterSensitiveLog = exports.ListVpcConnectorsRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListServicesResponseFilterSensitiveLog = exports.ServiceSummaryFilterSensitiveLog = exports.ListServicesRequestFilterSensitiveLog = exports.ListOperationsResponseFilterSensitiveLog = exports.OperationSummaryFilterSensitiveLog = void 0;
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
7
|
const AppRunnerServiceException_1 = require("./AppRunnerServiceException");
|
|
8
8
|
var CertificateValidationRecordStatus;
|
|
@@ -116,10 +116,14 @@ var Runtime;
|
|
|
116
116
|
(function (Runtime) {
|
|
117
117
|
Runtime["CORRETTO_11"] = "CORRETTO_11";
|
|
118
118
|
Runtime["CORRETTO_8"] = "CORRETTO_8";
|
|
119
|
+
Runtime["DOTNET_6"] = "DOTNET_6";
|
|
120
|
+
Runtime["GO_1"] = "GO_1";
|
|
119
121
|
Runtime["NODEJS_12"] = "NODEJS_12";
|
|
120
122
|
Runtime["NODEJS_14"] = "NODEJS_14";
|
|
121
123
|
Runtime["NODEJS_16"] = "NODEJS_16";
|
|
124
|
+
Runtime["PHP_81"] = "PHP_81";
|
|
122
125
|
Runtime["PYTHON_3"] = "PYTHON_3";
|
|
126
|
+
Runtime["RUBY_31"] = "RUBY_31";
|
|
123
127
|
})(Runtime = exports.Runtime || (exports.Runtime = {}));
|
|
124
128
|
var ConfigurationSource;
|
|
125
129
|
(function (ConfigurationSource) {
|
|
@@ -149,6 +153,17 @@ var VpcConnectorStatus;
|
|
|
149
153
|
VpcConnectorStatus["ACTIVE"] = "ACTIVE";
|
|
150
154
|
VpcConnectorStatus["INACTIVE"] = "INACTIVE";
|
|
151
155
|
})(VpcConnectorStatus = exports.VpcConnectorStatus || (exports.VpcConnectorStatus = {}));
|
|
156
|
+
var VpcIngressConnectionStatus;
|
|
157
|
+
(function (VpcIngressConnectionStatus) {
|
|
158
|
+
VpcIngressConnectionStatus["AVAILABLE"] = "AVAILABLE";
|
|
159
|
+
VpcIngressConnectionStatus["DELETED"] = "DELETED";
|
|
160
|
+
VpcIngressConnectionStatus["FAILED_CREATION"] = "FAILED_CREATION";
|
|
161
|
+
VpcIngressConnectionStatus["FAILED_DELETION"] = "FAILED_DELETION";
|
|
162
|
+
VpcIngressConnectionStatus["FAILED_UPDATE"] = "FAILED_UPDATE";
|
|
163
|
+
VpcIngressConnectionStatus["PENDING_CREATION"] = "PENDING_CREATION";
|
|
164
|
+
VpcIngressConnectionStatus["PENDING_DELETION"] = "PENDING_DELETION";
|
|
165
|
+
VpcIngressConnectionStatus["PENDING_UPDATE"] = "PENDING_UPDATE";
|
|
166
|
+
})(VpcIngressConnectionStatus = exports.VpcIngressConnectionStatus || (exports.VpcIngressConnectionStatus = {}));
|
|
152
167
|
class ResourceNotFoundException extends AppRunnerServiceException_1.AppRunnerServiceException {
|
|
153
168
|
constructor(opts) {
|
|
154
169
|
super({
|
|
@@ -193,6 +208,10 @@ const CustomDomainFilterSensitiveLog = (obj) => ({
|
|
|
193
208
|
...obj,
|
|
194
209
|
});
|
|
195
210
|
exports.CustomDomainFilterSensitiveLog = CustomDomainFilterSensitiveLog;
|
|
211
|
+
const VpcDNSTargetFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
});
|
|
214
|
+
exports.VpcDNSTargetFilterSensitiveLog = VpcDNSTargetFilterSensitiveLog;
|
|
196
215
|
const AssociateCustomDomainResponseFilterSensitiveLog = (obj) => ({
|
|
197
216
|
...obj,
|
|
198
217
|
});
|
|
@@ -257,6 +276,10 @@ const EgressConfigurationFilterSensitiveLog = (obj) => ({
|
|
|
257
276
|
...obj,
|
|
258
277
|
});
|
|
259
278
|
exports.EgressConfigurationFilterSensitiveLog = EgressConfigurationFilterSensitiveLog;
|
|
279
|
+
const IngressConfigurationFilterSensitiveLog = (obj) => ({
|
|
280
|
+
...obj,
|
|
281
|
+
});
|
|
282
|
+
exports.IngressConfigurationFilterSensitiveLog = IngressConfigurationFilterSensitiveLog;
|
|
260
283
|
const NetworkConfigurationFilterSensitiveLog = (obj) => ({
|
|
261
284
|
...obj,
|
|
262
285
|
});
|
|
@@ -344,6 +367,22 @@ const CreateVpcConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
|
344
367
|
...obj,
|
|
345
368
|
});
|
|
346
369
|
exports.CreateVpcConnectorResponseFilterSensitiveLog = CreateVpcConnectorResponseFilterSensitiveLog;
|
|
370
|
+
const IngressVpcConfigurationFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
exports.IngressVpcConfigurationFilterSensitiveLog = IngressVpcConfigurationFilterSensitiveLog;
|
|
374
|
+
const CreateVpcIngressConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
exports.CreateVpcIngressConnectionRequestFilterSensitiveLog = CreateVpcIngressConnectionRequestFilterSensitiveLog;
|
|
378
|
+
const VpcIngressConnectionFilterSensitiveLog = (obj) => ({
|
|
379
|
+
...obj,
|
|
380
|
+
});
|
|
381
|
+
exports.VpcIngressConnectionFilterSensitiveLog = VpcIngressConnectionFilterSensitiveLog;
|
|
382
|
+
const CreateVpcIngressConnectionResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
exports.CreateVpcIngressConnectionResponseFilterSensitiveLog = CreateVpcIngressConnectionResponseFilterSensitiveLog;
|
|
347
386
|
const DeleteAutoScalingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
348
387
|
...obj,
|
|
349
388
|
});
|
|
@@ -385,6 +424,14 @@ const DeleteVpcConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
|
385
424
|
...obj,
|
|
386
425
|
});
|
|
387
426
|
exports.DeleteVpcConnectorResponseFilterSensitiveLog = DeleteVpcConnectorResponseFilterSensitiveLog;
|
|
427
|
+
const DeleteVpcIngressConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
exports.DeleteVpcIngressConnectionRequestFilterSensitiveLog = DeleteVpcIngressConnectionRequestFilterSensitiveLog;
|
|
431
|
+
const DeleteVpcIngressConnectionResponseFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
});
|
|
434
|
+
exports.DeleteVpcIngressConnectionResponseFilterSensitiveLog = DeleteVpcIngressConnectionResponseFilterSensitiveLog;
|
|
388
435
|
const DescribeAutoScalingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
389
436
|
...obj,
|
|
390
437
|
});
|
|
@@ -426,6 +473,14 @@ const DescribeVpcConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
|
426
473
|
...obj,
|
|
427
474
|
});
|
|
428
475
|
exports.DescribeVpcConnectorResponseFilterSensitiveLog = DescribeVpcConnectorResponseFilterSensitiveLog;
|
|
476
|
+
const DescribeVpcIngressConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
477
|
+
...obj,
|
|
478
|
+
});
|
|
479
|
+
exports.DescribeVpcIngressConnectionRequestFilterSensitiveLog = DescribeVpcIngressConnectionRequestFilterSensitiveLog;
|
|
480
|
+
const DescribeVpcIngressConnectionResponseFilterSensitiveLog = (obj) => ({
|
|
481
|
+
...obj,
|
|
482
|
+
});
|
|
483
|
+
exports.DescribeVpcIngressConnectionResponseFilterSensitiveLog = DescribeVpcIngressConnectionResponseFilterSensitiveLog;
|
|
429
484
|
const DisassociateCustomDomainRequestFilterSensitiveLog = (obj) => ({
|
|
430
485
|
...obj,
|
|
431
486
|
});
|
|
@@ -506,6 +561,22 @@ const ListVpcConnectorsResponseFilterSensitiveLog = (obj) => ({
|
|
|
506
561
|
...obj,
|
|
507
562
|
});
|
|
508
563
|
exports.ListVpcConnectorsResponseFilterSensitiveLog = ListVpcConnectorsResponseFilterSensitiveLog;
|
|
564
|
+
const ListVpcIngressConnectionsFilterFilterSensitiveLog = (obj) => ({
|
|
565
|
+
...obj,
|
|
566
|
+
});
|
|
567
|
+
exports.ListVpcIngressConnectionsFilterFilterSensitiveLog = ListVpcIngressConnectionsFilterFilterSensitiveLog;
|
|
568
|
+
const ListVpcIngressConnectionsRequestFilterSensitiveLog = (obj) => ({
|
|
569
|
+
...obj,
|
|
570
|
+
});
|
|
571
|
+
exports.ListVpcIngressConnectionsRequestFilterSensitiveLog = ListVpcIngressConnectionsRequestFilterSensitiveLog;
|
|
572
|
+
const VpcIngressConnectionSummaryFilterSensitiveLog = (obj) => ({
|
|
573
|
+
...obj,
|
|
574
|
+
});
|
|
575
|
+
exports.VpcIngressConnectionSummaryFilterSensitiveLog = VpcIngressConnectionSummaryFilterSensitiveLog;
|
|
576
|
+
const ListVpcIngressConnectionsResponseFilterSensitiveLog = (obj) => ({
|
|
577
|
+
...obj,
|
|
578
|
+
});
|
|
579
|
+
exports.ListVpcIngressConnectionsResponseFilterSensitiveLog = ListVpcIngressConnectionsResponseFilterSensitiveLog;
|
|
509
580
|
const PauseServiceRequestFilterSensitiveLog = (obj) => ({
|
|
510
581
|
...obj,
|
|
511
582
|
});
|
|
@@ -560,3 +631,11 @@ const UpdateServiceResponseFilterSensitiveLog = (obj) => ({
|
|
|
560
631
|
...(obj.Service && { Service: (0, exports.ServiceFilterSensitiveLog)(obj.Service) }),
|
|
561
632
|
});
|
|
562
633
|
exports.UpdateServiceResponseFilterSensitiveLog = UpdateServiceResponseFilterSensitiveLog;
|
|
634
|
+
const UpdateVpcIngressConnectionRequestFilterSensitiveLog = (obj) => ({
|
|
635
|
+
...obj,
|
|
636
|
+
});
|
|
637
|
+
exports.UpdateVpcIngressConnectionRequestFilterSensitiveLog = UpdateVpcIngressConnectionRequestFilterSensitiveLog;
|
|
638
|
+
const UpdateVpcIngressConnectionResponseFilterSensitiveLog = (obj) => ({
|
|
639
|
+
...obj,
|
|
640
|
+
});
|
|
641
|
+
exports.UpdateVpcIngressConnectionResponseFilterSensitiveLog = UpdateVpcIngressConnectionResponseFilterSensitiveLog;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListVpcIngressConnections = void 0;
|
|
4
|
+
const AppRunner_1 = require("../AppRunner");
|
|
5
|
+
const AppRunnerClient_1 = require("../AppRunnerClient");
|
|
6
|
+
const ListVpcIngressConnectionsCommand_1 = require("../commands/ListVpcIngressConnectionsCommand");
|
|
7
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
|
+
return await client.send(new ListVpcIngressConnectionsCommand_1.ListVpcIngressConnectionsCommand(input), ...args);
|
|
9
|
+
};
|
|
10
|
+
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
+
return await client.listVpcIngressConnections(input, ...args);
|
|
12
|
+
};
|
|
13
|
+
async function* paginateListVpcIngressConnections(config, input, ...additionalArguments) {
|
|
14
|
+
let token = config.startingToken || undefined;
|
|
15
|
+
let hasNext = true;
|
|
16
|
+
let page;
|
|
17
|
+
while (hasNext) {
|
|
18
|
+
input.NextToken = token;
|
|
19
|
+
input["MaxResults"] = config.pageSize;
|
|
20
|
+
if (config.client instanceof AppRunner_1.AppRunner) {
|
|
21
|
+
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
+
}
|
|
23
|
+
else if (config.client instanceof AppRunnerClient_1.AppRunnerClient) {
|
|
24
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
throw new Error("Invalid client, expected AppRunner | AppRunnerClient");
|
|
28
|
+
}
|
|
29
|
+
yield page;
|
|
30
|
+
const prevToken = token;
|
|
31
|
+
token = page.NextToken;
|
|
32
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
exports.paginateListVpcIngressConnections = paginateListVpcIngressConnections;
|