@aws-sdk/client-codedeploy 3.321.1 → 3.326.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 +4 -0
  2. package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +42 -0
  3. package/dist-types/commands/BatchGetApplicationsCommand.d.ts +15 -0
  4. package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +171 -0
  5. package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +29 -0
  6. package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +117 -0
  7. package/dist-types/commands/BatchGetDeploymentsCommand.d.ts +182 -0
  8. package/dist-types/commands/BatchGetOnPremisesInstancesCommand.d.ts +21 -0
  9. package/dist-types/commands/ContinueDeploymentCommand.d.ts +4 -0
  10. package/dist-types/commands/CreateApplicationCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateDeploymentCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +6 -0
  14. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteDeploymentGroupCommand.d.ts +11 -0
  17. package/dist-types/commands/DeleteGitHubAccountTokenCommand.d.ts +6 -0
  18. package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +4 -0
  19. package/dist-types/commands/DeregisterOnPremisesInstanceCommand.d.ts +4 -0
  20. package/dist-types/commands/GetApplicationCommand.d.ts +13 -0
  21. package/dist-types/commands/GetApplicationRevisionCommand.d.ts +37 -0
  22. package/dist-types/commands/GetDeploymentCommand.d.ts +180 -0
  23. package/dist-types/commands/GetDeploymentConfigCommand.d.ts +26 -0
  24. package/dist-types/commands/GetDeploymentGroupCommand.d.ts +168 -0
  25. package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +26 -0
  26. package/dist-types/commands/GetDeploymentTargetCommand.d.ts +115 -0
  27. package/dist-types/commands/GetOnPremisesInstanceCommand.d.ts +19 -0
  28. package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +30 -0
  29. package/dist-types/commands/ListApplicationsCommand.d.ts +9 -0
  30. package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +9 -0
  31. package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +10 -0
  32. package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +9 -0
  33. package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +9 -0
  34. package/dist-types/commands/ListDeploymentsCommand.d.ts +9 -0
  35. package/dist-types/commands/ListGitHubAccountTokenNamesCommand.d.ts +9 -0
  36. package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +9 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  38. package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +6 -0
  39. package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +4 -0
  40. package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +4 -0
  41. package/dist-types/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +4 -0
  42. package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +4 -0
  43. package/dist-types/commands/StopDeploymentCommand.d.ts +7 -0
  44. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  45. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  46. package/dist-types/commands/UpdateApplicationCommand.d.ts +4 -0
  47. package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +11 -0
  48. package/package.json +16 -16
@@ -32,6 +32,172 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
32
32
  * };
33
33
  * const command = new GetDeploymentGroupCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetDeploymentGroupOutput
36
+ * // deploymentGroupInfo: { // DeploymentGroupInfo
37
+ * // applicationName: "STRING_VALUE",
38
+ * // deploymentGroupId: "STRING_VALUE",
39
+ * // deploymentGroupName: "STRING_VALUE",
40
+ * // deploymentConfigName: "STRING_VALUE",
41
+ * // ec2TagFilters: [ // EC2TagFilterList
42
+ * // { // EC2TagFilter
43
+ * // Key: "STRING_VALUE",
44
+ * // Value: "STRING_VALUE",
45
+ * // Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // onPremisesInstanceTagFilters: [ // TagFilterList
49
+ * // { // TagFilter
50
+ * // Key: "STRING_VALUE",
51
+ * // Value: "STRING_VALUE",
52
+ * // Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // autoScalingGroups: [ // AutoScalingGroupList
56
+ * // { // AutoScalingGroup
57
+ * // name: "STRING_VALUE",
58
+ * // hook: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // serviceRoleArn: "STRING_VALUE",
62
+ * // targetRevision: { // RevisionLocation
63
+ * // revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
64
+ * // s3Location: { // S3Location
65
+ * // bucket: "STRING_VALUE",
66
+ * // key: "STRING_VALUE",
67
+ * // bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
68
+ * // version: "STRING_VALUE",
69
+ * // eTag: "STRING_VALUE",
70
+ * // },
71
+ * // gitHubLocation: { // GitHubLocation
72
+ * // repository: "STRING_VALUE",
73
+ * // commitId: "STRING_VALUE",
74
+ * // },
75
+ * // string: { // RawString
76
+ * // content: "STRING_VALUE",
77
+ * // sha256: "STRING_VALUE",
78
+ * // },
79
+ * // appSpecContent: { // AppSpecContent
80
+ * // content: "STRING_VALUE",
81
+ * // sha256: "STRING_VALUE",
82
+ * // },
83
+ * // },
84
+ * // triggerConfigurations: [ // TriggerConfigList
85
+ * // { // TriggerConfig
86
+ * // triggerName: "STRING_VALUE",
87
+ * // triggerTargetArn: "STRING_VALUE",
88
+ * // triggerEvents: [ // TriggerEventTypeList
89
+ * // "DeploymentStart" || "DeploymentSuccess" || "DeploymentFailure" || "DeploymentStop" || "DeploymentRollback" || "DeploymentReady" || "InstanceStart" || "InstanceSuccess" || "InstanceFailure" || "InstanceReady",
90
+ * // ],
91
+ * // },
92
+ * // ],
93
+ * // alarmConfiguration: { // AlarmConfiguration
94
+ * // enabled: true || false,
95
+ * // ignorePollAlarmFailure: true || false,
96
+ * // alarms: [ // AlarmList
97
+ * // { // Alarm
98
+ * // name: "STRING_VALUE",
99
+ * // },
100
+ * // ],
101
+ * // },
102
+ * // autoRollbackConfiguration: { // AutoRollbackConfiguration
103
+ * // enabled: true || false,
104
+ * // events: [ // AutoRollbackEventsList
105
+ * // "DEPLOYMENT_FAILURE" || "DEPLOYMENT_STOP_ON_ALARM" || "DEPLOYMENT_STOP_ON_REQUEST",
106
+ * // ],
107
+ * // },
108
+ * // deploymentStyle: { // DeploymentStyle
109
+ * // deploymentType: "IN_PLACE" || "BLUE_GREEN",
110
+ * // deploymentOption: "WITH_TRAFFIC_CONTROL" || "WITHOUT_TRAFFIC_CONTROL",
111
+ * // },
112
+ * // outdatedInstancesStrategy: "UPDATE" || "IGNORE",
113
+ * // blueGreenDeploymentConfiguration: { // BlueGreenDeploymentConfiguration
114
+ * // terminateBlueInstancesOnDeploymentSuccess: { // BlueInstanceTerminationOption
115
+ * // action: "TERMINATE" || "KEEP_ALIVE",
116
+ * // terminationWaitTimeInMinutes: Number("int"),
117
+ * // },
118
+ * // deploymentReadyOption: { // DeploymentReadyOption
119
+ * // actionOnTimeout: "CONTINUE_DEPLOYMENT" || "STOP_DEPLOYMENT",
120
+ * // waitTimeInMinutes: Number("int"),
121
+ * // },
122
+ * // greenFleetProvisioningOption: { // GreenFleetProvisioningOption
123
+ * // action: "DISCOVER_EXISTING" || "COPY_AUTO_SCALING_GROUP",
124
+ * // },
125
+ * // },
126
+ * // loadBalancerInfo: { // LoadBalancerInfo
127
+ * // elbInfoList: [ // ELBInfoList
128
+ * // { // ELBInfo
129
+ * // name: "STRING_VALUE",
130
+ * // },
131
+ * // ],
132
+ * // targetGroupInfoList: [ // TargetGroupInfoList
133
+ * // { // TargetGroupInfo
134
+ * // name: "STRING_VALUE",
135
+ * // },
136
+ * // ],
137
+ * // targetGroupPairInfoList: [ // TargetGroupPairInfoList
138
+ * // { // TargetGroupPairInfo
139
+ * // targetGroups: [
140
+ * // {
141
+ * // name: "STRING_VALUE",
142
+ * // },
143
+ * // ],
144
+ * // prodTrafficRoute: { // TrafficRoute
145
+ * // listenerArns: [ // ListenerArnList
146
+ * // "STRING_VALUE",
147
+ * // ],
148
+ * // },
149
+ * // testTrafficRoute: {
150
+ * // listenerArns: [
151
+ * // "STRING_VALUE",
152
+ * // ],
153
+ * // },
154
+ * // },
155
+ * // ],
156
+ * // },
157
+ * // lastSuccessfulDeployment: { // LastDeploymentInfo
158
+ * // deploymentId: "STRING_VALUE",
159
+ * // status: "Created" || "Queued" || "InProgress" || "Baking" || "Succeeded" || "Failed" || "Stopped" || "Ready",
160
+ * // endTime: new Date("TIMESTAMP"),
161
+ * // createTime: new Date("TIMESTAMP"),
162
+ * // },
163
+ * // lastAttemptedDeployment: {
164
+ * // deploymentId: "STRING_VALUE",
165
+ * // status: "Created" || "Queued" || "InProgress" || "Baking" || "Succeeded" || "Failed" || "Stopped" || "Ready",
166
+ * // endTime: new Date("TIMESTAMP"),
167
+ * // createTime: new Date("TIMESTAMP"),
168
+ * // },
169
+ * // ec2TagSet: { // EC2TagSet
170
+ * // ec2TagSetList: [ // EC2TagSetList
171
+ * // [
172
+ * // {
173
+ * // Key: "STRING_VALUE",
174
+ * // Value: "STRING_VALUE",
175
+ * // Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
176
+ * // },
177
+ * // ],
178
+ * // ],
179
+ * // },
180
+ * // onPremisesTagSet: { // OnPremisesTagSet
181
+ * // onPremisesTagSetList: [ // OnPremisesTagSetList
182
+ * // [
183
+ * // {
184
+ * // Key: "STRING_VALUE",
185
+ * // Value: "STRING_VALUE",
186
+ * // Type: "KEY_ONLY" || "VALUE_ONLY" || "KEY_AND_VALUE",
187
+ * // },
188
+ * // ],
189
+ * // ],
190
+ * // },
191
+ * // computePlatform: "Server" || "Lambda" || "ECS",
192
+ * // ecsServices: [ // ECSServiceList
193
+ * // { // ECSService
194
+ * // serviceName: "STRING_VALUE",
195
+ * // clusterName: "STRING_VALUE",
196
+ * // },
197
+ * // ],
198
+ * // },
199
+ * // };
200
+ *
35
201
  * ```
36
202
  *
37
203
  * @param GetDeploymentGroupCommandInput - {@link GetDeploymentGroupCommandInput}
@@ -62,6 +228,8 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
62
228
  * @throws {@link InvalidDeploymentGroupNameException} (client fault)
63
229
  * <p>The deployment group name was specified in an invalid format.</p>
64
230
  *
231
+ * @throws {@link CodeDeployServiceException}
232
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
65
233
  *
66
234
  */
67
235
  export declare class GetDeploymentGroupCommand extends $Command<GetDeploymentGroupCommandInput, GetDeploymentGroupCommandOutput, CodeDeployClientResolvedConfig> {
@@ -34,6 +34,30 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
34
34
  * };
35
35
  * const command = new GetDeploymentInstanceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // GetDeploymentInstanceOutput
38
+ * // instanceSummary: { // InstanceSummary
39
+ * // deploymentId: "STRING_VALUE",
40
+ * // instanceId: "STRING_VALUE",
41
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
42
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
43
+ * // lifecycleEvents: [ // LifecycleEventList
44
+ * // { // LifecycleEvent
45
+ * // lifecycleEventName: "STRING_VALUE",
46
+ * // diagnostics: { // Diagnostics
47
+ * // errorCode: "Success" || "ScriptMissing" || "ScriptNotExecutable" || "ScriptTimedOut" || "ScriptFailed" || "UnknownError",
48
+ * // scriptName: "STRING_VALUE",
49
+ * // message: "STRING_VALUE",
50
+ * // logTail: "STRING_VALUE",
51
+ * // },
52
+ * // startTime: new Date("TIMESTAMP"),
53
+ * // endTime: new Date("TIMESTAMP"),
54
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
55
+ * // },
56
+ * // ],
57
+ * // instanceType: "Blue" || "Green",
58
+ * // },
59
+ * // };
60
+ *
37
61
  * ```
38
62
  *
39
63
  * @param GetDeploymentInstanceCommandInput - {@link GetDeploymentInstanceCommandInput}
@@ -64,6 +88,8 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
64
88
  * @throws {@link InvalidInstanceNameException} (client fault)
65
89
  * <p>The on-premises instance name was specified in an invalid format.</p>
66
90
  *
91
+ * @throws {@link CodeDeployServiceException}
92
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
67
93
  *
68
94
  */
69
95
  export declare class GetDeploymentInstanceCommand extends $Command<GetDeploymentInstanceCommandInput, GetDeploymentInstanceCommandOutput, CodeDeployClientResolvedConfig> {
@@ -32,6 +32,119 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
32
32
  * };
33
33
  * const command = new GetDeploymentTargetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetDeploymentTargetOutput
36
+ * // deploymentTarget: { // DeploymentTarget
37
+ * // deploymentTargetType: "InstanceTarget" || "LambdaTarget" || "ECSTarget" || "CloudFormationTarget",
38
+ * // instanceTarget: { // InstanceTarget
39
+ * // deploymentId: "STRING_VALUE",
40
+ * // targetId: "STRING_VALUE",
41
+ * // targetArn: "STRING_VALUE",
42
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
43
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
44
+ * // lifecycleEvents: [ // LifecycleEventList
45
+ * // { // LifecycleEvent
46
+ * // lifecycleEventName: "STRING_VALUE",
47
+ * // diagnostics: { // Diagnostics
48
+ * // errorCode: "Success" || "ScriptMissing" || "ScriptNotExecutable" || "ScriptTimedOut" || "ScriptFailed" || "UnknownError",
49
+ * // scriptName: "STRING_VALUE",
50
+ * // message: "STRING_VALUE",
51
+ * // logTail: "STRING_VALUE",
52
+ * // },
53
+ * // startTime: new Date("TIMESTAMP"),
54
+ * // endTime: new Date("TIMESTAMP"),
55
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
56
+ * // },
57
+ * // ],
58
+ * // instanceLabel: "Blue" || "Green",
59
+ * // },
60
+ * // lambdaTarget: { // LambdaTarget
61
+ * // deploymentId: "STRING_VALUE",
62
+ * // targetId: "STRING_VALUE",
63
+ * // targetArn: "STRING_VALUE",
64
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
65
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
66
+ * // lifecycleEvents: [
67
+ * // {
68
+ * // lifecycleEventName: "STRING_VALUE",
69
+ * // diagnostics: {
70
+ * // errorCode: "Success" || "ScriptMissing" || "ScriptNotExecutable" || "ScriptTimedOut" || "ScriptFailed" || "UnknownError",
71
+ * // scriptName: "STRING_VALUE",
72
+ * // message: "STRING_VALUE",
73
+ * // logTail: "STRING_VALUE",
74
+ * // },
75
+ * // startTime: new Date("TIMESTAMP"),
76
+ * // endTime: new Date("TIMESTAMP"),
77
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
78
+ * // },
79
+ * // ],
80
+ * // lambdaFunctionInfo: { // LambdaFunctionInfo
81
+ * // functionName: "STRING_VALUE",
82
+ * // functionAlias: "STRING_VALUE",
83
+ * // currentVersion: "STRING_VALUE",
84
+ * // targetVersion: "STRING_VALUE",
85
+ * // targetVersionWeight: Number("double"),
86
+ * // },
87
+ * // },
88
+ * // ecsTarget: { // ECSTarget
89
+ * // deploymentId: "STRING_VALUE",
90
+ * // targetId: "STRING_VALUE",
91
+ * // targetArn: "STRING_VALUE",
92
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
93
+ * // lifecycleEvents: [
94
+ * // {
95
+ * // lifecycleEventName: "STRING_VALUE",
96
+ * // diagnostics: {
97
+ * // errorCode: "Success" || "ScriptMissing" || "ScriptNotExecutable" || "ScriptTimedOut" || "ScriptFailed" || "UnknownError",
98
+ * // scriptName: "STRING_VALUE",
99
+ * // message: "STRING_VALUE",
100
+ * // logTail: "STRING_VALUE",
101
+ * // },
102
+ * // startTime: new Date("TIMESTAMP"),
103
+ * // endTime: new Date("TIMESTAMP"),
104
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
105
+ * // },
106
+ * // ],
107
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
108
+ * // taskSetsInfo: [ // ECSTaskSetList
109
+ * // { // ECSTaskSet
110
+ * // identifer: "STRING_VALUE",
111
+ * // desiredCount: Number("long"),
112
+ * // pendingCount: Number("long"),
113
+ * // runningCount: Number("long"),
114
+ * // status: "STRING_VALUE",
115
+ * // trafficWeight: Number("double"),
116
+ * // targetGroup: { // TargetGroupInfo
117
+ * // name: "STRING_VALUE",
118
+ * // },
119
+ * // taskSetLabel: "Blue" || "Green",
120
+ * // },
121
+ * // ],
122
+ * // },
123
+ * // cloudFormationTarget: { // CloudFormationTarget
124
+ * // deploymentId: "STRING_VALUE",
125
+ * // targetId: "STRING_VALUE",
126
+ * // lastUpdatedAt: new Date("TIMESTAMP"),
127
+ * // lifecycleEvents: [
128
+ * // {
129
+ * // lifecycleEventName: "STRING_VALUE",
130
+ * // diagnostics: {
131
+ * // errorCode: "Success" || "ScriptMissing" || "ScriptNotExecutable" || "ScriptTimedOut" || "ScriptFailed" || "UnknownError",
132
+ * // scriptName: "STRING_VALUE",
133
+ * // message: "STRING_VALUE",
134
+ * // logTail: "STRING_VALUE",
135
+ * // },
136
+ * // startTime: new Date("TIMESTAMP"),
137
+ * // endTime: new Date("TIMESTAMP"),
138
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown",
139
+ * // },
140
+ * // ],
141
+ * // status: "Pending" || "InProgress" || "Succeeded" || "Failed" || "Skipped" || "Unknown" || "Ready",
142
+ * // resourceType: "STRING_VALUE",
143
+ * // targetVersionWeight: Number("double"),
144
+ * // },
145
+ * // },
146
+ * // };
147
+ *
35
148
  * ```
36
149
  *
37
150
  * @param GetDeploymentTargetCommandInput - {@link GetDeploymentTargetCommandInput}
@@ -65,6 +178,8 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
65
178
  * @throws {@link InvalidInstanceNameException} (client fault)
66
179
  * <p>The on-premises instance name was specified in an invalid format.</p>
67
180
  *
181
+ * @throws {@link CodeDeployServiceException}
182
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
68
183
  *
69
184
  */
70
185
  export declare class GetDeploymentTargetCommand extends $Command<GetDeploymentTargetCommandInput, GetDeploymentTargetCommandOutput, CodeDeployClientResolvedConfig> {
@@ -31,6 +31,23 @@ export interface GetOnPremisesInstanceCommandOutput extends GetOnPremisesInstanc
31
31
  * };
32
32
  * const command = new GetOnPremisesInstanceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetOnPremisesInstanceOutput
35
+ * // instanceInfo: { // InstanceInfo
36
+ * // instanceName: "STRING_VALUE",
37
+ * // iamSessionArn: "STRING_VALUE",
38
+ * // iamUserArn: "STRING_VALUE",
39
+ * // instanceArn: "STRING_VALUE",
40
+ * // registerTime: new Date("TIMESTAMP"),
41
+ * // deregisterTime: new Date("TIMESTAMP"),
42
+ * // tags: [ // TagList
43
+ * // { // Tag
44
+ * // Key: "STRING_VALUE",
45
+ * // Value: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // },
49
+ * // };
50
+ *
34
51
  * ```
35
52
  *
36
53
  * @param GetOnPremisesInstanceCommandInput - {@link GetOnPremisesInstanceCommandInput}
@@ -48,6 +65,8 @@ export interface GetOnPremisesInstanceCommandOutput extends GetOnPremisesInstanc
48
65
  * @throws {@link InvalidInstanceNameException} (client fault)
49
66
  * <p>The on-premises instance name was specified in an invalid format.</p>
50
67
  *
68
+ * @throws {@link CodeDeployServiceException}
69
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
51
70
  *
52
71
  */
53
72
  export declare class GetOnPremisesInstanceCommand extends $Command<GetOnPremisesInstanceCommandInput, GetOnPremisesInstanceCommandOutput, CodeDeployClientResolvedConfig> {
@@ -37,6 +37,34 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
37
37
  * };
38
38
  * const command = new ListApplicationRevisionsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListApplicationRevisionsOutput
41
+ * // revisions: [ // RevisionLocationList
42
+ * // { // RevisionLocation
43
+ * // revisionType: "S3" || "GitHub" || "String" || "AppSpecContent",
44
+ * // s3Location: { // S3Location
45
+ * // bucket: "STRING_VALUE",
46
+ * // key: "STRING_VALUE",
47
+ * // bundleType: "tar" || "tgz" || "zip" || "YAML" || "JSON",
48
+ * // version: "STRING_VALUE",
49
+ * // eTag: "STRING_VALUE",
50
+ * // },
51
+ * // gitHubLocation: { // GitHubLocation
52
+ * // repository: "STRING_VALUE",
53
+ * // commitId: "STRING_VALUE",
54
+ * // },
55
+ * // string: { // RawString
56
+ * // content: "STRING_VALUE",
57
+ * // sha256: "STRING_VALUE",
58
+ * // },
59
+ * // appSpecContent: { // AppSpecContent
60
+ * // content: "STRING_VALUE",
61
+ * // sha256: "STRING_VALUE",
62
+ * // },
63
+ * // },
64
+ * // ],
65
+ * // nextToken: "STRING_VALUE",
66
+ * // };
67
+ *
40
68
  * ```
41
69
  *
42
70
  * @param ListApplicationRevisionsCommandInput - {@link ListApplicationRevisionsCommandInput}
@@ -76,6 +104,8 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
76
104
  * @throws {@link InvalidSortOrderException} (client fault)
77
105
  * <p>The sort order was specified in an invalid format.</p>
78
106
  *
107
+ * @throws {@link CodeDeployServiceException}
108
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
79
109
  *
80
110
  */
81
111
  export declare class ListApplicationRevisionsCommand extends $Command<ListApplicationRevisionsCommandInput, ListApplicationRevisionsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -31,6 +31,13 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
31
31
  * };
32
32
  * const command = new ListApplicationsCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListApplicationsOutput
35
+ * // applications: [ // ApplicationsList
36
+ * // "STRING_VALUE",
37
+ * // ],
38
+ * // nextToken: "STRING_VALUE",
39
+ * // };
40
+ *
34
41
  * ```
35
42
  *
36
43
  * @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
@@ -42,6 +49,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
42
49
  * @throws {@link InvalidNextTokenException} (client fault)
43
50
  * <p>The next token was specified in an invalid format.</p>
44
51
  *
52
+ * @throws {@link CodeDeployServiceException}
53
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
45
54
  *
46
55
  */
47
56
  export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -31,6 +31,13 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
31
31
  * };
32
32
  * const command = new ListDeploymentConfigsCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListDeploymentConfigsOutput
35
+ * // deploymentConfigsList: [ // DeploymentConfigsList
36
+ * // "STRING_VALUE",
37
+ * // ],
38
+ * // nextToken: "STRING_VALUE",
39
+ * // };
40
+ *
34
41
  * ```
35
42
  *
36
43
  * @param ListDeploymentConfigsCommandInput - {@link ListDeploymentConfigsCommandInput}
@@ -42,6 +49,8 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
42
49
  * @throws {@link InvalidNextTokenException} (client fault)
43
50
  * <p>The next token was specified in an invalid format.</p>
44
51
  *
52
+ * @throws {@link CodeDeployServiceException}
53
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
45
54
  *
46
55
  */
47
56
  export declare class ListDeploymentConfigsCommand extends $Command<ListDeploymentConfigsCommandInput, ListDeploymentConfigsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -33,6 +33,14 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
33
33
  * };
34
34
  * const command = new ListDeploymentGroupsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListDeploymentGroupsOutput
37
+ * // applicationName: "STRING_VALUE",
38
+ * // deploymentGroups: [ // DeploymentGroupsList
39
+ * // "STRING_VALUE",
40
+ * // ],
41
+ * // nextToken: "STRING_VALUE",
42
+ * // };
43
+ *
36
44
  * ```
37
45
  *
38
46
  * @param ListDeploymentGroupsCommandInput - {@link ListDeploymentGroupsCommandInput}
@@ -53,6 +61,8 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
53
61
  * @throws {@link InvalidNextTokenException} (client fault)
54
62
  * <p>The next token was specified in an invalid format.</p>
55
63
  *
64
+ * @throws {@link CodeDeployServiceException}
65
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
56
66
  *
57
67
  */
58
68
  export declare class ListDeploymentGroupsCommand extends $Command<ListDeploymentGroupsCommandInput, ListDeploymentGroupsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -47,6 +47,13 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
47
47
  * };
48
48
  * const command = new ListDeploymentInstancesCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // ListDeploymentInstancesOutput
51
+ * // instancesList: [ // InstancesList
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // nextToken: "STRING_VALUE",
55
+ * // };
56
+ *
50
57
  * ```
51
58
  *
52
59
  * @param ListDeploymentInstancesCommandInput - {@link ListDeploymentInstancesCommandInput}
@@ -89,6 +96,8 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
89
96
  * @throws {@link InvalidTargetFilterNameException} (client fault)
90
97
  * <p> The target filter name is invalid. </p>
91
98
  *
99
+ * @throws {@link CodeDeployServiceException}
100
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
92
101
  *
93
102
  */
94
103
  export declare class ListDeploymentInstancesCommand extends $Command<ListDeploymentInstancesCommandInput, ListDeploymentInstancesCommandOutput, CodeDeployClientResolvedConfig> {
@@ -37,6 +37,13 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
37
37
  * };
38
38
  * const command = new ListDeploymentTargetsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListDeploymentTargetsOutput
41
+ * // targetIds: [ // TargetIdList
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // nextToken: "STRING_VALUE",
45
+ * // };
46
+ *
40
47
  * ```
41
48
  *
42
49
  * @param ListDeploymentTargetsCommandInput - {@link ListDeploymentTargetsCommandInput}
@@ -73,6 +80,8 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
73
80
  * @throws {@link InvalidNextTokenException} (client fault)
74
81
  * <p>The next token was specified in an invalid format.</p>
75
82
  *
83
+ * @throws {@link CodeDeployServiceException}
84
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
76
85
  *
77
86
  */
78
87
  export declare class ListDeploymentTargetsCommand extends $Command<ListDeploymentTargetsCommandInput, ListDeploymentTargetsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -42,6 +42,13 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
42
42
  * };
43
43
  * const command = new ListDeploymentsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListDeploymentsOutput
46
+ * // deployments: [ // DeploymentsList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
45
52
  * ```
46
53
  *
47
54
  * @param ListDeploymentsCommandInput - {@link ListDeploymentsCommandInput}
@@ -83,6 +90,8 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
83
90
  * @throws {@link InvalidTimeRangeException} (client fault)
84
91
  * <p>The specified time range was specified in an invalid format.</p>
85
92
  *
93
+ * @throws {@link CodeDeployServiceException}
94
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
86
95
  *
87
96
  */
88
97
  export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, CodeDeployClientResolvedConfig> {
@@ -31,6 +31,13 @@ export interface ListGitHubAccountTokenNamesCommandOutput extends ListGitHubAcco
31
31
  * };
32
32
  * const command = new ListGitHubAccountTokenNamesCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListGitHubAccountTokenNamesOutput
35
+ * // tokenNameList: [ // GitHubAccountTokenNameList
36
+ * // "STRING_VALUE",
37
+ * // ],
38
+ * // nextToken: "STRING_VALUE",
39
+ * // };
40
+ *
34
41
  * ```
35
42
  *
36
43
  * @param ListGitHubAccountTokenNamesCommandInput - {@link ListGitHubAccountTokenNamesCommandInput}
@@ -48,6 +55,8 @@ export interface ListGitHubAccountTokenNamesCommandOutput extends ListGitHubAcco
48
55
  * @throws {@link ResourceValidationException} (client fault)
49
56
  * <p>The specified resource could not be validated.</p>
50
57
  *
58
+ * @throws {@link CodeDeployServiceException}
59
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
51
60
  *
52
61
  */
53
62
  export declare class ListGitHubAccountTokenNamesCommand extends $Command<ListGitHubAccountTokenNamesCommandInput, ListGitHubAccountTokenNamesCommandOutput, CodeDeployClientResolvedConfig> {
@@ -42,6 +42,13 @@ export interface ListOnPremisesInstancesCommandOutput extends ListOnPremisesInst
42
42
  * };
43
43
  * const command = new ListOnPremisesInstancesCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListOnPremisesInstancesOutput
46
+ * // instanceNames: [ // InstanceNameList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
45
52
  * ```
46
53
  *
47
54
  * @param ListOnPremisesInstancesCommandInput - {@link ListOnPremisesInstancesCommandInput}
@@ -59,6 +66,8 @@ export interface ListOnPremisesInstancesCommandOutput extends ListOnPremisesInst
59
66
  * @throws {@link InvalidTagFilterException} (client fault)
60
67
  * <p>The tag filter was specified in an invalid format.</p>
61
68
  *
69
+ * @throws {@link CodeDeployServiceException}
70
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
62
71
  *
63
72
  */
64
73
  export declare class ListOnPremisesInstancesCommand extends $Command<ListOnPremisesInstancesCommandInput, ListOnPremisesInstancesCommandOutput, CodeDeployClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceOutput
37
+ * // Tags: [ // TagList
38
+ * // { // Tag
39
+ * // Key: "STRING_VALUE",
40
+ * // Value: "STRING_VALUE",
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -51,6 +61,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
51
61
  * @throws {@link ResourceArnRequiredException} (client fault)
52
62
  * <p> The ARN of a resource is required, but was not found. </p>
53
63
  *
64
+ * @throws {@link CodeDeployServiceException}
65
+ * <p>Base exception class for all service exceptions from CodeDeploy service.</p>
54
66
  *
55
67
  */
56
68
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeDeployClientResolvedConfig> {