@aws-sdk/client-apprunner 3.926.0 → 3.928.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/dist-cjs/index.js +1224 -1483
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/AppRunnerClient.js +2 -0
- package/dist-es/commands/AssociateCustomDomainCommand.js +3 -9
- package/dist-es/commands/CreateAutoScalingConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateConnectionCommand.js +3 -9
- package/dist-es/commands/CreateObservabilityConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateServiceCommand.js +3 -10
- package/dist-es/commands/CreateVpcConnectorCommand.js +3 -9
- package/dist-es/commands/CreateVpcIngressConnectionCommand.js +3 -9
- package/dist-es/commands/DeleteAutoScalingConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteConnectionCommand.js +3 -9
- package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteServiceCommand.js +3 -10
- package/dist-es/commands/DeleteVpcConnectorCommand.js +3 -9
- package/dist-es/commands/DeleteVpcIngressConnectionCommand.js +3 -9
- package/dist-es/commands/DescribeAutoScalingConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeCustomDomainsCommand.js +3 -9
- package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeServiceCommand.js +3 -10
- package/dist-es/commands/DescribeVpcConnectorCommand.js +3 -9
- package/dist-es/commands/DescribeVpcIngressConnectionCommand.js +3 -9
- package/dist-es/commands/DisassociateCustomDomainCommand.js +3 -9
- package/dist-es/commands/ListAutoScalingConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListConnectionsCommand.js +3 -9
- package/dist-es/commands/ListObservabilityConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListOperationsCommand.js +3 -9
- package/dist-es/commands/ListServicesCommand.js +3 -9
- package/dist-es/commands/ListServicesForAutoScalingConfigurationCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVpcConnectorsCommand.js +3 -9
- package/dist-es/commands/ListVpcIngressConnectionsCommand.js +3 -9
- package/dist-es/commands/PauseServiceCommand.js +3 -10
- package/dist-es/commands/ResumeServiceCommand.js +3 -10
- package/dist-es/commands/StartDeploymentCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDefaultAutoScalingConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateServiceCommand.js +3 -10
- package/dist-es/commands/UpdateVpcIngressConnectionCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -75
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1137 -0
- package/dist-types/AppRunnerClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -60
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +175 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -43
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +182 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -1124
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -449
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListObservabilityConfigurations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListObservabilityConfigurationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListObservabilityConfigurations", {})
|
|
17
13
|
.n("AppRunnerClient", "ListObservabilityConfigurationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListObservabilityConfigurationsCommand)
|
|
20
|
-
.de(de_ListObservabilityConfigurationsCommand)
|
|
14
|
+
.sc(ListObservabilityConfigurations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListOperations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListOperationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListOperations", {})
|
|
17
13
|
.n("AppRunnerClient", "ListOperationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListOperationsCommand)
|
|
20
|
-
.de(de_ListOperationsCommand)
|
|
14
|
+
.sc(ListOperations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListServices } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListServicesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListServices", {})
|
|
17
13
|
.n("AppRunnerClient", "ListServicesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListServicesCommand)
|
|
20
|
-
.de(de_ListServicesCommand)
|
|
14
|
+
.sc(ListServices)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListServicesForAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListServicesForAutoScalingConfigurationCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListServicesForAutoScalingConfiguration", {})
|
|
17
13
|
.n("AppRunnerClient", "ListServicesForAutoScalingConfigurationCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListServicesForAutoScalingConfigurationCommand)
|
|
20
|
-
.de(de_ListServicesForAutoScalingConfigurationCommand)
|
|
14
|
+
.sc(ListServicesForAutoScalingConfiguration)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListTagsForResource", {})
|
|
17
13
|
.n("AppRunnerClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListVpcConnectors } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListVpcConnectorsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListVpcConnectors", {})
|
|
17
13
|
.n("AppRunnerClient", "ListVpcConnectorsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListVpcConnectorsCommand)
|
|
20
|
-
.de(de_ListVpcConnectorsCommand)
|
|
14
|
+
.sc(ListVpcConnectors)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListVpcIngressConnections } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListVpcIngressConnectionsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "ListVpcIngressConnections", {})
|
|
17
13
|
.n("AppRunnerClient", "ListVpcIngressConnectionsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListVpcIngressConnectionsCommand)
|
|
20
|
-
.de(de_ListVpcIngressConnectionsCommand)
|
|
14
|
+
.sc(ListVpcIngressConnections)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_PauseServiceCommand, se_PauseServiceCommand } from "../protocols/Aws_json1_0";
|
|
4
|
+
import { PauseService } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class PauseServiceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("AppRunner", "PauseService", {})
|
|
18
13
|
.n("AppRunnerClient", "PauseServiceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_PauseServiceCommand)
|
|
21
|
-
.de(de_PauseServiceCommand)
|
|
14
|
+
.sc(PauseService)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_ResumeServiceCommand, se_ResumeServiceCommand } from "../protocols/Aws_json1_0";
|
|
4
|
+
import { ResumeService } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class ResumeServiceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("AppRunner", "ResumeService", {})
|
|
18
13
|
.n("AppRunnerClient", "ResumeServiceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_ResumeServiceCommand)
|
|
21
|
-
.de(de_ResumeServiceCommand)
|
|
14
|
+
.sc(ResumeService)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StartDeployment } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StartDeploymentCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "StartDeployment", {})
|
|
17
13
|
.n("AppRunnerClient", "StartDeploymentCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StartDeploymentCommand)
|
|
20
|
-
.de(de_StartDeploymentCommand)
|
|
14
|
+
.sc(StartDeployment)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "TagResource", {})
|
|
17
13
|
.n("AppRunnerClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "UntagResource", {})
|
|
17
13
|
.n("AppRunnerClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateDefaultAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateDefaultAutoScalingConfigurationCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "UpdateDefaultAutoScalingConfiguration", {})
|
|
17
13
|
.n("AppRunnerClient", "UpdateDefaultAutoScalingConfigurationCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateDefaultAutoScalingConfigurationCommand)
|
|
20
|
-
.de(de_UpdateDefaultAutoScalingConfigurationCommand)
|
|
14
|
+
.sc(UpdateDefaultAutoScalingConfiguration)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_UpdateServiceCommand, se_UpdateServiceCommand } from "../protocols/Aws_json1_0";
|
|
4
|
+
import { UpdateService } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class UpdateServiceCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("AppRunner", "UpdateService", {})
|
|
18
13
|
.n("AppRunnerClient", "UpdateServiceCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_UpdateServiceCommand)
|
|
21
|
-
.de(de_UpdateServiceCommand)
|
|
14
|
+
.sc(UpdateService)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateVpcIngressConnection } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateVpcIngressConnectionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AppRunner", "UpdateVpcIngressConnection", {})
|
|
17
13
|
.n("AppRunnerClient", "UpdateVpcIngressConnectionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateVpcIngressConnectionCommand)
|
|
20
|
-
.de(de_UpdateVpcIngressConnectionCommand)
|
|
14
|
+
.sc(UpdateVpcIngressConnection)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
3
2
|
export const CertificateValidationRecordStatus = {
|
|
4
3
|
FAILED: "FAILED",
|
|
@@ -182,77 +181,3 @@ export const OperationType = {
|
|
|
182
181
|
START_DEPLOYMENT: "START_DEPLOYMENT",
|
|
183
182
|
UPDATE_SERVICE: "UPDATE_SERVICE",
|
|
184
183
|
};
|
|
185
|
-
export const CodeConfigurationValuesFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
...(obj.BuildCommand && { BuildCommand: SENSITIVE_STRING }),
|
|
188
|
-
...(obj.StartCommand && { StartCommand: SENSITIVE_STRING }),
|
|
189
|
-
...(obj.RuntimeEnvironmentVariables && { RuntimeEnvironmentVariables: SENSITIVE_STRING }),
|
|
190
|
-
...(obj.RuntimeEnvironmentSecrets && { RuntimeEnvironmentSecrets: SENSITIVE_STRING }),
|
|
191
|
-
});
|
|
192
|
-
export const CodeConfigurationFilterSensitiveLog = (obj) => ({
|
|
193
|
-
...obj,
|
|
194
|
-
...(obj.CodeConfigurationValues && {
|
|
195
|
-
CodeConfigurationValues: CodeConfigurationValuesFilterSensitiveLog(obj.CodeConfigurationValues),
|
|
196
|
-
}),
|
|
197
|
-
});
|
|
198
|
-
export const CodeRepositoryFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
...(obj.CodeConfiguration && { CodeConfiguration: CodeConfigurationFilterSensitiveLog(obj.CodeConfiguration) }),
|
|
201
|
-
});
|
|
202
|
-
export const ImageConfigurationFilterSensitiveLog = (obj) => ({
|
|
203
|
-
...obj,
|
|
204
|
-
...(obj.RuntimeEnvironmentVariables && { RuntimeEnvironmentVariables: SENSITIVE_STRING }),
|
|
205
|
-
...(obj.StartCommand && { StartCommand: SENSITIVE_STRING }),
|
|
206
|
-
...(obj.RuntimeEnvironmentSecrets && { RuntimeEnvironmentSecrets: SENSITIVE_STRING }),
|
|
207
|
-
});
|
|
208
|
-
export const ImageRepositoryFilterSensitiveLog = (obj) => ({
|
|
209
|
-
...obj,
|
|
210
|
-
...(obj.ImageConfiguration && { ImageConfiguration: ImageConfigurationFilterSensitiveLog(obj.ImageConfiguration) }),
|
|
211
|
-
});
|
|
212
|
-
export const SourceConfigurationFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
...(obj.CodeRepository && { CodeRepository: CodeRepositoryFilterSensitiveLog(obj.CodeRepository) }),
|
|
215
|
-
...(obj.ImageRepository && { ImageRepository: ImageRepositoryFilterSensitiveLog(obj.ImageRepository) }),
|
|
216
|
-
});
|
|
217
|
-
export const CreateServiceRequestFilterSensitiveLog = (obj) => ({
|
|
218
|
-
...obj,
|
|
219
|
-
...(obj.SourceConfiguration && {
|
|
220
|
-
SourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.SourceConfiguration),
|
|
221
|
-
}),
|
|
222
|
-
});
|
|
223
|
-
export const ServiceFilterSensitiveLog = (obj) => ({
|
|
224
|
-
...obj,
|
|
225
|
-
...(obj.SourceConfiguration && {
|
|
226
|
-
SourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.SourceConfiguration),
|
|
227
|
-
}),
|
|
228
|
-
});
|
|
229
|
-
export const CreateServiceResponseFilterSensitiveLog = (obj) => ({
|
|
230
|
-
...obj,
|
|
231
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
232
|
-
});
|
|
233
|
-
export const DeleteServiceResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
236
|
-
});
|
|
237
|
-
export const DescribeServiceResponseFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
240
|
-
});
|
|
241
|
-
export const PauseServiceResponseFilterSensitiveLog = (obj) => ({
|
|
242
|
-
...obj,
|
|
243
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
244
|
-
});
|
|
245
|
-
export const ResumeServiceResponseFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
248
|
-
});
|
|
249
|
-
export const UpdateServiceRequestFilterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
...(obj.SourceConfiguration && {
|
|
252
|
-
SourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.SourceConfiguration),
|
|
253
|
-
}),
|
|
254
|
-
});
|
|
255
|
-
export const UpdateServiceResponseFilterSensitiveLog = (obj) => ({
|
|
256
|
-
...obj,
|
|
257
|
-
...(obj.Service && { Service: ServiceFilterSensitiveLog(obj.Service) }),
|
|
258
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ??
|
|
27
|
+
new AwsJson1_0Protocol({
|
|
28
|
+
defaultNamespace: "com.amazonaws.apprunner",
|
|
29
|
+
serviceTarget: "AppRunner",
|
|
30
|
+
awsQueryCompatible: false,
|
|
31
|
+
}),
|
|
25
32
|
serviceId: config?.serviceId ?? "AppRunner",
|
|
26
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|