@aws-sdk/client-codedeploy 3.952.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 +1274 -941
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AddTagsToOnPremisesInstancesCommand.js +2 -2
- package/dist-es/commands/BatchGetApplicationRevisionsCommand.js +2 -2
- package/dist-es/commands/BatchGetApplicationsCommand.js +2 -2
- package/dist-es/commands/BatchGetDeploymentGroupsCommand.js +2 -2
- package/dist-es/commands/BatchGetDeploymentInstancesCommand.js +2 -2
- package/dist-es/commands/BatchGetDeploymentTargetsCommand.js +2 -2
- package/dist-es/commands/BatchGetDeploymentsCommand.js +2 -2
- package/dist-es/commands/BatchGetOnPremisesInstancesCommand.js +2 -2
- package/dist-es/commands/ContinueDeploymentCommand.js +2 -2
- package/dist-es/commands/CreateApplicationCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentConfigCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentGroupCommand.js +2 -2
- package/dist-es/commands/DeleteApplicationCommand.js +2 -2
- package/dist-es/commands/DeleteDeploymentConfigCommand.js +2 -2
- package/dist-es/commands/DeleteDeploymentGroupCommand.js +2 -2
- package/dist-es/commands/DeleteGitHubAccountTokenCommand.js +2 -2
- package/dist-es/commands/DeleteResourcesByExternalIdCommand.js +2 -2
- package/dist-es/commands/DeregisterOnPremisesInstanceCommand.js +2 -2
- package/dist-es/commands/GetApplicationCommand.js +2 -2
- package/dist-es/commands/GetApplicationRevisionCommand.js +2 -2
- package/dist-es/commands/GetDeploymentCommand.js +2 -2
- package/dist-es/commands/GetDeploymentConfigCommand.js +2 -2
- package/dist-es/commands/GetDeploymentGroupCommand.js +2 -2
- package/dist-es/commands/GetDeploymentInstanceCommand.js +2 -2
- package/dist-es/commands/GetDeploymentTargetCommand.js +2 -2
- package/dist-es/commands/GetOnPremisesInstanceCommand.js +2 -2
- package/dist-es/commands/ListApplicationRevisionsCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -2
- package/dist-es/commands/ListDeploymentConfigsCommand.js +2 -2
- package/dist-es/commands/ListDeploymentGroupsCommand.js +2 -2
- package/dist-es/commands/ListDeploymentInstancesCommand.js +2 -2
- package/dist-es/commands/ListDeploymentTargetsCommand.js +2 -2
- package/dist-es/commands/ListDeploymentsCommand.js +2 -2
- package/dist-es/commands/ListGitHubAccountTokenNamesCommand.js +2 -2
- package/dist-es/commands/ListOnPremisesInstancesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutLifecycleEventHookExecutionStatusCommand.js +2 -2
- package/dist-es/commands/RegisterApplicationRevisionCommand.js +2 -2
- package/dist-es/commands/RegisterOnPremisesInstanceCommand.js +2 -2
- package/dist-es/commands/RemoveTagsFromOnPremisesInstancesCommand.js +2 -2
- package/dist-es/commands/SkipWaitTimeForInstanceTerminationCommand.js +2 -2
- package/dist-es/commands/StopDeploymentCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateApplicationCommand.js +2 -2
- package/dist-es/commands/UpdateDeploymentGroupCommand.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 +627 -592
- package/dist-types/CodeDeployClient.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 +299 -341
- package/dist-types/ts3.4/CodeDeployClient.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 +298 -342
- package/package.json +35 -35
|
@@ -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_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.codedeploy",
|
|
32
|
+
xmlNamespace: "http://codedeploy.amazonaws.com/doc/2014-10-06/",
|
|
33
|
+
version: "2014-10-06",
|
|
34
|
+
serviceTarget: "CodeDeploy_20141006",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "CodeDeploy",
|
|
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 { AddTagsToOnPremisesInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { AddTagsToOnPremisesInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsToOnPremisesInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddTagsToOnPremisesInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "AddTagsToOnPremisesInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "AddTagsToOnPremisesInstancesCommand")
|
|
14
|
-
.sc(AddTagsToOnPremisesInstances)
|
|
14
|
+
.sc(AddTagsToOnPremisesInstances$)
|
|
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 { BatchGetApplicationRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetApplicationRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetApplicationRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetApplicationRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetApplicationRevisions", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetApplicationRevisionsCommand")
|
|
14
|
-
.sc(BatchGetApplicationRevisions)
|
|
14
|
+
.sc(BatchGetApplicationRevisions$)
|
|
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 { BatchGetApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetApplications", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetApplicationsCommand")
|
|
14
|
-
.sc(BatchGetApplications)
|
|
14
|
+
.sc(BatchGetApplications$)
|
|
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 { BatchGetDeploymentGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetDeploymentGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetDeploymentGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetDeploymentGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetDeploymentGroups", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetDeploymentGroupsCommand")
|
|
14
|
-
.sc(BatchGetDeploymentGroups)
|
|
14
|
+
.sc(BatchGetDeploymentGroups$)
|
|
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 { BatchGetDeploymentInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetDeploymentInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetDeploymentInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetDeploymentInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetDeploymentInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetDeploymentInstancesCommand")
|
|
14
|
-
.sc(BatchGetDeploymentInstances)
|
|
14
|
+
.sc(BatchGetDeploymentInstances$)
|
|
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 { BatchGetDeploymentTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetDeploymentTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetDeploymentTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetDeploymentTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetDeploymentTargets", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetDeploymentTargetsCommand")
|
|
14
|
-
.sc(BatchGetDeploymentTargets)
|
|
14
|
+
.sc(BatchGetDeploymentTargets$)
|
|
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 { BatchGetDeployments } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetDeployments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetDeploymentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetDeploymentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetDeployments", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetDeploymentsCommand")
|
|
14
|
-
.sc(BatchGetDeployments)
|
|
14
|
+
.sc(BatchGetDeployments$)
|
|
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 { BatchGetOnPremisesInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetOnPremisesInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetOnPremisesInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetOnPremisesInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "BatchGetOnPremisesInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "BatchGetOnPremisesInstancesCommand")
|
|
14
|
-
.sc(BatchGetOnPremisesInstances)
|
|
14
|
+
.sc(BatchGetOnPremisesInstances$)
|
|
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 { ContinueDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { ContinueDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ContinueDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ContinueDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ContinueDeployment", {})
|
|
13
13
|
.n("CodeDeployClient", "ContinueDeploymentCommand")
|
|
14
|
-
.sc(ContinueDeployment)
|
|
14
|
+
.sc(ContinueDeployment$)
|
|
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 { CreateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "CreateApplication", {})
|
|
13
13
|
.n("CodeDeployClient", "CreateApplicationCommand")
|
|
14
|
-
.sc(CreateApplication)
|
|
14
|
+
.sc(CreateApplication$)
|
|
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 { CreateDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "CreateDeployment", {})
|
|
13
13
|
.n("CodeDeployClient", "CreateDeploymentCommand")
|
|
14
|
-
.sc(CreateDeployment)
|
|
14
|
+
.sc(CreateDeployment$)
|
|
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 { CreateDeploymentConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeploymentConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "CreateDeploymentConfig", {})
|
|
13
13
|
.n("CodeDeployClient", "CreateDeploymentConfigCommand")
|
|
14
|
-
.sc(CreateDeploymentConfig)
|
|
14
|
+
.sc(CreateDeploymentConfig$)
|
|
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 { CreateDeploymentGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeploymentGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "CreateDeploymentGroup", {})
|
|
13
13
|
.n("CodeDeployClient", "CreateDeploymentGroupCommand")
|
|
14
|
-
.sc(CreateDeploymentGroup)
|
|
14
|
+
.sc(CreateDeploymentGroup$)
|
|
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 { DeleteApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeleteApplication", {})
|
|
13
13
|
.n("CodeDeployClient", "DeleteApplicationCommand")
|
|
14
|
-
.sc(DeleteApplication)
|
|
14
|
+
.sc(DeleteApplication$)
|
|
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 { DeleteDeploymentConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDeploymentConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDeploymentConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDeploymentConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeleteDeploymentConfig", {})
|
|
13
13
|
.n("CodeDeployClient", "DeleteDeploymentConfigCommand")
|
|
14
|
-
.sc(DeleteDeploymentConfig)
|
|
14
|
+
.sc(DeleteDeploymentConfig$)
|
|
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 { DeleteDeploymentGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDeploymentGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDeploymentGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDeploymentGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeleteDeploymentGroup", {})
|
|
13
13
|
.n("CodeDeployClient", "DeleteDeploymentGroupCommand")
|
|
14
|
-
.sc(DeleteDeploymentGroup)
|
|
14
|
+
.sc(DeleteDeploymentGroup$)
|
|
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 { DeleteGitHubAccountToken } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGitHubAccountToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGitHubAccountTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGitHubAccountTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeleteGitHubAccountToken", {})
|
|
13
13
|
.n("CodeDeployClient", "DeleteGitHubAccountTokenCommand")
|
|
14
|
-
.sc(DeleteGitHubAccountToken)
|
|
14
|
+
.sc(DeleteGitHubAccountToken$)
|
|
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 { DeleteResourcesByExternalId } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourcesByExternalId$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourcesByExternalIdCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourcesByExternalIdCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeleteResourcesByExternalId", {})
|
|
13
13
|
.n("CodeDeployClient", "DeleteResourcesByExternalIdCommand")
|
|
14
|
-
.sc(DeleteResourcesByExternalId)
|
|
14
|
+
.sc(DeleteResourcesByExternalId$)
|
|
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 { DeregisterOnPremisesInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterOnPremisesInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterOnPremisesInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterOnPremisesInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "DeregisterOnPremisesInstance", {})
|
|
13
13
|
.n("CodeDeployClient", "DeregisterOnPremisesInstanceCommand")
|
|
14
|
-
.sc(DeregisterOnPremisesInstance)
|
|
14
|
+
.sc(DeregisterOnPremisesInstance$)
|
|
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 { GetApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetApplication", {})
|
|
13
13
|
.n("CodeDeployClient", "GetApplicationCommand")
|
|
14
|
-
.sc(GetApplication)
|
|
14
|
+
.sc(GetApplication$)
|
|
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 { GetApplicationRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApplicationRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetApplicationRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetApplicationRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetApplicationRevision", {})
|
|
13
13
|
.n("CodeDeployClient", "GetApplicationRevisionCommand")
|
|
14
|
-
.sc(GetApplicationRevision)
|
|
14
|
+
.sc(GetApplicationRevision$)
|
|
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 { GetDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetDeployment", {})
|
|
13
13
|
.n("CodeDeployClient", "GetDeploymentCommand")
|
|
14
|
-
.sc(GetDeployment)
|
|
14
|
+
.sc(GetDeployment$)
|
|
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 { GetDeploymentConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeploymentConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetDeploymentConfig", {})
|
|
13
13
|
.n("CodeDeployClient", "GetDeploymentConfigCommand")
|
|
14
|
-
.sc(GetDeploymentConfig)
|
|
14
|
+
.sc(GetDeploymentConfig$)
|
|
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 { GetDeploymentGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeploymentGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetDeploymentGroup", {})
|
|
13
13
|
.n("CodeDeployClient", "GetDeploymentGroupCommand")
|
|
14
|
-
.sc(GetDeploymentGroup)
|
|
14
|
+
.sc(GetDeploymentGroup$)
|
|
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 { GetDeploymentInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeploymentInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetDeploymentInstance", {})
|
|
13
13
|
.n("CodeDeployClient", "GetDeploymentInstanceCommand")
|
|
14
|
-
.sc(GetDeploymentInstance)
|
|
14
|
+
.sc(GetDeploymentInstance$)
|
|
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 { GetDeploymentTarget } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDeploymentTarget$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDeploymentTargetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDeploymentTargetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetDeploymentTarget", {})
|
|
13
13
|
.n("CodeDeployClient", "GetDeploymentTargetCommand")
|
|
14
|
-
.sc(GetDeploymentTarget)
|
|
14
|
+
.sc(GetDeploymentTarget$)
|
|
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 { GetOnPremisesInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetOnPremisesInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetOnPremisesInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetOnPremisesInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "GetOnPremisesInstance", {})
|
|
13
13
|
.n("CodeDeployClient", "GetOnPremisesInstanceCommand")
|
|
14
|
-
.sc(GetOnPremisesInstance)
|
|
14
|
+
.sc(GetOnPremisesInstance$)
|
|
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 { ListApplicationRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplicationRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListApplicationRevisions", {})
|
|
13
13
|
.n("CodeDeployClient", "ListApplicationRevisionsCommand")
|
|
14
|
-
.sc(ListApplicationRevisions)
|
|
14
|
+
.sc(ListApplicationRevisions$)
|
|
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 { ListApplications } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplications$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListApplications", {})
|
|
13
13
|
.n("CodeDeployClient", "ListApplicationsCommand")
|
|
14
|
-
.sc(ListApplications)
|
|
14
|
+
.sc(ListApplications$)
|
|
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 { ListDeploymentConfigs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeploymentConfigs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentConfigsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentConfigsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListDeploymentConfigs", {})
|
|
13
13
|
.n("CodeDeployClient", "ListDeploymentConfigsCommand")
|
|
14
|
-
.sc(ListDeploymentConfigs)
|
|
14
|
+
.sc(ListDeploymentConfigs$)
|
|
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 { ListDeploymentGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeploymentGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListDeploymentGroups", {})
|
|
13
13
|
.n("CodeDeployClient", "ListDeploymentGroupsCommand")
|
|
14
|
-
.sc(ListDeploymentGroups)
|
|
14
|
+
.sc(ListDeploymentGroups$)
|
|
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 { ListDeploymentInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeploymentInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListDeploymentInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "ListDeploymentInstancesCommand")
|
|
14
|
-
.sc(ListDeploymentInstances)
|
|
14
|
+
.sc(ListDeploymentInstances$)
|
|
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 { ListDeploymentTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeploymentTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListDeploymentTargets", {})
|
|
13
13
|
.n("CodeDeployClient", "ListDeploymentTargetsCommand")
|
|
14
|
-
.sc(ListDeploymentTargets)
|
|
14
|
+
.sc(ListDeploymentTargets$)
|
|
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 { ListDeployments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDeployments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDeploymentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDeploymentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListDeployments", {})
|
|
13
13
|
.n("CodeDeployClient", "ListDeploymentsCommand")
|
|
14
|
-
.sc(ListDeployments)
|
|
14
|
+
.sc(ListDeployments$)
|
|
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 { ListGitHubAccountTokenNames } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGitHubAccountTokenNames$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGitHubAccountTokenNamesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGitHubAccountTokenNamesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListGitHubAccountTokenNames", {})
|
|
13
13
|
.n("CodeDeployClient", "ListGitHubAccountTokenNamesCommand")
|
|
14
|
-
.sc(ListGitHubAccountTokenNames)
|
|
14
|
+
.sc(ListGitHubAccountTokenNames$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|