@aws-sdk/client-apprunner 3.948.0 → 3.953.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 +509 -343
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AssociateCustomDomainCommand.js +2 -2
- package/dist-es/commands/CreateAutoScalingConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateConnectionCommand.js +2 -2
- package/dist-es/commands/CreateObservabilityConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateServiceCommand.js +2 -2
- package/dist-es/commands/CreateVpcConnectorCommand.js +2 -2
- package/dist-es/commands/CreateVpcIngressConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteAutoScalingConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteServiceCommand.js +2 -2
- package/dist-es/commands/DeleteVpcConnectorCommand.js +2 -2
- package/dist-es/commands/DeleteVpcIngressConnectionCommand.js +2 -2
- package/dist-es/commands/DescribeAutoScalingConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeCustomDomainsCommand.js +2 -2
- package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeServiceCommand.js +2 -2
- package/dist-es/commands/DescribeVpcConnectorCommand.js +2 -2
- package/dist-es/commands/DescribeVpcIngressConnectionCommand.js +2 -2
- package/dist-es/commands/DisassociateCustomDomainCommand.js +2 -2
- package/dist-es/commands/ListAutoScalingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListConnectionsCommand.js +2 -2
- package/dist-es/commands/ListObservabilityConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListOperationsCommand.js +2 -2
- package/dist-es/commands/ListServicesCommand.js +2 -2
- package/dist-es/commands/ListServicesForAutoScalingConfigurationCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVpcConnectorsCommand.js +2 -2
- package/dist-es/commands/ListVpcIngressConnectionsCommand.js +2 -2
- package/dist-es/commands/PauseServiceCommand.js +2 -2
- package/dist-es/commands/ResumeServiceCommand.js +2 -2
- package/dist-es/commands/StartDeploymentCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDefaultAutoScalingConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateServiceCommand.js +2 -2
- package/dist-es/commands/UpdateVpcIngressConnectionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +318 -303
- package/dist-types/AppRunnerClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +152 -174
- package/dist-types/ts3.4/AppRunnerClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +151 -176
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.apprunner",
|
|
32
|
+
xmlNamespace: "http://apprunner.amazonaws.com/doc/2020-05-15/",
|
|
33
|
+
version: "2020-05-15",
|
|
34
|
+
serviceTarget: "AppRunner",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "AppRunner",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateCustomDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateCustomDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateCustomDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateCustomDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "AssociateCustomDomain", {})
|
|
13
13
|
.n("AppRunnerClient", "AssociateCustomDomainCommand")
|
|
14
|
-
.sc(AssociateCustomDomain)
|
|
14
|
+
.sc(AssociateCustomDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAutoScalingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAutoScalingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAutoScalingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateAutoScalingConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateAutoScalingConfigurationCommand")
|
|
14
|
-
.sc(CreateAutoScalingConfiguration)
|
|
14
|
+
.sc(CreateAutoScalingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateConnection", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateConnectionCommand")
|
|
14
|
-
.sc(CreateConnection)
|
|
14
|
+
.sc(CreateConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateObservabilityConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateObservabilityConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateObservabilityConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateObservabilityConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateObservabilityConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateObservabilityConfigurationCommand")
|
|
14
|
-
.sc(CreateObservabilityConfiguration)
|
|
14
|
+
.sc(CreateObservabilityConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateService } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateService", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateServiceCommand")
|
|
14
|
-
.sc(CreateService)
|
|
14
|
+
.sc(CreateService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVpcConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVpcConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVpcConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVpcConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateVpcConnector", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateVpcConnectorCommand")
|
|
14
|
-
.sc(CreateVpcConnector)
|
|
14
|
+
.sc(CreateVpcConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVpcIngressConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVpcIngressConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVpcIngressConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVpcIngressConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "CreateVpcIngressConnection", {})
|
|
13
13
|
.n("AppRunnerClient", "CreateVpcIngressConnectionCommand")
|
|
14
|
-
.sc(CreateVpcIngressConnection)
|
|
14
|
+
.sc(CreateVpcIngressConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAutoScalingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAutoScalingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAutoScalingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteAutoScalingConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteAutoScalingConfigurationCommand")
|
|
14
|
-
.sc(DeleteAutoScalingConfiguration)
|
|
14
|
+
.sc(DeleteAutoScalingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteConnection", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteConnectionCommand")
|
|
14
|
-
.sc(DeleteConnection)
|
|
14
|
+
.sc(DeleteConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteObservabilityConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteObservabilityConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteObservabilityConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteObservabilityConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteObservabilityConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteObservabilityConfigurationCommand")
|
|
14
|
-
.sc(DeleteObservabilityConfiguration)
|
|
14
|
+
.sc(DeleteObservabilityConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteService } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteService", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteServiceCommand")
|
|
14
|
-
.sc(DeleteService)
|
|
14
|
+
.sc(DeleteService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVpcConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVpcConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVpcConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVpcConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteVpcConnector", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteVpcConnectorCommand")
|
|
14
|
-
.sc(DeleteVpcConnector)
|
|
14
|
+
.sc(DeleteVpcConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVpcIngressConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVpcIngressConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVpcIngressConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVpcIngressConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DeleteVpcIngressConnection", {})
|
|
13
13
|
.n("AppRunnerClient", "DeleteVpcIngressConnectionCommand")
|
|
14
|
-
.sc(DeleteVpcIngressConnection)
|
|
14
|
+
.sc(DeleteVpcIngressConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAutoScalingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAutoScalingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAutoScalingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeAutoScalingConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeAutoScalingConfigurationCommand")
|
|
14
|
-
.sc(DescribeAutoScalingConfiguration)
|
|
14
|
+
.sc(DescribeAutoScalingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeCustomDomains } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeCustomDomains$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCustomDomainsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeCustomDomainsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeCustomDomains", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeCustomDomainsCommand")
|
|
14
|
-
.sc(DescribeCustomDomains)
|
|
14
|
+
.sc(DescribeCustomDomains$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeObservabilityConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeObservabilityConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeObservabilityConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeObservabilityConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeObservabilityConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeObservabilityConfigurationCommand")
|
|
14
|
-
.sc(DescribeObservabilityConfiguration)
|
|
14
|
+
.sc(DescribeObservabilityConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeService } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeService", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeServiceCommand")
|
|
14
|
-
.sc(DescribeService)
|
|
14
|
+
.sc(DescribeService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVpcConnector } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVpcConnector$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVpcConnectorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVpcConnectorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeVpcConnector", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeVpcConnectorCommand")
|
|
14
|
-
.sc(DescribeVpcConnector)
|
|
14
|
+
.sc(DescribeVpcConnector$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVpcIngressConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVpcIngressConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVpcIngressConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVpcIngressConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DescribeVpcIngressConnection", {})
|
|
13
13
|
.n("AppRunnerClient", "DescribeVpcIngressConnectionCommand")
|
|
14
|
-
.sc(DescribeVpcIngressConnection)
|
|
14
|
+
.sc(DescribeVpcIngressConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateCustomDomain } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateCustomDomain$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateCustomDomainCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateCustomDomainCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "DisassociateCustomDomain", {})
|
|
13
13
|
.n("AppRunnerClient", "DisassociateCustomDomainCommand")
|
|
14
|
-
.sc(DisassociateCustomDomain)
|
|
14
|
+
.sc(DisassociateCustomDomain$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAutoScalingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAutoScalingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAutoScalingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAutoScalingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListAutoScalingConfigurations", {})
|
|
13
13
|
.n("AppRunnerClient", "ListAutoScalingConfigurationsCommand")
|
|
14
|
-
.sc(ListAutoScalingConfigurations)
|
|
14
|
+
.sc(ListAutoScalingConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConnectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListConnections", {})
|
|
13
13
|
.n("AppRunnerClient", "ListConnectionsCommand")
|
|
14
|
-
.sc(ListConnections)
|
|
14
|
+
.sc(ListConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListObservabilityConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListObservabilityConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListObservabilityConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListObservabilityConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListObservabilityConfigurations", {})
|
|
13
13
|
.n("AppRunnerClient", "ListObservabilityConfigurationsCommand")
|
|
14
|
-
.sc(ListObservabilityConfigurations)
|
|
14
|
+
.sc(ListObservabilityConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListOperations", {})
|
|
13
13
|
.n("AppRunnerClient", "ListOperationsCommand")
|
|
14
|
-
.sc(ListOperations)
|
|
14
|
+
.sc(ListOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListServices } from "../schemas/schemas_0";
|
|
4
|
+
import { ListServices$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListServicesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListServicesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListServices", {})
|
|
13
13
|
.n("AppRunnerClient", "ListServicesCommand")
|
|
14
|
-
.sc(ListServices)
|
|
14
|
+
.sc(ListServices$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListServicesForAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { ListServicesForAutoScalingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListServicesForAutoScalingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListServicesForAutoScalingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListServicesForAutoScalingConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "ListServicesForAutoScalingConfigurationCommand")
|
|
14
|
-
.sc(ListServicesForAutoScalingConfiguration)
|
|
14
|
+
.sc(ListServicesForAutoScalingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListTagsForResource", {})
|
|
13
13
|
.n("AppRunnerClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVpcConnectors } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVpcConnectors$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVpcConnectorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVpcConnectorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListVpcConnectors", {})
|
|
13
13
|
.n("AppRunnerClient", "ListVpcConnectorsCommand")
|
|
14
|
-
.sc(ListVpcConnectors)
|
|
14
|
+
.sc(ListVpcConnectors$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVpcIngressConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVpcIngressConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVpcIngressConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVpcIngressConnectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ListVpcIngressConnections", {})
|
|
13
13
|
.n("AppRunnerClient", "ListVpcIngressConnectionsCommand")
|
|
14
|
-
.sc(ListVpcIngressConnections)
|
|
14
|
+
.sc(ListVpcIngressConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PauseService } from "../schemas/schemas_0";
|
|
4
|
+
import { PauseService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PauseServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PauseServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "PauseService", {})
|
|
13
13
|
.n("AppRunnerClient", "PauseServiceCommand")
|
|
14
|
-
.sc(PauseService)
|
|
14
|
+
.sc(PauseService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ResumeService } from "../schemas/schemas_0";
|
|
4
|
+
import { ResumeService$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ResumeServiceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ResumeServiceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "ResumeService", {})
|
|
13
13
|
.n("AppRunnerClient", "ResumeServiceCommand")
|
|
14
|
-
.sc(ResumeService)
|
|
14
|
+
.sc(ResumeService$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "StartDeployment", {})
|
|
13
13
|
.n("AppRunnerClient", "StartDeploymentCommand")
|
|
14
|
-
.sc(StartDeployment)
|
|
14
|
+
.sc(StartDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "TagResource", {})
|
|
13
13
|
.n("AppRunnerClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "UntagResource", {})
|
|
13
13
|
.n("AppRunnerClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDefaultAutoScalingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDefaultAutoScalingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDefaultAutoScalingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDefaultAutoScalingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AppRunner", "UpdateDefaultAutoScalingConfiguration", {})
|
|
13
13
|
.n("AppRunnerClient", "UpdateDefaultAutoScalingConfigurationCommand")
|
|
14
|
-
.sc(UpdateDefaultAutoScalingConfiguration)
|
|
14
|
+
.sc(UpdateDefaultAutoScalingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|