@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
|
@@ -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 { ListOnPremisesInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListOnPremisesInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListOnPremisesInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListOnPremisesInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "ListOnPremisesInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "ListOnPremisesInstancesCommand")
|
|
14
|
-
.sc(ListOnPremisesInstances)
|
|
14
|
+
.sc(ListOnPremisesInstances$)
|
|
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("CodeDeploy_20141006", "ListTagsForResource", {})
|
|
13
13
|
.n("CodeDeployClient", "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 { PutLifecycleEventHookExecutionStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { PutLifecycleEventHookExecutionStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutLifecycleEventHookExecutionStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutLifecycleEventHookExecutionStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "PutLifecycleEventHookExecutionStatus", {})
|
|
13
13
|
.n("CodeDeployClient", "PutLifecycleEventHookExecutionStatusCommand")
|
|
14
|
-
.sc(PutLifecycleEventHookExecutionStatus)
|
|
14
|
+
.sc(PutLifecycleEventHookExecutionStatus$)
|
|
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 { RegisterApplicationRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterApplicationRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterApplicationRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterApplicationRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "RegisterApplicationRevision", {})
|
|
13
13
|
.n("CodeDeployClient", "RegisterApplicationRevisionCommand")
|
|
14
|
-
.sc(RegisterApplicationRevision)
|
|
14
|
+
.sc(RegisterApplicationRevision$)
|
|
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 { RegisterOnPremisesInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterOnPremisesInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterOnPremisesInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterOnPremisesInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "RegisterOnPremisesInstance", {})
|
|
13
13
|
.n("CodeDeployClient", "RegisterOnPremisesInstanceCommand")
|
|
14
|
-
.sc(RegisterOnPremisesInstance)
|
|
14
|
+
.sc(RegisterOnPremisesInstance$)
|
|
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 { RemoveTagsFromOnPremisesInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveTagsFromOnPremisesInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsFromOnPremisesInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveTagsFromOnPremisesInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "RemoveTagsFromOnPremisesInstances", {})
|
|
13
13
|
.n("CodeDeployClient", "RemoveTagsFromOnPremisesInstancesCommand")
|
|
14
|
-
.sc(RemoveTagsFromOnPremisesInstances)
|
|
14
|
+
.sc(RemoveTagsFromOnPremisesInstances$)
|
|
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 { SkipWaitTimeForInstanceTermination } from "../schemas/schemas_0";
|
|
4
|
+
import { SkipWaitTimeForInstanceTermination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SkipWaitTimeForInstanceTerminationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SkipWaitTimeForInstanceTerminationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "SkipWaitTimeForInstanceTermination", {})
|
|
13
13
|
.n("CodeDeployClient", "SkipWaitTimeForInstanceTerminationCommand")
|
|
14
|
-
.sc(SkipWaitTimeForInstanceTermination)
|
|
14
|
+
.sc(SkipWaitTimeForInstanceTermination$)
|
|
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 { StopDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { StopDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "StopDeployment", {})
|
|
13
13
|
.n("CodeDeployClient", "StopDeploymentCommand")
|
|
14
|
-
.sc(StopDeployment)
|
|
14
|
+
.sc(StopDeployment$)
|
|
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("CodeDeploy_20141006", "TagResource", {})
|
|
13
13
|
.n("CodeDeployClient", "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("CodeDeploy_20141006", "UntagResource", {})
|
|
13
13
|
.n("CodeDeployClient", "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 { UpdateApplication } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApplication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateApplicationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateApplicationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "UpdateApplication", {})
|
|
13
13
|
.n("CodeDeployClient", "UpdateApplicationCommand")
|
|
14
|
-
.sc(UpdateApplication)
|
|
14
|
+
.sc(UpdateApplication$)
|
|
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 { UpdateDeploymentGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDeploymentGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDeploymentGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDeploymentGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeDeploy_20141006", "UpdateDeploymentGroup", {})
|
|
13
13
|
.n("CodeDeployClient", "UpdateDeploymentGroupCommand")
|
|
14
|
-
.sc(UpdateDeploymentGroup)
|
|
14
|
+
.sc(UpdateDeploymentGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.codedeploy",
|
|
29
|
+
xmlNamespace: "http://codedeploy.amazonaws.com/doc/2014-10-06/",
|
|
30
|
+
version: "2014-10-06",
|
|
31
|
+
serviceTarget: "CodeDeploy_20141006",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "CodeDeploy",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|