@aws-sdk/client-codedeploy 3.299.0 → 3.301.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.
Files changed (48) hide show
  1. package/dist-types/commands/AddTagsToOnPremisesInstancesCommand.d.ts +11 -0
  2. package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +27 -0
  3. package/dist-types/commands/BatchGetApplicationsCommand.d.ts +5 -0
  4. package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +6 -0
  5. package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +6 -0
  6. package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +6 -0
  7. package/dist-types/commands/BatchGetDeploymentsCommand.d.ts +5 -0
  8. package/dist-types/commands/BatchGetOnPremisesInstancesCommand.d.ts +5 -0
  9. package/dist-types/commands/ContinueDeploymentCommand.d.ts +4 -0
  10. package/dist-types/commands/CreateApplicationCommand.d.ts +10 -0
  11. package/dist-types/commands/CreateDeploymentCommand.d.ts +69 -0
  12. package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +19 -0
  13. package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +130 -0
  14. package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -0
  15. package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +3 -0
  16. package/dist-types/commands/DeleteDeploymentGroupCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteGitHubAccountTokenCommand.d.ts +3 -0
  18. package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +3 -0
  19. package/dist-types/commands/DeregisterOnPremisesInstanceCommand.d.ts +3 -0
  20. package/dist-types/commands/GetApplicationCommand.d.ts +3 -0
  21. package/dist-types/commands/GetApplicationRevisionCommand.d.ts +25 -0
  22. package/dist-types/commands/GetDeploymentCommand.d.ts +3 -0
  23. package/dist-types/commands/GetDeploymentConfigCommand.d.ts +3 -0
  24. package/dist-types/commands/GetDeploymentGroupCommand.d.ts +4 -0
  25. package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +4 -0
  26. package/dist-types/commands/GetDeploymentTargetCommand.d.ts +4 -0
  27. package/dist-types/commands/GetOnPremisesInstanceCommand.d.ts +3 -0
  28. package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +9 -0
  29. package/dist-types/commands/ListApplicationsCommand.d.ts +3 -0
  30. package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +3 -0
  31. package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +4 -0
  32. package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +10 -0
  33. package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +9 -0
  34. package/dist-types/commands/ListDeploymentsCommand.d.ts +13 -0
  35. package/dist-types/commands/ListGitHubAccountTokenNamesCommand.d.ts +3 -0
  36. package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +11 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -0
  38. package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +5 -0
  39. package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +26 -0
  40. package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +5 -0
  41. package/dist-types/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +11 -0
  42. package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +3 -0
  43. package/dist-types/commands/StopDeploymentCommand.d.ts +4 -0
  44. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  45. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  46. package/dist-types/commands/UpdateApplicationCommand.d.ts +4 -0
  47. package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +125 -0
  48. package/package.json +8 -8
@@ -26,6 +26,17 @@ export interface AddTagsToOnPremisesInstancesCommandOutput extends __MetadataBea
26
26
  * import { CodeDeployClient, AddTagsToOnPremisesInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, AddTagsToOnPremisesInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // AddTagsToOnPremisesInstancesInput
30
+ * tags: [ // TagList // required
31
+ * { // Tag
32
+ * Key: "STRING_VALUE",
33
+ * Value: "STRING_VALUE",
34
+ * },
35
+ * ],
36
+ * instanceNames: [ // InstanceNameList // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
29
40
  * const command = new AddTagsToOnPremisesInstancesCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -27,6 +27,33 @@ export interface BatchGetApplicationRevisionsCommandOutput extends BatchGetAppli
27
27
  * import { CodeDeployClient, BatchGetApplicationRevisionsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, BatchGetApplicationRevisionsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // BatchGetApplicationRevisionsInput
31
+ * applicationName: "STRING_VALUE", // required
32
+ * revisions: [ // RevisionLocationList // required
33
+ * { // RevisionLocation
34
+ * revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
35
+ * s3Location: { // S3Location
36
+ * bucket: "STRING_VALUE",
37
+ * key: "STRING_VALUE",
38
+ * bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
39
+ * version: "STRING_VALUE",
40
+ * eTag: "STRING_VALUE",
41
+ * },
42
+ * gitHubLocation: { // GitHubLocation
43
+ * repository: "STRING_VALUE",
44
+ * commitId: "STRING_VALUE",
45
+ * },
46
+ * string: { // RawString
47
+ * content: "STRING_VALUE",
48
+ * sha256: "STRING_VALUE",
49
+ * },
50
+ * appSpecContent: { // AppSpecContent
51
+ * content: "STRING_VALUE",
52
+ * sha256: "STRING_VALUE",
53
+ * },
54
+ * },
55
+ * ],
56
+ * };
30
57
  * const command = new BatchGetApplicationRevisionsCommand(input);
31
58
  * const response = await client.send(command);
32
59
  * ```
@@ -27,6 +27,11 @@ export interface BatchGetApplicationsCommandOutput extends BatchGetApplicationsO
27
27
  * import { CodeDeployClient, BatchGetApplicationsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, BatchGetApplicationsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // BatchGetApplicationsInput
31
+ * applicationNames: [ // ApplicationsList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
30
35
  * const command = new BatchGetApplicationsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -26,6 +26,12 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen
26
26
  * import { CodeDeployClient, BatchGetDeploymentGroupsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, BatchGetDeploymentGroupsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // BatchGetDeploymentGroupsInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * deploymentGroupNames: [ // DeploymentGroupsList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new BatchGetDeploymentGroupsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -35,6 +35,12 @@ export interface BatchGetDeploymentInstancesCommandOutput extends BatchGetDeploy
35
35
  * import { CodeDeployClient, BatchGetDeploymentInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
36
36
  * // const { CodeDeployClient, BatchGetDeploymentInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
37
37
  * const client = new CodeDeployClient(config);
38
+ * const input = { // BatchGetDeploymentInstancesInput
39
+ * deploymentId: "STRING_VALUE", // required
40
+ * instanceIds: [ // InstancesList // required
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * };
38
44
  * const command = new BatchGetDeploymentInstancesCommand(input);
39
45
  * const response = await client.send(command);
40
46
  * ```
@@ -52,6 +52,12 @@ export interface BatchGetDeploymentTargetsCommandOutput extends BatchGetDeployme
52
52
  * import { CodeDeployClient, BatchGetDeploymentTargetsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
53
53
  * // const { CodeDeployClient, BatchGetDeploymentTargetsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
54
54
  * const client = new CodeDeployClient(config);
55
+ * const input = { // BatchGetDeploymentTargetsInput
56
+ * deploymentId: "STRING_VALUE",
57
+ * targetIds: [ // TargetIdList
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * };
55
61
  * const command = new BatchGetDeploymentTargetsCommand(input);
56
62
  * const response = await client.send(command);
57
63
  * ```
@@ -27,6 +27,11 @@ export interface BatchGetDeploymentsCommandOutput extends BatchGetDeploymentsOut
27
27
  * import { CodeDeployClient, BatchGetDeploymentsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, BatchGetDeploymentsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // BatchGetDeploymentsInput
31
+ * deploymentIds: [ // DeploymentsList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
30
35
  * const command = new BatchGetDeploymentsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,11 @@ export interface BatchGetOnPremisesInstancesCommandOutput extends BatchGetOnPrem
27
27
  * import { CodeDeployClient, BatchGetOnPremisesInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, BatchGetOnPremisesInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // BatchGetOnPremisesInstancesInput
31
+ * instanceNames: [ // InstanceNameList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
30
35
  * const command = new BatchGetOnPremisesInstancesCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -30,6 +30,10 @@ export interface ContinueDeploymentCommandOutput extends __MetadataBearer {
30
30
  * import { CodeDeployClient, ContinueDeploymentCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
31
31
  * // const { CodeDeployClient, ContinueDeploymentCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
32
32
  * const client = new CodeDeployClient(config);
33
+ * const input = { // ContinueDeploymentInput
34
+ * deploymentId: "STRING_VALUE",
35
+ * deploymentWaitType: "READY_WAIT" || "TERMINATION_WAIT",
36
+ * };
33
37
  * const command = new ContinueDeploymentCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -26,6 +26,16 @@ export interface CreateApplicationCommandOutput extends CreateApplicationOutput,
26
26
  * import { CodeDeployClient, CreateApplicationCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, CreateApplicationCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // CreateApplicationInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * computePlatform: "Server" || "Lambda" || "ECS",
32
+ * tags: [ // TagList
33
+ * { // Tag
34
+ * Key: "STRING_VALUE",
35
+ * Value: "STRING_VALUE",
36
+ * },
37
+ * ],
38
+ * };
29
39
  * const command = new CreateApplicationCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,75 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
26
26
  * import { CodeDeployClient, CreateDeploymentCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, CreateDeploymentCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // CreateDeploymentInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * deploymentGroupName: "STRING_VALUE",
32
+ * revision: { // RevisionLocation
33
+ * revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
34
+ * s3Location: { // S3Location
35
+ * bucket: "STRING_VALUE",
36
+ * key: "STRING_VALUE",
37
+ * bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
38
+ * version: "STRING_VALUE",
39
+ * eTag: "STRING_VALUE",
40
+ * },
41
+ * gitHubLocation: { // GitHubLocation
42
+ * repository: "STRING_VALUE",
43
+ * commitId: "STRING_VALUE",
44
+ * },
45
+ * string: { // RawString
46
+ * content: "STRING_VALUE",
47
+ * sha256: "STRING_VALUE",
48
+ * },
49
+ * appSpecContent: { // AppSpecContent
50
+ * content: "STRING_VALUE",
51
+ * sha256: "STRING_VALUE",
52
+ * },
53
+ * },
54
+ * deploymentConfigName: "STRING_VALUE",
55
+ * description: "STRING_VALUE",
56
+ * ignoreApplicationStopFailures: true || false,
57
+ * targetInstances: { // TargetInstances
58
+ * tagFilters: [ // EC2TagFilterList
59
+ * { // EC2TagFilter
60
+ * Key: "STRING_VALUE",
61
+ * Value: "STRING_VALUE",
62
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
63
+ * },
64
+ * ],
65
+ * autoScalingGroups: [ // AutoScalingGroupNameList
66
+ * "STRING_VALUE",
67
+ * ],
68
+ * ec2TagSet: { // EC2TagSet
69
+ * ec2TagSetList: [ // EC2TagSetList
70
+ * [
71
+ * {
72
+ * Key: "STRING_VALUE",
73
+ * Value: "STRING_VALUE",
74
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
75
+ * },
76
+ * ],
77
+ * ],
78
+ * },
79
+ * },
80
+ * autoRollbackConfiguration: { // AutoRollbackConfiguration
81
+ * enabled: true || false,
82
+ * events: [ // AutoRollbackEventsList
83
+ * "DEPLOYMENT_FAILURE" || "DEPLOYMENT_STOP_ON_ALARM" || "DEPLOYMENT_STOP_ON_REQUEST",
84
+ * ],
85
+ * },
86
+ * updateOutdatedInstancesOnly: true || false,
87
+ * fileExistsBehavior: "DISALLOW" || "OVERWRITE" || "RETAIN",
88
+ * overrideAlarmConfiguration: { // AlarmConfiguration
89
+ * enabled: true || false,
90
+ * ignorePollAlarmFailure: true || false,
91
+ * alarms: [ // AlarmList
92
+ * { // Alarm
93
+ * name: "STRING_VALUE",
94
+ * },
95
+ * ],
96
+ * },
97
+ * };
29
98
  * const command = new CreateDeploymentCommand(input);
30
99
  * const response = await client.send(command);
31
100
  * ```
@@ -26,6 +26,25 @@ export interface CreateDeploymentConfigCommandOutput extends CreateDeploymentCon
26
26
  * import { CodeDeployClient, CreateDeploymentConfigCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, CreateDeploymentConfigCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // CreateDeploymentConfigInput
30
+ * deploymentConfigName: "STRING_VALUE", // required
31
+ * minimumHealthyHosts: { // MinimumHealthyHosts
32
+ * type: "HOST_COUNT" || "FLEET_PERCENT",
33
+ * value: Number("int"),
34
+ * },
35
+ * trafficRoutingConfig: { // TrafficRoutingConfig
36
+ * type: "TimeBasedCanary" || "TimeBasedLinear" || "AllAtOnce",
37
+ * timeBasedCanary: { // TimeBasedCanary
38
+ * canaryPercentage: Number("int"),
39
+ * canaryInterval: Number("int"),
40
+ * },
41
+ * timeBasedLinear: { // TimeBasedLinear
42
+ * linearPercentage: Number("int"),
43
+ * linearInterval: Number("int"),
44
+ * },
45
+ * },
46
+ * computePlatform: "Server" || "Lambda" || "ECS",
47
+ * };
29
48
  * const command = new CreateDeploymentConfigCommand(input);
30
49
  * const response = await client.send(command);
31
50
  * ```
@@ -26,6 +26,136 @@ export interface CreateDeploymentGroupCommandOutput extends CreateDeploymentGrou
26
26
  * import { CodeDeployClient, CreateDeploymentGroupCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, CreateDeploymentGroupCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // CreateDeploymentGroupInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * deploymentGroupName: "STRING_VALUE", // required
32
+ * deploymentConfigName: "STRING_VALUE",
33
+ * ec2TagFilters: [ // EC2TagFilterList
34
+ * { // EC2TagFilter
35
+ * Key: "STRING_VALUE",
36
+ * Value: "STRING_VALUE",
37
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
38
+ * },
39
+ * ],
40
+ * onPremisesInstanceTagFilters: [ // TagFilterList
41
+ * { // TagFilter
42
+ * Key: "STRING_VALUE",
43
+ * Value: "STRING_VALUE",
44
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
45
+ * },
46
+ * ],
47
+ * autoScalingGroups: [ // AutoScalingGroupNameList
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * serviceRoleArn: "STRING_VALUE", // required
51
+ * triggerConfigurations: [ // TriggerConfigList
52
+ * { // TriggerConfig
53
+ * triggerName: "STRING_VALUE",
54
+ * triggerTargetArn: "STRING_VALUE",
55
+ * triggerEvents: [ // TriggerEventTypeList
56
+ * "DeploymentStart" || "DeploymentSuccess" || "DeploymentFailure" || "DeploymentStop" || "DeploymentRollback" || "DeploymentReady" || "InstanceStart" || "InstanceSuccess" || "InstanceFailure" || "InstanceReady",
57
+ * ],
58
+ * },
59
+ * ],
60
+ * alarmConfiguration: { // AlarmConfiguration
61
+ * enabled: true || false,
62
+ * ignorePollAlarmFailure: true || false,
63
+ * alarms: [ // AlarmList
64
+ * { // Alarm
65
+ * name: "STRING_VALUE",
66
+ * },
67
+ * ],
68
+ * },
69
+ * autoRollbackConfiguration: { // AutoRollbackConfiguration
70
+ * enabled: true || false,
71
+ * events: [ // AutoRollbackEventsList
72
+ * "DEPLOYMENT_FAILURE" || "DEPLOYMENT_STOP_ON_ALARM" || "DEPLOYMENT_STOP_ON_REQUEST",
73
+ * ],
74
+ * },
75
+ * outdatedInstancesStrategy: "UPDATE" || "IGNORE",
76
+ * deploymentStyle: { // DeploymentStyle
77
+ * deploymentType: "IN_PLACE" || "BLUE_GREEN",
78
+ * deploymentOption: "WITH_TRAFFIC_CONTROL" || "WITHOUT_TRAFFIC_CONTROL",
79
+ * },
80
+ * blueGreenDeploymentConfiguration: { // BlueGreenDeploymentConfiguration
81
+ * terminateBlueInstancesOnDeploymentSuccess: { // BlueInstanceTerminationOption
82
+ * action: "TERMINATE" || "KEEP_ALIVE",
83
+ * terminationWaitTimeInMinutes: Number("int"),
84
+ * },
85
+ * deploymentReadyOption: { // DeploymentReadyOption
86
+ * actionOnTimeout: "CONTINUE_DEPLOYMENT" || "STOP_DEPLOYMENT",
87
+ * waitTimeInMinutes: Number("int"),
88
+ * },
89
+ * greenFleetProvisioningOption: { // GreenFleetProvisioningOption
90
+ * action: "DISCOVER_EXISTING" || "COPY_AUTO_SCALING_GROUP",
91
+ * },
92
+ * },
93
+ * loadBalancerInfo: { // LoadBalancerInfo
94
+ * elbInfoList: [ // ELBInfoList
95
+ * { // ELBInfo
96
+ * name: "STRING_VALUE",
97
+ * },
98
+ * ],
99
+ * targetGroupInfoList: [ // TargetGroupInfoList
100
+ * { // TargetGroupInfo
101
+ * name: "STRING_VALUE",
102
+ * },
103
+ * ],
104
+ * targetGroupPairInfoList: [ // TargetGroupPairInfoList
105
+ * { // TargetGroupPairInfo
106
+ * targetGroups: [
107
+ * {
108
+ * name: "STRING_VALUE",
109
+ * },
110
+ * ],
111
+ * prodTrafficRoute: { // TrafficRoute
112
+ * listenerArns: [ // ListenerArnList
113
+ * "STRING_VALUE",
114
+ * ],
115
+ * },
116
+ * testTrafficRoute: {
117
+ * listenerArns: [
118
+ * "STRING_VALUE",
119
+ * ],
120
+ * },
121
+ * },
122
+ * ],
123
+ * },
124
+ * ec2TagSet: { // EC2TagSet
125
+ * ec2TagSetList: [ // EC2TagSetList
126
+ * [
127
+ * {
128
+ * Key: "STRING_VALUE",
129
+ * Value: "STRING_VALUE",
130
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
131
+ * },
132
+ * ],
133
+ * ],
134
+ * },
135
+ * ecsServices: [ // ECSServiceList
136
+ * { // ECSService
137
+ * serviceName: "STRING_VALUE",
138
+ * clusterName: "STRING_VALUE",
139
+ * },
140
+ * ],
141
+ * onPremisesTagSet: { // OnPremisesTagSet
142
+ * onPremisesTagSetList: [ // OnPremisesTagSetList
143
+ * [
144
+ * {
145
+ * Key: "STRING_VALUE",
146
+ * Value: "STRING_VALUE",
147
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
148
+ * },
149
+ * ],
150
+ * ],
151
+ * },
152
+ * tags: [ // TagList
153
+ * { // Tag
154
+ * Key: "STRING_VALUE",
155
+ * Value: "STRING_VALUE",
156
+ * },
157
+ * ],
158
+ * };
29
159
  * const command = new CreateDeploymentGroupCommand(input);
30
160
  * const response = await client.send(command);
31
161
  * ```
@@ -26,6 +26,9 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
26
26
  * import { CodeDeployClient, DeleteApplicationCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, DeleteApplicationCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // DeleteApplicationInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteApplicationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -30,6 +30,9 @@ export interface DeleteDeploymentConfigCommandOutput extends __MetadataBearer {
30
30
  * import { CodeDeployClient, DeleteDeploymentConfigCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
31
31
  * // const { CodeDeployClient, DeleteDeploymentConfigCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
32
32
  * const client = new CodeDeployClient(config);
33
+ * const input = { // DeleteDeploymentConfigInput
34
+ * deploymentConfigName: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteDeploymentConfigCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -26,6 +26,10 @@ export interface DeleteDeploymentGroupCommandOutput extends DeleteDeploymentGrou
26
26
  * import { CodeDeployClient, DeleteDeploymentGroupCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, DeleteDeploymentGroupCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // DeleteDeploymentGroupInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * deploymentGroupName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteDeploymentGroupCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteGitHubAccountTokenCommandOutput extends DeleteGitHubAccou
26
26
  * import { CodeDeployClient, DeleteGitHubAccountTokenCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, DeleteGitHubAccountTokenCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // DeleteGitHubAccountTokenInput
30
+ * tokenName: "STRING_VALUE",
31
+ * };
29
32
  * const command = new DeleteGitHubAccountTokenCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteResourcesByExternalIdCommandOutput extends DeleteResource
26
26
  * import { CodeDeployClient, DeleteResourcesByExternalIdCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, DeleteResourcesByExternalIdCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // DeleteResourcesByExternalIdInput
30
+ * externalId: "STRING_VALUE",
31
+ * };
29
32
  * const command = new DeleteResourcesByExternalIdCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeregisterOnPremisesInstanceCommandOutput extends __MetadataBea
26
26
  * import { CodeDeployClient, DeregisterOnPremisesInstanceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, DeregisterOnPremisesInstanceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // DeregisterOnPremisesInstanceInput
30
+ * instanceName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeregisterOnPremisesInstanceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
26
26
  * import { CodeDeployClient, GetApplicationCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetApplicationCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetApplicationInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetApplicationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,31 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
26
26
  * import { CodeDeployClient, GetApplicationRevisionCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetApplicationRevisionCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetApplicationRevisionInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * revision: { // RevisionLocation
32
+ * revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
33
+ * s3Location: { // S3Location
34
+ * bucket: "STRING_VALUE",
35
+ * key: "STRING_VALUE",
36
+ * bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
37
+ * version: "STRING_VALUE",
38
+ * eTag: "STRING_VALUE",
39
+ * },
40
+ * gitHubLocation: { // GitHubLocation
41
+ * repository: "STRING_VALUE",
42
+ * commitId: "STRING_VALUE",
43
+ * },
44
+ * string: { // RawString
45
+ * content: "STRING_VALUE",
46
+ * sha256: "STRING_VALUE",
47
+ * },
48
+ * appSpecContent: { // AppSpecContent
49
+ * content: "STRING_VALUE",
50
+ * sha256: "STRING_VALUE",
51
+ * },
52
+ * },
53
+ * };
29
54
  * const command = new GetApplicationRevisionCommand(input);
30
55
  * const response = await client.send(command);
31
56
  * ```
@@ -32,6 +32,9 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
32
32
  * import { CodeDeployClient, GetDeploymentCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
33
33
  * // const { CodeDeployClient, GetDeploymentCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
34
34
  * const client = new CodeDeployClient(config);
35
+ * const input = { // GetDeploymentInput
36
+ * deploymentId: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new GetDeploymentCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -26,6 +26,9 @@ export interface GetDeploymentConfigCommandOutput extends GetDeploymentConfigOut
26
26
  * import { CodeDeployClient, GetDeploymentConfigCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetDeploymentConfigCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetDeploymentConfigInput
30
+ * deploymentConfigName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDeploymentConfigCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
26
26
  * import { CodeDeployClient, GetDeploymentGroupCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetDeploymentGroupCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetDeploymentGroupInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * deploymentGroupName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetDeploymentGroupCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -28,6 +28,10 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
28
28
  * import { CodeDeployClient, GetDeploymentInstanceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
29
29
  * // const { CodeDeployClient, GetDeploymentInstanceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
30
30
  * const client = new CodeDeployClient(config);
31
+ * const input = { // GetDeploymentInstanceInput
32
+ * deploymentId: "STRING_VALUE", // required
33
+ * instanceId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new GetDeploymentInstanceCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
26
26
  * import { CodeDeployClient, GetDeploymentTargetCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetDeploymentTargetCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetDeploymentTargetInput
30
+ * deploymentId: "STRING_VALUE",
31
+ * targetId: "STRING_VALUE",
32
+ * };
29
33
  * const command = new GetDeploymentTargetCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetOnPremisesInstanceCommandOutput extends GetOnPremisesInstanc
26
26
  * import { CodeDeployClient, GetOnPremisesInstanceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, GetOnPremisesInstanceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // GetOnPremisesInstanceInput
30
+ * instanceName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetOnPremisesInstanceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,15 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
26
26
  * import { CodeDeployClient, ListApplicationRevisionsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, ListApplicationRevisionsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // ListApplicationRevisionsInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * sortBy: "registerTime" || "firstUsedTime" || "lastUsedTime",
32
+ * sortOrder: "ascending" || "descending",
33
+ * s3Bucket: "STRING_VALUE",
34
+ * s3KeyPrefix: "STRING_VALUE",
35
+ * deployed: "include" || "exclude" || "ignore",
36
+ * nextToken: "STRING_VALUE",
37
+ * };
29
38
  * const command = new ListApplicationRevisionsCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,9 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
26
26
  * import { CodeDeployClient, ListApplicationsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, ListApplicationsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // ListApplicationsInput
30
+ * nextToken: "STRING_VALUE",
31
+ * };
29
32
  * const command = new ListApplicationsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
26
26
  * import { CodeDeployClient, ListDeploymentConfigsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, ListDeploymentConfigsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // ListDeploymentConfigsInput
30
+ * nextToken: "STRING_VALUE",
31
+ * };
29
32
  * const command = new ListDeploymentConfigsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
27
27
  * import { CodeDeployClient, ListDeploymentGroupsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, ListDeploymentGroupsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // ListDeploymentGroupsInput
31
+ * applicationName: "STRING_VALUE", // required
32
+ * nextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListDeploymentGroupsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -35,6 +35,16 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
35
35
  * import { CodeDeployClient, ListDeploymentInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
36
36
  * // const { CodeDeployClient, ListDeploymentInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
37
37
  * const client = new CodeDeployClient(config);
38
+ * const input = { // ListDeploymentInstancesInput
39
+ * deploymentId: "STRING_VALUE", // required
40
+ * nextToken: "STRING_VALUE",
41
+ * instanceStatusFilter: [ // InstanceStatusList
42
+ * "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
43
+ * ],
44
+ * instanceTypeFilter: [ // InstanceTypeList
45
+ * "Blue" || "Green",
46
+ * ],
47
+ * };
38
48
  * const command = new ListDeploymentInstancesCommand(input);
39
49
  * const response = await client.send(command);
40
50
  * ```
@@ -26,6 +26,15 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
26
26
  * import { CodeDeployClient, ListDeploymentTargetsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, ListDeploymentTargetsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // ListDeploymentTargetsInput
30
+ * deploymentId: "STRING_VALUE",
31
+ * nextToken: "STRING_VALUE",
32
+ * targetFilters: { // TargetFilters
33
+ * "<keys>": [ // FilterValueList
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * },
37
+ * };
29
38
  * const command = new ListDeploymentTargetsCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -27,6 +27,19 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
27
27
  * import { CodeDeployClient, ListDeploymentsCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, ListDeploymentsCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // ListDeploymentsInput
31
+ * applicationName: "STRING_VALUE",
32
+ * deploymentGroupName: "STRING_VALUE",
33
+ * externalId: "STRING_VALUE",
34
+ * includeOnlyStatuses: [ // DeploymentStatusList
35
+ * "Created" || "Queued" || "InProgress" || "Baking" || "Succeeded" || "Failed" || "Stopped" || "Ready",
36
+ * ],
37
+ * createTimeRange: { // TimeRange
38
+ * start: new Date("TIMESTAMP"),
39
+ * end: new Date("TIMESTAMP"),
40
+ * },
41
+ * nextToken: "STRING_VALUE",
42
+ * };
30
43
  * const command = new ListDeploymentsCommand(input);
31
44
  * const response = await client.send(command);
32
45
  * ```
@@ -26,6 +26,9 @@ export interface ListGitHubAccountTokenNamesCommandOutput extends ListGitHubAcco
26
26
  * import { CodeDeployClient, ListGitHubAccountTokenNamesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, ListGitHubAccountTokenNamesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // ListGitHubAccountTokenNamesInput
30
+ * nextToken: "STRING_VALUE",
31
+ * };
29
32
  * const command = new ListGitHubAccountTokenNamesCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -29,6 +29,17 @@ export interface ListOnPremisesInstancesCommandOutput extends ListOnPremisesInst
29
29
  * import { CodeDeployClient, ListOnPremisesInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
30
30
  * // const { CodeDeployClient, ListOnPremisesInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
31
31
  * const client = new CodeDeployClient(config);
32
+ * const input = { // ListOnPremisesInstancesInput
33
+ * registrationStatus: "Registered" || "Deregistered",
34
+ * tagFilters: [ // TagFilterList
35
+ * { // TagFilter
36
+ * Key: "STRING_VALUE",
37
+ * Value: "STRING_VALUE",
38
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
39
+ * },
40
+ * ],
41
+ * nextToken: "STRING_VALUE",
42
+ * };
32
43
  * const command = new ListOnPremisesInstancesCommand(input);
33
44
  * const response = await client.send(command);
34
45
  * ```
@@ -27,6 +27,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
27
27
  * import { CodeDeployClient, ListTagsForResourceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // ListTagsForResourceInput
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ListTagsForResourceCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -34,6 +34,11 @@ export interface PutLifecycleEventHookExecutionStatusCommandOutput extends PutLi
34
34
  * import { CodeDeployClient, PutLifecycleEventHookExecutionStatusCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
35
35
  * // const { CodeDeployClient, PutLifecycleEventHookExecutionStatusCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
36
36
  * const client = new CodeDeployClient(config);
37
+ * const input = { // PutLifecycleEventHookExecutionStatusInput
38
+ * deploymentId: "STRING_VALUE",
39
+ * lifecycleEventHookExecutionId: "STRING_VALUE",
40
+ * status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
41
+ * };
37
42
  * const command = new PutLifecycleEventHookExecutionStatusCommand(input);
38
43
  * const response = await client.send(command);
39
44
  * ```
@@ -26,6 +26,32 @@ export interface RegisterApplicationRevisionCommandOutput extends __MetadataBear
26
26
  * import { CodeDeployClient, RegisterApplicationRevisionCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, RegisterApplicationRevisionCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // RegisterApplicationRevisionInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * revision: { // RevisionLocation
33
+ * revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
34
+ * s3Location: { // S3Location
35
+ * bucket: "STRING_VALUE",
36
+ * key: "STRING_VALUE",
37
+ * bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
38
+ * version: "STRING_VALUE",
39
+ * eTag: "STRING_VALUE",
40
+ * },
41
+ * gitHubLocation: { // GitHubLocation
42
+ * repository: "STRING_VALUE",
43
+ * commitId: "STRING_VALUE",
44
+ * },
45
+ * string: { // RawString
46
+ * content: "STRING_VALUE",
47
+ * sha256: "STRING_VALUE",
48
+ * },
49
+ * appSpecContent: { // AppSpecContent
50
+ * content: "STRING_VALUE",
51
+ * sha256: "STRING_VALUE",
52
+ * },
53
+ * },
54
+ * };
29
55
  * const command = new RegisterApplicationRevisionCommand(input);
30
56
  * const response = await client.send(command);
31
57
  * ```
@@ -29,6 +29,11 @@ export interface RegisterOnPremisesInstanceCommandOutput extends __MetadataBeare
29
29
  * import { CodeDeployClient, RegisterOnPremisesInstanceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
30
30
  * // const { CodeDeployClient, RegisterOnPremisesInstanceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
31
31
  * const client = new CodeDeployClient(config);
32
+ * const input = { // RegisterOnPremisesInstanceInput
33
+ * instanceName: "STRING_VALUE", // required
34
+ * iamSessionArn: "STRING_VALUE",
35
+ * iamUserArn: "STRING_VALUE",
36
+ * };
32
37
  * const command = new RegisterOnPremisesInstanceCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -26,6 +26,17 @@ export interface RemoveTagsFromOnPremisesInstancesCommandOutput extends __Metada
26
26
  * import { CodeDeployClient, RemoveTagsFromOnPremisesInstancesCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, RemoveTagsFromOnPremisesInstancesCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // RemoveTagsFromOnPremisesInstancesInput
30
+ * tags: [ // TagList // required
31
+ * { // Tag
32
+ * Key: "STRING_VALUE",
33
+ * Value: "STRING_VALUE",
34
+ * },
35
+ * ],
36
+ * instanceNames: [ // InstanceNameList // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
29
40
  * const command = new RemoveTagsFromOnPremisesInstancesCommand(input);
30
41
  * const response = await client.send(command);
31
42
  * ```
@@ -29,6 +29,9 @@ export interface SkipWaitTimeForInstanceTerminationCommandOutput extends __Metad
29
29
  * import { CodeDeployClient, SkipWaitTimeForInstanceTerminationCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
30
30
  * // const { CodeDeployClient, SkipWaitTimeForInstanceTerminationCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
31
31
  * const client = new CodeDeployClient(config);
32
+ * const input = { // SkipWaitTimeForInstanceTerminationInput
33
+ * deploymentId: "STRING_VALUE",
34
+ * };
32
35
  * const command = new SkipWaitTimeForInstanceTerminationCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -26,6 +26,10 @@ export interface StopDeploymentCommandOutput extends StopDeploymentOutput, __Met
26
26
  * import { CodeDeployClient, StopDeploymentCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, StopDeploymentCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // StopDeploymentInput
30
+ * deploymentId: "STRING_VALUE", // required
31
+ * autoRollbackEnabled: true || false,
32
+ * };
29
33
  * const command = new StopDeploymentCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
27
  * import { CodeDeployClient, TagResourceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
28
28
  * // const { CodeDeployClient, TagResourceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
29
29
  * const client = new CodeDeployClient(config);
30
+ * const input = { // TagResourceInput
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * Tags: [ // TagList // required
33
+ * { // Tag
34
+ * Key: "STRING_VALUE",
35
+ * Value: "STRING_VALUE",
36
+ * },
37
+ * ],
38
+ * };
30
39
  * const command = new TagResourceCommand(input);
31
40
  * const response = await client.send(command);
32
41
  * ```
@@ -28,6 +28,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
28
28
  * import { CodeDeployClient, UntagResourceCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
29
29
  * // const { CodeDeployClient, UntagResourceCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
30
30
  * const client = new CodeDeployClient(config);
31
+ * const input = { // UntagResourceInput
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * TagKeys: [ // TagKeyList // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
31
37
  * const command = new UntagResourceCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -26,6 +26,10 @@ export interface UpdateApplicationCommandOutput extends __MetadataBearer {
26
26
  * import { CodeDeployClient, UpdateApplicationCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, UpdateApplicationCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // UpdateApplicationInput
30
+ * applicationName: "STRING_VALUE",
31
+ * newApplicationName: "STRING_VALUE",
32
+ * };
29
33
  * const command = new UpdateApplicationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,131 @@ export interface UpdateDeploymentGroupCommandOutput extends UpdateDeploymentGrou
26
26
  * import { CodeDeployClient, UpdateDeploymentGroupCommand } from "@aws-sdk/client-codedeploy"; // ES Modules import
27
27
  * // const { CodeDeployClient, UpdateDeploymentGroupCommand } = require("@aws-sdk/client-codedeploy"); // CommonJS import
28
28
  * const client = new CodeDeployClient(config);
29
+ * const input = { // UpdateDeploymentGroupInput
30
+ * applicationName: "STRING_VALUE", // required
31
+ * currentDeploymentGroupName: "STRING_VALUE", // required
32
+ * newDeploymentGroupName: "STRING_VALUE",
33
+ * deploymentConfigName: "STRING_VALUE",
34
+ * ec2TagFilters: [ // EC2TagFilterList
35
+ * { // EC2TagFilter
36
+ * Key: "STRING_VALUE",
37
+ * Value: "STRING_VALUE",
38
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
39
+ * },
40
+ * ],
41
+ * onPremisesInstanceTagFilters: [ // TagFilterList
42
+ * { // TagFilter
43
+ * Key: "STRING_VALUE",
44
+ * Value: "STRING_VALUE",
45
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
46
+ * },
47
+ * ],
48
+ * autoScalingGroups: [ // AutoScalingGroupNameList
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * serviceRoleArn: "STRING_VALUE",
52
+ * triggerConfigurations: [ // TriggerConfigList
53
+ * { // TriggerConfig
54
+ * triggerName: "STRING_VALUE",
55
+ * triggerTargetArn: "STRING_VALUE",
56
+ * triggerEvents: [ // TriggerEventTypeList
57
+ * "DeploymentStart" || "DeploymentSuccess" || "DeploymentFailure" || "DeploymentStop" || "DeploymentRollback" || "DeploymentReady" || "InstanceStart" || "InstanceSuccess" || "InstanceFailure" || "InstanceReady",
58
+ * ],
59
+ * },
60
+ * ],
61
+ * alarmConfiguration: { // AlarmConfiguration
62
+ * enabled: true || false,
63
+ * ignorePollAlarmFailure: true || false,
64
+ * alarms: [ // AlarmList
65
+ * { // Alarm
66
+ * name: "STRING_VALUE",
67
+ * },
68
+ * ],
69
+ * },
70
+ * autoRollbackConfiguration: { // AutoRollbackConfiguration
71
+ * enabled: true || false,
72
+ * events: [ // AutoRollbackEventsList
73
+ * "DEPLOYMENT_FAILURE" || "DEPLOYMENT_STOP_ON_ALARM" || "DEPLOYMENT_STOP_ON_REQUEST",
74
+ * ],
75
+ * },
76
+ * outdatedInstancesStrategy: "UPDATE" || "IGNORE",
77
+ * deploymentStyle: { // DeploymentStyle
78
+ * deploymentType: "IN_PLACE" || "BLUE_GREEN",
79
+ * deploymentOption: "WITH_TRAFFIC_CONTROL" || "WITHOUT_TRAFFIC_CONTROL",
80
+ * },
81
+ * blueGreenDeploymentConfiguration: { // BlueGreenDeploymentConfiguration
82
+ * terminateBlueInstancesOnDeploymentSuccess: { // BlueInstanceTerminationOption
83
+ * action: "TERMINATE" || "KEEP_ALIVE",
84
+ * terminationWaitTimeInMinutes: Number("int"),
85
+ * },
86
+ * deploymentReadyOption: { // DeploymentReadyOption
87
+ * actionOnTimeout: "CONTINUE_DEPLOYMENT" || "STOP_DEPLOYMENT",
88
+ * waitTimeInMinutes: Number("int"),
89
+ * },
90
+ * greenFleetProvisioningOption: { // GreenFleetProvisioningOption
91
+ * action: "DISCOVER_EXISTING" || "COPY_AUTO_SCALING_GROUP",
92
+ * },
93
+ * },
94
+ * loadBalancerInfo: { // LoadBalancerInfo
95
+ * elbInfoList: [ // ELBInfoList
96
+ * { // ELBInfo
97
+ * name: "STRING_VALUE",
98
+ * },
99
+ * ],
100
+ * targetGroupInfoList: [ // TargetGroupInfoList
101
+ * { // TargetGroupInfo
102
+ * name: "STRING_VALUE",
103
+ * },
104
+ * ],
105
+ * targetGroupPairInfoList: [ // TargetGroupPairInfoList
106
+ * { // TargetGroupPairInfo
107
+ * targetGroups: [
108
+ * {
109
+ * name: "STRING_VALUE",
110
+ * },
111
+ * ],
112
+ * prodTrafficRoute: { // TrafficRoute
113
+ * listenerArns: [ // ListenerArnList
114
+ * "STRING_VALUE",
115
+ * ],
116
+ * },
117
+ * testTrafficRoute: {
118
+ * listenerArns: [
119
+ * "STRING_VALUE",
120
+ * ],
121
+ * },
122
+ * },
123
+ * ],
124
+ * },
125
+ * ec2TagSet: { // EC2TagSet
126
+ * ec2TagSetList: [ // EC2TagSetList
127
+ * [
128
+ * {
129
+ * Key: "STRING_VALUE",
130
+ * Value: "STRING_VALUE",
131
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
132
+ * },
133
+ * ],
134
+ * ],
135
+ * },
136
+ * ecsServices: [ // ECSServiceList
137
+ * { // ECSService
138
+ * serviceName: "STRING_VALUE",
139
+ * clusterName: "STRING_VALUE",
140
+ * },
141
+ * ],
142
+ * onPremisesTagSet: { // OnPremisesTagSet
143
+ * onPremisesTagSetList: [ // OnPremisesTagSetList
144
+ * [
145
+ * {
146
+ * Key: "STRING_VALUE",
147
+ * Value: "STRING_VALUE",
148
+ * Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
149
+ * },
150
+ * ],
151
+ * ],
152
+ * },
153
+ * };
29
154
  * const command = new UpdateDeploymentGroupCommand(input);
30
155
  * const response = await client.send(command);
31
156
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codedeploy",
3
3
  "description": "AWS SDK for JavaScript Codedeploy Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "@aws-sdk/util-waiter": "3.296.0",
57
57
  "tslib": "^2.5.0"