@aws-sdk/client-codedeploy 3.418.0 → 3.421.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/README.md +7 -7
- package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +2 -3
- package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +1 -2
- package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +1 -2
- package/dist-types/commands/ContinueDeploymentCommand.d.ts +1 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/CreateDeploymentCommand.d.ts +5 -5
- package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +1 -2
- package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +4 -4
- package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +8 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationRevisionCommand.d.ts +2 -2
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -2
- package/dist-types/commands/GetDeploymentConfigCommand.d.ts +1 -2
- package/dist-types/commands/GetDeploymentGroupCommand.d.ts +4 -4
- package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +1 -2
- package/dist-types/commands/GetDeploymentTargetCommand.d.ts +1 -2
- package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +2 -2
- package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +2 -4
- package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +1 -2
- package/dist-types/commands/ListDeploymentsCommand.d.ts +4 -3
- package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +1 -2
- package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +1 -1
- package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +6 -7
- package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +1 -2
- package/dist-types/commands/StopDeploymentCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -2
- package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +6 -5
- package/dist-types/models/models_0.d.ts +74 -56
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -115,16 +115,16 @@ using your favorite package manager:
|
|
|
115
115
|
|
|
116
116
|
The AWS SDK is modulized by clients and commands.
|
|
117
117
|
To send a request, you only need to import the `CodeDeployClient` and
|
|
118
|
-
the commands you need, for example `
|
|
118
|
+
the commands you need, for example `ListApplicationsCommand`:
|
|
119
119
|
|
|
120
120
|
```js
|
|
121
121
|
// ES5 example
|
|
122
|
-
const { CodeDeployClient,
|
|
122
|
+
const { CodeDeployClient, ListApplicationsCommand } = require("@aws-sdk/client-codedeploy");
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
```ts
|
|
126
126
|
// ES6+ example
|
|
127
|
-
import { CodeDeployClient,
|
|
127
|
+
import { CodeDeployClient, ListApplicationsCommand } from "@aws-sdk/client-codedeploy";
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
### Usage
|
|
@@ -143,7 +143,7 @@ const client = new CodeDeployClient({ region: "REGION" });
|
|
|
143
143
|
const params = {
|
|
144
144
|
/** input parameters */
|
|
145
145
|
};
|
|
146
|
-
const command = new
|
|
146
|
+
const command = new ListApplicationsCommand(params);
|
|
147
147
|
```
|
|
148
148
|
|
|
149
149
|
#### Async/await
|
|
@@ -222,7 +222,7 @@ const client = new AWS.CodeDeploy({ region: "REGION" });
|
|
|
222
222
|
|
|
223
223
|
// async/await.
|
|
224
224
|
try {
|
|
225
|
-
const data = await client.
|
|
225
|
+
const data = await client.listApplications(params);
|
|
226
226
|
// process data.
|
|
227
227
|
} catch (error) {
|
|
228
228
|
// error handling.
|
|
@@ -230,7 +230,7 @@ try {
|
|
|
230
230
|
|
|
231
231
|
// Promises.
|
|
232
232
|
client
|
|
233
|
-
.
|
|
233
|
+
.listApplications(params)
|
|
234
234
|
.then((data) => {
|
|
235
235
|
// process data.
|
|
236
236
|
})
|
|
@@ -239,7 +239,7 @@ client
|
|
|
239
239
|
});
|
|
240
240
|
|
|
241
241
|
// callbacks.
|
|
242
|
-
client.
|
|
242
|
+
client.listApplications(params, (err, data) => {
|
|
243
243
|
// process err and data.
|
|
244
244
|
});
|
|
245
245
|
```
|
|
@@ -109,7 +109,7 @@ export interface BatchGetApplicationRevisionsCommandOutput extends BatchGetAppli
|
|
|
109
109
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
110
110
|
*
|
|
111
111
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
112
|
-
* <p>The application does not exist with the
|
|
112
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
113
113
|
*
|
|
114
114
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
115
115
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -60,7 +60,7 @@ export interface BatchGetApplicationsCommandOutput extends BatchGetApplicationsO
|
|
|
60
60
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
63
|
-
* <p>The application does not exist with the
|
|
63
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
66
66
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -216,7 +216,7 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen
|
|
|
216
216
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
217
217
|
*
|
|
218
218
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
219
|
-
* <p>The application does not exist with the
|
|
219
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
220
220
|
*
|
|
221
221
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
222
222
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -225,8 +225,7 @@ export interface BatchGetDeploymentGroupsCommandOutput extends BatchGetDeploymen
|
|
|
225
225
|
* <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
|
|
226
226
|
*
|
|
227
227
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
228
|
-
* <p>The deployment configuration does not exist with the
|
|
229
|
-
* Amazon Web Services account.</p>
|
|
228
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
230
229
|
*
|
|
231
230
|
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
232
231
|
* <p>The deployment group name was not specified.</p>
|
|
@@ -86,8 +86,7 @@ export interface BatchGetDeploymentInstancesCommandOutput extends BatchGetDeploy
|
|
|
86
86
|
* <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
|
|
87
87
|
*
|
|
88
88
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
89
|
-
* <p>The deployment with the
|
|
90
|
-
* exist.</p>
|
|
89
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
91
90
|
*
|
|
92
91
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
93
92
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -188,8 +188,7 @@ export interface BatchGetDeploymentTargetsCommandOutput extends BatchGetDeployme
|
|
|
188
188
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
189
189
|
*
|
|
190
190
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
191
|
-
* <p>The deployment with the
|
|
192
|
-
* exist.</p>
|
|
191
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
193
192
|
*
|
|
194
193
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
195
194
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -54,8 +54,7 @@ export interface ContinueDeploymentCommandOutput extends __MetadataBearer {
|
|
|
54
54
|
* <p>The deployment is already complete.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
57
|
-
* <p>The deployment with the
|
|
58
|
-
* exist.</p>
|
|
57
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
59
58
|
*
|
|
60
59
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
61
60
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -55,7 +55,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationOutput,
|
|
|
55
55
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link ApplicationAlreadyExistsException} (client fault)
|
|
58
|
-
* <p>An application with the specified name with the
|
|
58
|
+
* <p>An application with the specified name with the user or Amazon Web Services account
|
|
59
|
+
* already exists.</p>
|
|
59
60
|
*
|
|
60
61
|
* @throws {@link ApplicationLimitExceededException} (client fault)
|
|
61
62
|
* <p>More applications were attempted to be created than are allowed.</p>
|
|
@@ -117,17 +117,17 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
|
|
|
117
117
|
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
|
|
118
118
|
*
|
|
119
119
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
120
|
-
* <p>The application does not exist with the
|
|
120
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
121
121
|
*
|
|
122
122
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
123
123
|
* <p>The minimum number of required application names was not specified.</p>
|
|
124
124
|
*
|
|
125
125
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
126
|
-
* <p>The deployment configuration does not exist with the
|
|
127
|
-
* Amazon Web Services account.</p>
|
|
126
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
128
127
|
*
|
|
129
128
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
130
|
-
* <p>The named deployment group with the
|
|
129
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
130
|
+
* exist.</p>
|
|
131
131
|
*
|
|
132
132
|
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
133
133
|
* <p>The deployment group name was not specified.</p>
|
|
@@ -228,7 +228,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentOutput, _
|
|
|
228
228
|
* <code>true</code> or <code>false</code> is expected.</p>
|
|
229
229
|
*
|
|
230
230
|
* @throws {@link RevisionDoesNotExistException} (client fault)
|
|
231
|
-
* <p>The named revision does not exist with the
|
|
231
|
+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
|
|
232
232
|
*
|
|
233
233
|
* @throws {@link RevisionRequiredException} (client fault)
|
|
234
234
|
* <p>The revision ID was not specified.</p>
|
|
@@ -64,8 +64,7 @@ export interface CreateDeploymentConfigCommandOutput extends CreateDeploymentCon
|
|
|
64
64
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link DeploymentConfigAlreadyExistsException} (client fault)
|
|
67
|
-
* <p>A deployment configuration with the specified name with the
|
|
68
|
-
* Amazon Web Services account already exists.</p>
|
|
67
|
+
* <p>A deployment configuration with the specified name with the user or Amazon Web Services account already exists.</p>
|
|
69
68
|
*
|
|
70
69
|
* @throws {@link DeploymentConfigLimitExceededException} (client fault)
|
|
71
70
|
* <p>The deployment configurations limit was exceeded.</p>
|
|
@@ -178,17 +178,17 @@ export interface CreateDeploymentGroupCommandOutput extends CreateDeploymentGrou
|
|
|
178
178
|
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
|
|
179
179
|
*
|
|
180
180
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
181
|
-
* <p>The application does not exist with the
|
|
181
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
182
182
|
*
|
|
183
183
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
184
184
|
* <p>The minimum number of required application names was not specified.</p>
|
|
185
185
|
*
|
|
186
186
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
187
|
-
* <p>The deployment configuration does not exist with the
|
|
188
|
-
* Amazon Web Services account.</p>
|
|
187
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
189
188
|
*
|
|
190
189
|
* @throws {@link DeploymentGroupAlreadyExistsException} (client fault)
|
|
191
|
-
* <p>A deployment group with the specified name with the
|
|
190
|
+
* <p>A deployment group with the specified name with the user or Amazon Web Services account
|
|
191
|
+
* already exists.</p>
|
|
192
192
|
*
|
|
193
193
|
* @throws {@link DeploymentGroupLimitExceededException} (client fault)
|
|
194
194
|
* <p> The deployment groups limit was exceeded.</p>
|
|
@@ -23,7 +23,14 @@ export interface DeleteResourcesByExternalIdCommandOutput extends DeleteResource
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Deletes resources linked to an external ID
|
|
26
|
+
* <p>Deletes resources linked to an external ID. This action only applies if you have
|
|
27
|
+
* configured blue/green deployments through CloudFormation. </p>
|
|
28
|
+
* <note>
|
|
29
|
+
* <p>It is not necessary to call this action directly. CloudFormation calls it
|
|
30
|
+
* on your behalf when it needs to delete stack resources. This action is offered
|
|
31
|
+
* publicly in case you need to delete resources to comply with General Data Protection
|
|
32
|
+
* Regulation (GDPR) requirements.</p>
|
|
33
|
+
* </note>
|
|
27
34
|
* @example
|
|
28
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
36
|
* ```javascript
|
|
@@ -55,7 +55,7 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
55
55
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
58
|
-
* <p>The application does not exist with the
|
|
58
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
61
61
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -101,7 +101,7 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
|
|
|
101
101
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
102
102
|
*
|
|
103
103
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
104
|
-
* <p>The application does not exist with the
|
|
104
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
105
105
|
*
|
|
106
106
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
107
107
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -113,7 +113,7 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
|
|
|
113
113
|
* <p>The revision was specified in an invalid format.</p>
|
|
114
114
|
*
|
|
115
115
|
* @throws {@link RevisionDoesNotExistException} (client fault)
|
|
116
|
-
* <p>The named revision does not exist with the
|
|
116
|
+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
|
|
117
117
|
*
|
|
118
118
|
* @throws {@link RevisionRequiredException} (client fault)
|
|
119
119
|
* <p>The revision ID was not specified.</p>
|
|
@@ -228,8 +228,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
|
|
|
228
228
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
229
229
|
*
|
|
230
230
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
231
|
-
* <p>The deployment with the
|
|
232
|
-
* exist.</p>
|
|
231
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
233
232
|
*
|
|
234
233
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
235
234
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -68,8 +68,7 @@ export interface GetDeploymentConfigCommandOutput extends GetDeploymentConfigOut
|
|
|
68
68
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
71
|
-
* <p>The deployment configuration does not exist with the
|
|
72
|
-
* Amazon Web Services account.</p>
|
|
71
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
73
72
|
*
|
|
74
73
|
* @throws {@link DeploymentConfigNameRequiredException} (client fault)
|
|
75
74
|
* <p>The deployment configuration name was not specified.</p>
|
|
@@ -211,17 +211,17 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
|
|
|
211
211
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
212
212
|
*
|
|
213
213
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
214
|
-
* <p>The application does not exist with the
|
|
214
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
215
215
|
*
|
|
216
216
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
217
217
|
* <p>The minimum number of required application names was not specified.</p>
|
|
218
218
|
*
|
|
219
219
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
220
|
-
* <p>The deployment configuration does not exist with the
|
|
221
|
-
* Amazon Web Services account.</p>
|
|
220
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
222
221
|
*
|
|
223
222
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
224
|
-
* <p>The named deployment group with the
|
|
223
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
224
|
+
* exist.</p>
|
|
225
225
|
*
|
|
226
226
|
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
227
227
|
* <p>The deployment group name was not specified.</p>
|
|
@@ -71,8 +71,7 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
|
|
|
71
71
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
74
|
-
* <p>The deployment with the
|
|
75
|
-
* exist.</p>
|
|
74
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
76
75
|
*
|
|
77
76
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
78
77
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -158,8 +158,7 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
|
|
|
158
158
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
159
159
|
*
|
|
160
160
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
161
|
-
* <p>The deployment with the
|
|
162
|
-
* exist.</p>
|
|
161
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
163
162
|
*
|
|
164
163
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
165
164
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -78,7 +78,7 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
|
|
|
78
78
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
79
79
|
*
|
|
80
80
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
81
|
-
* <p>The application does not exist with the
|
|
81
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
84
84
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -23,7 +23,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the applications registered with the
|
|
26
|
+
* <p>Lists the applications registered with the user or Amazon Web Services account.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -23,7 +23,7 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the deployment configurations with the
|
|
26
|
+
* <p>Lists the deployment configurations with the user or Amazon Web Services account.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -23,7 +23,7 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the deployment groups for an application registered with the
|
|
26
|
+
* <p>Lists the deployment groups for an application registered with the Amazon Web Services
|
|
27
27
|
* user or Amazon Web Services account.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -54,7 +54,7 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
|
|
|
54
54
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
57
|
-
* <p>The application does not exist with the
|
|
57
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
60
60
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -31,8 +31,7 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
|
|
|
31
31
|
* exception if it is used with a compute platform other than EC2/On-premises or
|
|
32
32
|
* Lambda. </p>
|
|
33
33
|
* </note>
|
|
34
|
-
* <p> Lists the instance for a deployment associated with the
|
|
35
|
-
* Amazon Web Services account. </p>
|
|
34
|
+
* <p> Lists the instance for a deployment associated with the user or Amazon Web Services account. </p>
|
|
36
35
|
* @example
|
|
37
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
37
|
* ```javascript
|
|
@@ -67,8 +66,7 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
|
|
|
67
66
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
68
67
|
*
|
|
69
68
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
70
|
-
* <p>The deployment with the
|
|
71
|
-
* exist.</p>
|
|
69
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
72
70
|
*
|
|
73
71
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
74
72
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -57,8 +57,7 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
|
|
|
57
57
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
60
|
-
* <p>The deployment with the
|
|
61
|
-
* exist.</p>
|
|
60
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
62
61
|
*
|
|
63
62
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
64
63
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -24,7 +24,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Lists the deployments in a deployment group for an application registered with the
|
|
27
|
-
*
|
|
27
|
+
* user or Amazon Web Services account.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -62,13 +62,14 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
|
|
|
62
62
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
65
|
-
* <p>The application does not exist with the
|
|
65
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
68
68
|
* <p>The minimum number of required application names was not specified.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
71
|
-
* <p>The named deployment group with the
|
|
71
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
72
|
+
* exist.</p>
|
|
72
73
|
*
|
|
73
74
|
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
74
75
|
* <p>The deployment group name was not specified.</p>
|
|
@@ -58,8 +58,7 @@ export interface PutLifecycleEventHookExecutionStatusCommandOutput extends PutLi
|
|
|
58
58
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
61
|
-
* <p>The deployment with the
|
|
62
|
-
* exist.</p>
|
|
61
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
63
62
|
*
|
|
64
63
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
65
64
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -69,7 +69,7 @@ export interface RegisterApplicationRevisionCommandOutput extends __MetadataBear
|
|
|
69
69
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
72
|
-
* <p>The application does not exist with the
|
|
72
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
73
73
|
*
|
|
74
74
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
75
75
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -51,18 +51,17 @@ export interface RegisterOnPremisesInstanceCommandOutput extends __MetadataBeare
|
|
|
51
51
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link IamArnRequiredException} (client fault)
|
|
54
|
-
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or
|
|
54
|
+
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or user ARN in the request.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link IamSessionArnAlreadyRegisteredException} (client fault)
|
|
57
57
|
* <p>The request included an IAM session ARN that has already been used to
|
|
58
58
|
* register a different instance.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link IamUserArnAlreadyRegisteredException} (client fault)
|
|
61
|
-
* <p>The specified
|
|
62
|
-
* instance.</p>
|
|
61
|
+
* <p>The specified user ARN is already registered with an on-premises instance.</p>
|
|
63
62
|
*
|
|
64
63
|
* @throws {@link IamUserArnRequiredException} (client fault)
|
|
65
|
-
* <p>An
|
|
64
|
+
* <p>An user ARN was not specified.</p>
|
|
66
65
|
*
|
|
67
66
|
* @throws {@link InstanceNameAlreadyRegisteredException} (client fault)
|
|
68
67
|
* <p>The specified on-premises instance name is already registered.</p>
|
|
@@ -74,14 +73,14 @@ export interface RegisterOnPremisesInstanceCommandOutput extends __MetadataBeare
|
|
|
74
73
|
* <p>The IAM session ARN was specified in an invalid format.</p>
|
|
75
74
|
*
|
|
76
75
|
* @throws {@link InvalidIamUserArnException} (client fault)
|
|
77
|
-
* <p>The
|
|
76
|
+
* <p>The user ARN was specified in an invalid format.</p>
|
|
78
77
|
*
|
|
79
78
|
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
80
79
|
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
81
80
|
*
|
|
82
81
|
* @throws {@link MultipleIamArnsProvidedException} (client fault)
|
|
83
|
-
* <p>Both an
|
|
84
|
-
*
|
|
82
|
+
* <p>Both an user ARN and an IAM session ARN were included in the request.
|
|
83
|
+
* Use only one ARN type.</p>
|
|
85
84
|
*
|
|
86
85
|
* @throws {@link CodeDeployServiceException}
|
|
87
86
|
* <p>Base exception class for all service exceptions from CodeDeploy service.</p>
|
|
@@ -52,8 +52,7 @@ export interface SkipWaitTimeForInstanceTerminationCommandOutput extends __Metad
|
|
|
52
52
|
* <p>The deployment is already complete.</p>
|
|
53
53
|
*
|
|
54
54
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
55
|
-
* <p>The deployment with the
|
|
56
|
-
* exist.</p>
|
|
55
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
57
56
|
*
|
|
58
57
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
59
58
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -53,11 +53,11 @@ export interface StopDeploymentCommandOutput extends StopDeploymentOutput, __Met
|
|
|
53
53
|
* <p>The deployment is already complete.</p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
56
|
-
* <p>The deployment with the
|
|
57
|
-
* exist.</p>
|
|
56
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
58
57
|
*
|
|
59
58
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
60
|
-
* <p>The named deployment group with the
|
|
59
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
60
|
+
* exist.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
63
63
|
* <p>At least one deployment ID must be specified.</p>
|
|
@@ -53,18 +53,18 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
53
53
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
56
|
-
* <p>The application does not exist with the
|
|
56
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link ArnNotSupportedException} (client fault)
|
|
59
59
|
* <p> The specified ARN is not supported. For example, it might be an ARN for a resource
|
|
60
60
|
* that is not expected. </p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
63
|
-
* <p>The deployment configuration does not exist with the
|
|
64
|
-
* Amazon Web Services account.</p>
|
|
63
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
65
64
|
*
|
|
66
65
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
67
|
-
* <p>The named deployment group with the
|
|
66
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
67
|
+
* exist.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link InvalidArnException} (client fault)
|
|
70
70
|
* <p> The specified ARN is not in a valid format. </p>
|
|
@@ -51,18 +51,18 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
51
51
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
54
|
-
* <p>The application does not exist with the
|
|
54
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link ArnNotSupportedException} (client fault)
|
|
57
57
|
* <p> The specified ARN is not supported. For example, it might be an ARN for a resource
|
|
58
58
|
* that is not expected. </p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
61
|
-
* <p>The deployment configuration does not exist with the
|
|
62
|
-
* Amazon Web Services account.</p>
|
|
61
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
63
62
|
*
|
|
64
63
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
65
|
-
* <p>The named deployment group with the
|
|
64
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
65
|
+
* exist.</p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link InvalidArnException} (client fault)
|
|
68
68
|
* <p> The specified ARN is not in a valid format. </p>
|
|
@@ -47,10 +47,11 @@ export interface UpdateApplicationCommandOutput extends __MetadataBearer {
|
|
|
47
47
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link ApplicationAlreadyExistsException} (client fault)
|
|
50
|
-
* <p>An application with the specified name with the
|
|
50
|
+
* <p>An application with the specified name with the user or Amazon Web Services account
|
|
51
|
+
* already exists.</p>
|
|
51
52
|
*
|
|
52
53
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
53
|
-
* <p>The application does not exist with the
|
|
54
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
54
55
|
*
|
|
55
56
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
56
57
|
* <p>The minimum number of required application names was not specified.</p>
|
|
@@ -178,20 +178,21 @@ export interface UpdateDeploymentGroupCommandOutput extends UpdateDeploymentGrou
|
|
|
178
178
|
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
|
|
179
179
|
*
|
|
180
180
|
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
181
|
-
* <p>The application does not exist with the
|
|
181
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
182
182
|
*
|
|
183
183
|
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
184
184
|
* <p>The minimum number of required application names was not specified.</p>
|
|
185
185
|
*
|
|
186
186
|
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
187
|
-
* <p>The deployment configuration does not exist with the
|
|
188
|
-
* Amazon Web Services account.</p>
|
|
187
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
189
188
|
*
|
|
190
189
|
* @throws {@link DeploymentGroupAlreadyExistsException} (client fault)
|
|
191
|
-
* <p>A deployment group with the specified name with the
|
|
190
|
+
* <p>A deployment group with the specified name with the user or Amazon Web Services account
|
|
191
|
+
* already exists.</p>
|
|
192
192
|
*
|
|
193
193
|
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
194
|
-
* <p>The named deployment group with the
|
|
194
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
195
|
+
* exist.</p>
|
|
195
196
|
*
|
|
196
197
|
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
197
198
|
* <p>The deployment group name was not specified.</p>
|
|
@@ -180,7 +180,8 @@ export declare class AlarmsLimitExceededException extends __BaseException {
|
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
182
|
* @public
|
|
183
|
-
* <p>An application with the specified name with the
|
|
183
|
+
* <p>An application with the specified name with the user or Amazon Web Services account
|
|
184
|
+
* already exists.</p>
|
|
184
185
|
*/
|
|
185
186
|
export declare class ApplicationAlreadyExistsException extends __BaseException {
|
|
186
187
|
readonly name: "ApplicationAlreadyExistsException";
|
|
@@ -192,7 +193,7 @@ export declare class ApplicationAlreadyExistsException extends __BaseException {
|
|
|
192
193
|
}
|
|
193
194
|
/**
|
|
194
195
|
* @public
|
|
195
|
-
* <p>The application does not exist with the
|
|
196
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
196
197
|
*/
|
|
197
198
|
export declare class ApplicationDoesNotExistException extends __BaseException {
|
|
198
199
|
readonly name: "ApplicationDoesNotExistException";
|
|
@@ -456,6 +457,14 @@ export interface S3Location {
|
|
|
456
457
|
* <p>
|
|
457
458
|
* <code>zip</code>: A zip archive file.</p>
|
|
458
459
|
* </li>
|
|
460
|
+
* <li>
|
|
461
|
+
* <p>
|
|
462
|
+
* <code>YAML</code>: A YAML-formatted file.</p>
|
|
463
|
+
* </li>
|
|
464
|
+
* <li>
|
|
465
|
+
* <p>
|
|
466
|
+
* <code>JSON</code>: A JSON-formatted file.</p>
|
|
467
|
+
* </li>
|
|
459
468
|
* </ul>
|
|
460
469
|
*/
|
|
461
470
|
bundleType?: BundleType | string;
|
|
@@ -718,8 +727,8 @@ export interface BatchGetApplicationsOutput {
|
|
|
718
727
|
export interface BatchGetDeploymentGroupsInput {
|
|
719
728
|
/**
|
|
720
729
|
* @public
|
|
721
|
-
* <p>The name of an CodeDeploy application associated with the applicable
|
|
722
|
-
*
|
|
730
|
+
* <p>The name of an CodeDeploy application associated with the applicable user
|
|
731
|
+
* or Amazon Web Services account.</p>
|
|
723
732
|
*/
|
|
724
733
|
applicationName: string | undefined;
|
|
725
734
|
/**
|
|
@@ -1051,16 +1060,16 @@ export interface LastDeploymentInfo {
|
|
|
1051
1060
|
}
|
|
1052
1061
|
/**
|
|
1053
1062
|
* @public
|
|
1054
|
-
* <p>Information about a
|
|
1063
|
+
* <p>Information about a Classic Load Balancer in Elastic Load Balancing to use in a deployment.
|
|
1055
1064
|
* Instances are registered directly with a load balancer, and traffic is routed to the
|
|
1056
1065
|
* load balancer.</p>
|
|
1057
1066
|
*/
|
|
1058
1067
|
export interface ELBInfo {
|
|
1059
1068
|
/**
|
|
1060
1069
|
* @public
|
|
1061
|
-
* <p>For blue/green deployments, the name of the
|
|
1070
|
+
* <p>For blue/green deployments, the name of the Classic Load Balancer that is used to route
|
|
1062
1071
|
* traffic from original instances to replacement instances in a blue/green deployment. For
|
|
1063
|
-
* in-place deployments, the name of the
|
|
1072
|
+
* in-place deployments, the name of the Classic Load Balancer that instances are deregistered from
|
|
1064
1073
|
* so they are not serving traffic during a deployment, and then re-registered with after
|
|
1065
1074
|
* the deployment is complete.</p>
|
|
1066
1075
|
*/
|
|
@@ -1125,25 +1134,37 @@ export interface TargetGroupPairInfo {
|
|
|
1125
1134
|
* @public
|
|
1126
1135
|
* <p>Information about the Elastic Load Balancing load balancer or target group used in a
|
|
1127
1136
|
* deployment.</p>
|
|
1137
|
+
* <p>You can use load balancers and target groups in combination. For example, if you have
|
|
1138
|
+
* two Classic Load Balancers, and five target groups tied to an Application Load Balancer,
|
|
1139
|
+
* you can specify the two Classic Load Balancers in <code>elbInfoList</code>, and the five
|
|
1140
|
+
* target groups in <code>targetGroupInfoList</code>.</p>
|
|
1128
1141
|
*/
|
|
1129
1142
|
export interface LoadBalancerInfo {
|
|
1130
1143
|
/**
|
|
1131
1144
|
* @public
|
|
1132
|
-
* <p>An array that contains information about the load
|
|
1133
|
-
* in a deployment.
|
|
1134
|
-
*
|
|
1145
|
+
* <p>An array that contains information about the load balancers to use for load balancing
|
|
1146
|
+
* in a deployment. If you're using Classic Load Balancers, specify those load balancers
|
|
1147
|
+
* in this array. </p>
|
|
1148
|
+
* <note>
|
|
1149
|
+
* <p>You can add up to 10 load balancers to the array.</p>
|
|
1150
|
+
* </note>
|
|
1135
1151
|
* <note>
|
|
1136
|
-
* <p>
|
|
1152
|
+
* <p>If you're using Application Load Balancers or Network Load Balancers, use the
|
|
1153
|
+
* <code>targetGroupInfoList</code> array instead of this one.</p>
|
|
1137
1154
|
* </note>
|
|
1138
1155
|
*/
|
|
1139
1156
|
elbInfoList?: ELBInfo[];
|
|
1140
1157
|
/**
|
|
1141
1158
|
* @public
|
|
1142
|
-
* <p>An array that contains information about the target
|
|
1143
|
-
* a deployment.
|
|
1144
|
-
*
|
|
1159
|
+
* <p>An array that contains information about the target groups to use for load balancing
|
|
1160
|
+
* in a deployment. If you're using Application Load Balancers and Network Load Balancers,
|
|
1161
|
+
* specify their associated target groups in this array.</p>
|
|
1162
|
+
* <note>
|
|
1163
|
+
* <p>You can add up to 10 target groups to the array.</p>
|
|
1164
|
+
* </note>
|
|
1145
1165
|
* <note>
|
|
1146
|
-
* <p>
|
|
1166
|
+
* <p>If you're using Classic Load Balancers, use the <code>elbInfoList</code> array
|
|
1167
|
+
* instead of this one.</p>
|
|
1147
1168
|
* </note>
|
|
1148
1169
|
*/
|
|
1149
1170
|
targetGroupInfoList?: TargetGroupInfo[];
|
|
@@ -1422,8 +1443,7 @@ export interface BatchGetDeploymentGroupsOutput {
|
|
|
1422
1443
|
}
|
|
1423
1444
|
/**
|
|
1424
1445
|
* @public
|
|
1425
|
-
* <p>The deployment configuration does not exist with the
|
|
1426
|
-
* Amazon Web Services account.</p>
|
|
1446
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
1427
1447
|
*/
|
|
1428
1448
|
export declare class DeploymentConfigDoesNotExistException extends __BaseException {
|
|
1429
1449
|
readonly name: "DeploymentConfigDoesNotExistException";
|
|
@@ -1735,8 +1755,7 @@ export interface BatchGetDeploymentInstancesOutput {
|
|
|
1735
1755
|
}
|
|
1736
1756
|
/**
|
|
1737
1757
|
* @public
|
|
1738
|
-
* <p>The deployment with the
|
|
1739
|
-
* exist.</p>
|
|
1758
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
1740
1759
|
*/
|
|
1741
1760
|
export declare class DeploymentDoesNotExistException extends __BaseException {
|
|
1742
1761
|
readonly name: "DeploymentDoesNotExistException";
|
|
@@ -2849,12 +2868,13 @@ export interface InstanceInfo {
|
|
|
2849
2868
|
instanceName?: string;
|
|
2850
2869
|
/**
|
|
2851
2870
|
* @public
|
|
2852
|
-
* <p>The ARN of the IAM session associated with the on-premises
|
|
2871
|
+
* <p>The ARN of the IAM session associated with the on-premises
|
|
2872
|
+
* instance.</p>
|
|
2853
2873
|
*/
|
|
2854
2874
|
iamSessionArn?: string;
|
|
2855
2875
|
/**
|
|
2856
2876
|
* @public
|
|
2857
|
-
* <p>The
|
|
2877
|
+
* <p>The user ARN associated with the on-premises instance.</p>
|
|
2858
2878
|
*/
|
|
2859
2879
|
iamUserArn?: string;
|
|
2860
2880
|
/**
|
|
@@ -3000,7 +3020,8 @@ export declare class UnsupportedActionForDeploymentTypeException extends __BaseE
|
|
|
3000
3020
|
export interface CreateApplicationInput {
|
|
3001
3021
|
/**
|
|
3002
3022
|
* @public
|
|
3003
|
-
* <p>The name of the application. This name must be unique with the applicable
|
|
3023
|
+
* <p>The name of the application. This name must be unique with the applicable user or
|
|
3024
|
+
* Amazon Web Services account.</p>
|
|
3004
3025
|
*/
|
|
3005
3026
|
applicationName: string | undefined;
|
|
3006
3027
|
/**
|
|
@@ -3047,7 +3068,7 @@ export declare class InvalidTagsToAddException extends __BaseException {
|
|
|
3047
3068
|
export interface CreateDeploymentInput {
|
|
3048
3069
|
/**
|
|
3049
3070
|
* @public
|
|
3050
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
3071
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
3051
3072
|
*/
|
|
3052
3073
|
applicationName: string | undefined;
|
|
3053
3074
|
/**
|
|
@@ -3062,8 +3083,7 @@ export interface CreateDeploymentInput {
|
|
|
3062
3083
|
revision?: RevisionLocation;
|
|
3063
3084
|
/**
|
|
3064
3085
|
* @public
|
|
3065
|
-
* <p>The name of a deployment configuration associated with the
|
|
3066
|
-
* Amazon Web Services account.</p>
|
|
3086
|
+
* <p>The name of a deployment configuration associated with the user or Amazon Web Services account.</p>
|
|
3067
3087
|
* <p>If not specified, the value configured in the deployment group is used as the default.
|
|
3068
3088
|
* If the deployment group does not have a deployment configuration associated with it,
|
|
3069
3089
|
* <code>CodeDeployDefault</code>.<code>OneAtATime</code> is used by default.</p>
|
|
@@ -3154,8 +3174,8 @@ export interface CreateDeploymentInput {
|
|
|
3154
3174
|
* deployment.</p>
|
|
3155
3175
|
* <note>
|
|
3156
3176
|
* <p>If you specify an <code>overrideAlarmConfiguration</code>, you need the
|
|
3157
|
-
* <code>UpdateDeploymentGroup</code>
|
|
3158
|
-
*
|
|
3177
|
+
* <code>UpdateDeploymentGroup</code>
|
|
3178
|
+
* IAM permission when calling <code>CreateDeployment</code>.</p>
|
|
3159
3179
|
* </note>
|
|
3160
3180
|
*/
|
|
3161
3181
|
overrideAlarmConfiguration?: AlarmConfiguration;
|
|
@@ -3173,7 +3193,8 @@ export interface CreateDeploymentOutput {
|
|
|
3173
3193
|
}
|
|
3174
3194
|
/**
|
|
3175
3195
|
* @public
|
|
3176
|
-
* <p>The named deployment group with the
|
|
3196
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
3197
|
+
* exist.</p>
|
|
3177
3198
|
*/
|
|
3178
3199
|
export declare class DeploymentGroupDoesNotExistException extends __BaseException {
|
|
3179
3200
|
readonly name: "DeploymentGroupDoesNotExistException";
|
|
@@ -3397,7 +3418,7 @@ export declare class InvalidUpdateOutdatedInstancesOnlyValueException extends __
|
|
|
3397
3418
|
}
|
|
3398
3419
|
/**
|
|
3399
3420
|
* @public
|
|
3400
|
-
* <p>The named revision does not exist with the
|
|
3421
|
+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
|
|
3401
3422
|
*/
|
|
3402
3423
|
export declare class RevisionDoesNotExistException extends __BaseException {
|
|
3403
3424
|
readonly name: "RevisionDoesNotExistException";
|
|
@@ -3622,8 +3643,7 @@ export interface CreateDeploymentConfigOutput {
|
|
|
3622
3643
|
}
|
|
3623
3644
|
/**
|
|
3624
3645
|
* @public
|
|
3625
|
-
* <p>A deployment configuration with the specified name with the
|
|
3626
|
-
* Amazon Web Services account already exists.</p>
|
|
3646
|
+
* <p>A deployment configuration with the specified name with the user or Amazon Web Services account already exists.</p>
|
|
3627
3647
|
*/
|
|
3628
3648
|
export declare class DeploymentConfigAlreadyExistsException extends __BaseException {
|
|
3629
3649
|
readonly name: "DeploymentConfigAlreadyExistsException";
|
|
@@ -3676,7 +3696,7 @@ export declare class InvalidMinimumHealthyHostValueException extends __BaseExcep
|
|
|
3676
3696
|
export interface CreateDeploymentGroupInput {
|
|
3677
3697
|
/**
|
|
3678
3698
|
* @public
|
|
3679
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
3699
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
3680
3700
|
*/
|
|
3681
3701
|
applicationName: string | undefined;
|
|
3682
3702
|
/**
|
|
@@ -3811,7 +3831,8 @@ export interface CreateDeploymentGroupOutput {
|
|
|
3811
3831
|
}
|
|
3812
3832
|
/**
|
|
3813
3833
|
* @public
|
|
3814
|
-
* <p>A deployment group with the specified name with the
|
|
3834
|
+
* <p>A deployment group with the specified name with the user or Amazon Web Services account
|
|
3835
|
+
* already exists.</p>
|
|
3815
3836
|
*/
|
|
3816
3837
|
export declare class DeploymentGroupAlreadyExistsException extends __BaseException {
|
|
3817
3838
|
readonly name: "DeploymentGroupAlreadyExistsException";
|
|
@@ -4015,7 +4036,7 @@ export declare class TriggerTargetsLimitExceededException extends __BaseExceptio
|
|
|
4015
4036
|
export interface DeleteApplicationInput {
|
|
4016
4037
|
/**
|
|
4017
4038
|
* @public
|
|
4018
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4039
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4019
4040
|
*/
|
|
4020
4041
|
applicationName: string | undefined;
|
|
4021
4042
|
}
|
|
@@ -4026,8 +4047,7 @@ export interface DeleteApplicationInput {
|
|
|
4026
4047
|
export interface DeleteDeploymentConfigInput {
|
|
4027
4048
|
/**
|
|
4028
4049
|
* @public
|
|
4029
|
-
* <p>The name of a deployment configuration associated with the
|
|
4030
|
-
* Amazon Web Services account.</p>
|
|
4050
|
+
* <p>The name of a deployment configuration associated with the user or Amazon Web Services account.</p>
|
|
4031
4051
|
*/
|
|
4032
4052
|
deploymentConfigName: string | undefined;
|
|
4033
4053
|
}
|
|
@@ -4062,7 +4082,7 @@ export declare class InvalidOperationException extends __BaseException {
|
|
|
4062
4082
|
export interface DeleteDeploymentGroupInput {
|
|
4063
4083
|
/**
|
|
4064
4084
|
* @public
|
|
4065
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4085
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4066
4086
|
*/
|
|
4067
4087
|
applicationName: string | undefined;
|
|
4068
4088
|
/**
|
|
@@ -4202,7 +4222,7 @@ export interface DeregisterOnPremisesInstanceInput {
|
|
|
4202
4222
|
export interface GetApplicationInput {
|
|
4203
4223
|
/**
|
|
4204
4224
|
* @public
|
|
4205
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4225
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4206
4226
|
*/
|
|
4207
4227
|
applicationName: string | undefined;
|
|
4208
4228
|
}
|
|
@@ -4261,7 +4281,8 @@ export interface GetApplicationRevisionOutput {
|
|
|
4261
4281
|
export interface GetDeploymentInput {
|
|
4262
4282
|
/**
|
|
4263
4283
|
* @public
|
|
4264
|
-
* <p> The unique ID of a deployment associated with the
|
|
4284
|
+
* <p> The unique ID of a deployment associated with the user or Amazon Web Services account.
|
|
4285
|
+
* </p>
|
|
4265
4286
|
*/
|
|
4266
4287
|
deploymentId: string | undefined;
|
|
4267
4288
|
}
|
|
@@ -4283,8 +4304,7 @@ export interface GetDeploymentOutput {
|
|
|
4283
4304
|
export interface GetDeploymentConfigInput {
|
|
4284
4305
|
/**
|
|
4285
4306
|
* @public
|
|
4286
|
-
* <p>The name of a deployment configuration associated with the
|
|
4287
|
-
* Amazon Web Services account.</p>
|
|
4307
|
+
* <p>The name of a deployment configuration associated with the user or Amazon Web Services account.</p>
|
|
4288
4308
|
*/
|
|
4289
4309
|
deploymentConfigName: string | undefined;
|
|
4290
4310
|
}
|
|
@@ -4345,7 +4365,7 @@ export interface GetDeploymentConfigOutput {
|
|
|
4345
4365
|
export interface GetDeploymentGroupInput {
|
|
4346
4366
|
/**
|
|
4347
4367
|
* @public
|
|
4348
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4368
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4349
4369
|
*/
|
|
4350
4370
|
applicationName: string | undefined;
|
|
4351
4371
|
/**
|
|
@@ -4550,7 +4570,7 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
|
4550
4570
|
export interface ListApplicationRevisionsInput {
|
|
4551
4571
|
/**
|
|
4552
4572
|
* @public
|
|
4553
|
-
* <p> The name of an CodeDeploy application associated with the
|
|
4573
|
+
* <p> The name of an CodeDeploy application associated with the user or Amazon Web Services account. </p>
|
|
4554
4574
|
*/
|
|
4555
4575
|
applicationName: string | undefined;
|
|
4556
4576
|
/**
|
|
@@ -4721,7 +4741,7 @@ export interface ListDeploymentConfigsOutput {
|
|
|
4721
4741
|
export interface ListDeploymentGroupsInput {
|
|
4722
4742
|
/**
|
|
4723
4743
|
* @public
|
|
4724
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4744
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4725
4745
|
*/
|
|
4726
4746
|
applicationName: string | undefined;
|
|
4727
4747
|
/**
|
|
@@ -4934,7 +4954,7 @@ export interface TimeRange {
|
|
|
4934
4954
|
export interface ListDeploymentsInput {
|
|
4935
4955
|
/**
|
|
4936
4956
|
* @public
|
|
4937
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
4957
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
4938
4958
|
* <note>
|
|
4939
4959
|
* <p>If <code>applicationName</code> is specified, then
|
|
4940
4960
|
* <code>deploymentGroupName</code> must be specified. If it is not specified, then
|
|
@@ -5349,7 +5369,7 @@ export interface PutLifecycleEventHookExecutionStatusOutput {
|
|
|
5349
5369
|
export interface RegisterApplicationRevisionInput {
|
|
5350
5370
|
/**
|
|
5351
5371
|
* @public
|
|
5352
|
-
* <p>The name of an CodeDeploy application associated with the
|
|
5372
|
+
* <p>The name of an CodeDeploy application associated with the user or Amazon Web Services account.</p>
|
|
5353
5373
|
*/
|
|
5354
5374
|
applicationName: string | undefined;
|
|
5355
5375
|
/**
|
|
@@ -5366,7 +5386,7 @@ export interface RegisterApplicationRevisionInput {
|
|
|
5366
5386
|
}
|
|
5367
5387
|
/**
|
|
5368
5388
|
* @public
|
|
5369
|
-
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or
|
|
5389
|
+
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or user ARN in the request.</p>
|
|
5370
5390
|
*/
|
|
5371
5391
|
export declare class IamArnRequiredException extends __BaseException {
|
|
5372
5392
|
readonly name: "IamArnRequiredException";
|
|
@@ -5391,8 +5411,7 @@ export declare class IamSessionArnAlreadyRegisteredException extends __BaseExcep
|
|
|
5391
5411
|
}
|
|
5392
5412
|
/**
|
|
5393
5413
|
* @public
|
|
5394
|
-
* <p>The specified
|
|
5395
|
-
* instance.</p>
|
|
5414
|
+
* <p>The specified user ARN is already registered with an on-premises instance.</p>
|
|
5396
5415
|
*/
|
|
5397
5416
|
export declare class IamUserArnAlreadyRegisteredException extends __BaseException {
|
|
5398
5417
|
readonly name: "IamUserArnAlreadyRegisteredException";
|
|
@@ -5404,7 +5423,7 @@ export declare class IamUserArnAlreadyRegisteredException extends __BaseExceptio
|
|
|
5404
5423
|
}
|
|
5405
5424
|
/**
|
|
5406
5425
|
* @public
|
|
5407
|
-
* <p>An
|
|
5426
|
+
* <p>An user ARN was not specified.</p>
|
|
5408
5427
|
*/
|
|
5409
5428
|
export declare class IamUserArnRequiredException extends __BaseException {
|
|
5410
5429
|
readonly name: "IamUserArnRequiredException";
|
|
@@ -5440,7 +5459,7 @@ export declare class InvalidIamSessionArnException extends __BaseException {
|
|
|
5440
5459
|
}
|
|
5441
5460
|
/**
|
|
5442
5461
|
* @public
|
|
5443
|
-
* <p>The
|
|
5462
|
+
* <p>The user ARN was specified in an invalid format.</p>
|
|
5444
5463
|
*/
|
|
5445
5464
|
export declare class InvalidIamUserArnException extends __BaseException {
|
|
5446
5465
|
readonly name: "InvalidIamUserArnException";
|
|
@@ -5452,8 +5471,8 @@ export declare class InvalidIamUserArnException extends __BaseException {
|
|
|
5452
5471
|
}
|
|
5453
5472
|
/**
|
|
5454
5473
|
* @public
|
|
5455
|
-
* <p>Both an
|
|
5456
|
-
*
|
|
5474
|
+
* <p>Both an user ARN and an IAM session ARN were included in the request.
|
|
5475
|
+
* Use only one ARN type.</p>
|
|
5457
5476
|
*/
|
|
5458
5477
|
export declare class MultipleIamArnsProvidedException extends __BaseException {
|
|
5459
5478
|
readonly name: "MultipleIamArnsProvidedException";
|
|
@@ -5481,8 +5500,7 @@ export interface RegisterOnPremisesInstanceInput {
|
|
|
5481
5500
|
iamSessionArn?: string;
|
|
5482
5501
|
/**
|
|
5483
5502
|
* @public
|
|
5484
|
-
* <p>The ARN of the
|
|
5485
|
-
* instance.</p>
|
|
5503
|
+
* <p>The ARN of the user to associate with the on-premises instance.</p>
|
|
5486
5504
|
*/
|
|
5487
5505
|
iamUserArn?: string;
|
|
5488
5506
|
}
|
|
@@ -5676,7 +5694,7 @@ export interface UpdateDeploymentGroupInput {
|
|
|
5676
5694
|
* parameter. </p>
|
|
5677
5695
|
* </li>
|
|
5678
5696
|
* <li>
|
|
5679
|
-
* <p>To remove Auto Scaling groups, specify a non-null empty list of Auto Scaling group names to detach all CodeDeploy-managed Auto Scaling lifecycle hooks. For examples, see <a href="https://docs.aws.amazon.com/
|
|
5697
|
+
* <p>To remove Auto Scaling groups, specify a non-null empty list of Auto Scaling group names to detach all CodeDeploy-managed Auto Scaling lifecycle hooks. For examples, see <a href="https://docs.aws.amazon.com/codedeploy/latest/userguide/troubleshooting-auto-scaling.html#troubleshooting-auto-scaling-heartbeat">Amazon EC2 instances in an Amazon EC2 Auto Scaling group fail to
|
|
5680
5698
|
* launch and receive the error "Heartbeat Timeout"</a> in the
|
|
5681
5699
|
* <i>CodeDeploy User Guide</i>.</p>
|
|
5682
5700
|
* </li>
|
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.
|
|
4
|
+
"version": "3.421.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,8 +21,8 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.421.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.421.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|