@aws-sdk/client-codedeploy 3.288.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddTagsToOnPremisesInstancesCommand.d.ts +23 -0
- package/dist-types/commands/BatchGetApplicationRevisionsCommand.d.ts +19 -0
- package/dist-types/commands/BatchGetApplicationsCommand.d.ts +13 -0
- package/dist-types/commands/BatchGetDeploymentGroupsCommand.d.ts +23 -0
- package/dist-types/commands/BatchGetDeploymentInstancesCommand.d.ts +23 -0
- package/dist-types/commands/BatchGetDeploymentTargetsCommand.d.ts +32 -0
- package/dist-types/commands/BatchGetDeploymentsCommand.d.ts +10 -0
- package/dist-types/commands/BatchGetOnPremisesInstancesCommand.d.ts +10 -0
- package/dist-types/commands/ContinueDeploymentCommand.d.ts +26 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +19 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +124 -0
- package/dist-types/commands/CreateDeploymentConfigCommand.d.ts +24 -0
- package/dist-types/commands/CreateDeploymentGroupCommand.d.ts +131 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +12 -0
- package/dist-types/commands/DeleteDeploymentConfigCommand.d.ts +13 -0
- package/dist-types/commands/DeleteDeploymentGroupCommand.d.ts +18 -0
- package/dist-types/commands/DeleteGitHubAccountTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcesByExternalIdCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterOnPremisesInstanceCommand.d.ts +7 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +10 -0
- package/dist-types/commands/GetApplicationRevisionCommand.d.ts +19 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +11 -0
- package/dist-types/commands/GetDeploymentConfigCommand.d.ts +14 -0
- package/dist-types/commands/GetDeploymentGroupCommand.d.ts +23 -0
- package/dist-types/commands/GetDeploymentInstanceCommand.d.ts +23 -0
- package/dist-types/commands/GetDeploymentTargetCommand.d.ts +26 -0
- package/dist-types/commands/GetOnPremisesInstanceCommand.d.ts +10 -0
- package/dist-types/commands/ListApplicationRevisionsCommand.d.ts +32 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
- package/dist-types/commands/ListDeploymentConfigsCommand.d.ts +4 -0
- package/dist-types/commands/ListDeploymentGroupsCommand.d.ts +13 -0
- package/dist-types/commands/ListDeploymentInstancesCommand.d.ts +35 -0
- package/dist-types/commands/ListDeploymentTargetsCommand.d.ts +29 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +34 -0
- package/dist-types/commands/ListGitHubAccountTokenNamesCommand.d.ts +10 -0
- package/dist-types/commands/ListOnPremisesInstancesCommand.d.ts +10 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutLifecycleEventHookExecutionStatusCommand.d.ts +27 -0
- package/dist-types/commands/RegisterApplicationRevisionCommand.d.ts +19 -0
- package/dist-types/commands/RegisterOnPremisesInstanceCommand.d.ts +34 -0
- package/dist-types/commands/RemoveTagsFromOnPremisesInstancesCommand.d.ts +23 -0
- package/dist-types/commands/SkipWaitTimeForInstanceTerminationCommand.d.ts +20 -0
- package/dist-types/commands/StopDeploymentCommand.d.ts +20 -0
- package/dist-types/commands/TagResourceCommand.d.ts +27 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +27 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDeploymentGroupCommand.d.ts +125 -0
- package/package.json +30 -30
|
@@ -29,6 +29,22 @@ export interface DeleteGitHubAccountTokenCommandOutput extends DeleteGitHubAccou
|
|
|
29
29
|
* @see {@link DeleteGitHubAccountTokenCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link GitHubAccountTokenDoesNotExistException} (client fault)
|
|
33
|
+
* <p>No GitHub account connection exists with the named specified in the call.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GitHubAccountTokenNameRequiredException} (client fault)
|
|
36
|
+
* <p>The call is missing a required GitHub account connection name.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidGitHubAccountTokenNameException} (client fault)
|
|
39
|
+
* <p>The format of the specified GitHub account connection name is invalid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
42
|
+
* <p>The API used does not support the deployment.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceValidationException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be validated.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteGitHubAccountTokenCommand extends $Command<DeleteGitHubAccountTokenCommandInput, DeleteGitHubAccountTokenCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteGitHubAccountTokenCommandInput;
|
|
@@ -29,6 +29,7 @@ export interface DeleteResourcesByExternalIdCommandOutput extends DeleteResource
|
|
|
29
29
|
* @see {@link DeleteResourcesByExternalIdCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
*
|
|
32
33
|
*/
|
|
33
34
|
export declare class DeleteResourcesByExternalIdCommand extends $Command<DeleteResourcesByExternalIdCommandInput, DeleteResourcesByExternalIdCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
35
|
readonly input: DeleteResourcesByExternalIdCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface DeregisterOnPremisesInstanceCommandOutput extends __MetadataBea
|
|
|
29
29
|
* @see {@link DeregisterOnPremisesInstanceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InstanceNameRequiredException} (client fault)
|
|
33
|
+
* <p>An on-premises instance name was not specified.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
36
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class DeregisterOnPremisesInstanceCommand extends $Command<DeregisterOnPremisesInstanceCommandInput, DeregisterOnPremisesInstanceCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
41
|
readonly input: DeregisterOnPremisesInstanceCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetApplicationCommandOutput extends GetApplicationOutput, __Met
|
|
|
29
29
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
36
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
39
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
44
|
readonly input: GetApplicationCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetApplicationRevisionCommandOutput extends GetApplicationRevis
|
|
|
29
29
|
* @see {@link GetApplicationRevisionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
36
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
39
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidRevisionException} (client fault)
|
|
42
|
+
* <p>The revision was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link RevisionDoesNotExistException} (client fault)
|
|
45
|
+
* <p>The named revision does not exist with the IAM user or Amazon Web Services account.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link RevisionRequiredException} (client fault)
|
|
48
|
+
* <p>The revision ID was not specified.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetApplicationRevisionCommand extends $Command<GetApplicationRevisionCommandInput, GetApplicationRevisionCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
53
|
readonly input: GetApplicationRevisionCommandInput;
|
|
@@ -35,6 +35,17 @@ export interface GetDeploymentCommandOutput extends GetDeploymentOutput, __Metad
|
|
|
35
35
|
* @see {@link GetDeploymentCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
39
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
40
|
+
* exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
43
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
46
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
38
49
|
*/
|
|
39
50
|
export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, CodeDeployClientResolvedConfig> {
|
|
40
51
|
readonly input: GetDeploymentCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetDeploymentConfigCommandOutput extends GetDeploymentConfigOut
|
|
|
29
29
|
* @see {@link GetDeploymentConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The deployment configuration does not exist with the IAM user or
|
|
34
|
+
* Amazon Web Services account.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DeploymentConfigNameRequiredException} (client fault)
|
|
37
|
+
* <p>The deployment configuration name was not specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidComputePlatformException} (client fault)
|
|
40
|
+
* <p>The computePlatform is invalid. The computePlatform should be <code>Lambda</code>, <code>Server</code>, or <code>ECS</code>.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidDeploymentConfigNameException} (client fault)
|
|
43
|
+
* <p>The deployment configuration name was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetDeploymentConfigCommand extends $Command<GetDeploymentConfigCommandInput, GetDeploymentConfigCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
48
|
readonly input: GetDeploymentConfigCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface GetDeploymentGroupCommandOutput extends GetDeploymentGroupOutpu
|
|
|
29
29
|
* @see {@link GetDeploymentGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
36
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DeploymentConfigDoesNotExistException} (client fault)
|
|
39
|
+
* <p>The deployment configuration does not exist with the IAM user or
|
|
40
|
+
* Amazon Web Services account.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
43
|
+
* <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
46
|
+
* <p>The deployment group name was not specified.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
49
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidDeploymentGroupNameException} (client fault)
|
|
52
|
+
* <p>The deployment group name was specified in an invalid format.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class GetDeploymentGroupCommand extends $Command<GetDeploymentGroupCommandInput, GetDeploymentGroupCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
57
|
readonly input: GetDeploymentGroupCommandInput;
|
|
@@ -31,6 +31,29 @@ export interface GetDeploymentInstanceCommandOutput extends GetDeploymentInstanc
|
|
|
31
31
|
* @see {@link GetDeploymentInstanceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
35
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
36
|
+
* exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
39
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InstanceDoesNotExistException} (client fault)
|
|
42
|
+
* <p>The specified instance does not exist in the deployment group.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InstanceIdRequiredException} (client fault)
|
|
45
|
+
* <p>The instance ID was not specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidComputePlatformException} (client fault)
|
|
48
|
+
* <p>The computePlatform is invalid. The computePlatform should be <code>Lambda</code>, <code>Server</code>, or <code>ECS</code>.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
51
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
54
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
34
57
|
*/
|
|
35
58
|
export declare class GetDeploymentInstanceCommand extends $Command<GetDeploymentInstanceCommandInput, GetDeploymentInstanceCommandOutput, CodeDeployClientResolvedConfig> {
|
|
36
59
|
readonly input: GetDeploymentInstanceCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface GetDeploymentTargetCommandOutput extends GetDeploymentTargetOut
|
|
|
29
29
|
* @see {@link GetDeploymentTargetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
34
|
+
* exist.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
37
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link DeploymentNotStartedException} (client fault)
|
|
40
|
+
* <p>The specified deployment has not started.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link DeploymentTargetDoesNotExistException} (client fault)
|
|
43
|
+
* <p> The provided target ID does not belong to the attempted deployment. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link DeploymentTargetIdRequiredException} (client fault)
|
|
46
|
+
* <p> A deployment target ID was not provided. </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
49
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidDeploymentTargetIdException} (client fault)
|
|
52
|
+
* <p> The target ID provided was not valid. </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
55
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class GetDeploymentTargetCommand extends $Command<GetDeploymentTargetCommandInput, GetDeploymentTargetCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
60
|
readonly input: GetDeploymentTargetCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetOnPremisesInstanceCommandOutput extends GetOnPremisesInstanc
|
|
|
29
29
|
* @see {@link GetOnPremisesInstanceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InstanceNameRequiredException} (client fault)
|
|
33
|
+
* <p>An on-premises instance name was not specified.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InstanceNotRegisteredException} (client fault)
|
|
36
|
+
* <p>The specified on-premises instance is not registered.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
39
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetOnPremisesInstanceCommand extends $Command<GetOnPremisesInstanceCommandInput, GetOnPremisesInstanceCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
44
|
readonly input: GetOnPremisesInstanceCommandInput;
|
|
@@ -29,6 +29,38 @@ export interface ListApplicationRevisionsCommandOutput extends ListApplicationRe
|
|
|
29
29
|
* @see {@link ListApplicationRevisionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
36
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link BucketNameFilterRequiredException} (client fault)
|
|
39
|
+
* <p>A bucket name is required, but was not provided.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
42
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidBucketNameFilterException} (client fault)
|
|
45
|
+
* <p>The bucket name either doesn't exist or was specified in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidDeployedStateFilterException} (client fault)
|
|
48
|
+
* <p>The deployed state filter was specified in an invalid format.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidKeyPrefixFilterException} (client fault)
|
|
51
|
+
* <p>The specified key prefix filter was specified in an invalid format.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
54
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InvalidSortByException} (client fault)
|
|
57
|
+
* <p>The column name to sort by is either not present or was specified in an invalid
|
|
58
|
+
* format.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InvalidSortOrderException} (client fault)
|
|
61
|
+
* <p>The sort order was specified in an invalid format.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
32
64
|
*/
|
|
33
65
|
export declare class ListApplicationRevisionsCommand extends $Command<ListApplicationRevisionsCommandInput, ListApplicationRevisionsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
66
|
readonly input: ListApplicationRevisionsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsOutput, _
|
|
|
29
29
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
38
|
readonly input: ListApplicationsCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListDeploymentConfigsCommandOutput extends ListDeploymentConfig
|
|
|
29
29
|
* @see {@link ListDeploymentConfigsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListDeploymentConfigsCommand extends $Command<ListDeploymentConfigsCommandInput, ListDeploymentConfigsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
38
|
readonly input: ListDeploymentConfigsCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface ListDeploymentGroupsCommandOutput extends ListDeploymentGroupsO
|
|
|
30
30
|
* @see {@link ListDeploymentGroupsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
34
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
37
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
40
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
43
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class ListDeploymentGroupsCommand extends $Command<ListDeploymentGroupsCommandInput, ListDeploymentGroupsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
35
48
|
readonly input: ListDeploymentGroupsCommandInput;
|
|
@@ -38,6 +38,41 @@ export interface ListDeploymentInstancesCommandOutput extends ListDeploymentInst
|
|
|
38
38
|
* @see {@link ListDeploymentInstancesCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
42
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
43
|
+
* exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
46
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link DeploymentNotStartedException} (client fault)
|
|
49
|
+
* <p>The specified deployment has not started.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidComputePlatformException} (client fault)
|
|
52
|
+
* <p>The computePlatform is invalid. The computePlatform should be <code>Lambda</code>, <code>Server</code>, or <code>ECS</code>.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
55
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InvalidDeploymentInstanceTypeException} (client fault)
|
|
58
|
+
* <p>An instance type was specified for an in-place deployment. Instance types are
|
|
59
|
+
* supported for blue/green deployments only.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InvalidInstanceStatusException} (client fault)
|
|
62
|
+
* <p>The specified instance status does not exist.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InvalidInstanceTypeException} (client fault)
|
|
65
|
+
* <p>An invalid instance type was specified for instances in a blue/green deployment. Valid
|
|
66
|
+
* values include "Blue" for an original environment and "Green" for a replacement
|
|
67
|
+
* environment.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
70
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InvalidTargetFilterNameException} (client fault)
|
|
73
|
+
* <p> The target filter name is invalid. </p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
41
76
|
*/
|
|
42
77
|
export declare class ListDeploymentInstancesCommand extends $Command<ListDeploymentInstancesCommandInput, ListDeploymentInstancesCommandOutput, CodeDeployClientResolvedConfig> {
|
|
43
78
|
readonly input: ListDeploymentInstancesCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface ListDeploymentTargetsCommandOutput extends ListDeploymentTarget
|
|
|
29
29
|
* @see {@link ListDeploymentTargetsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
34
|
+
* exist.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
37
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link DeploymentNotStartedException} (client fault)
|
|
40
|
+
* <p>The specified deployment has not started.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
43
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidDeploymentInstanceTypeException} (client fault)
|
|
46
|
+
* <p>An instance type was specified for an in-place deployment. Instance types are
|
|
47
|
+
* supported for blue/green deployments only.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidInstanceStatusException} (client fault)
|
|
50
|
+
* <p>The specified instance status does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InvalidInstanceTypeException} (client fault)
|
|
53
|
+
* <p>An invalid instance type was specified for instances in a blue/green deployment. Valid
|
|
54
|
+
* values include "Blue" for an original environment and "Green" for a replacement
|
|
55
|
+
* environment.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
58
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class ListDeploymentTargetsCommand extends $Command<ListDeploymentTargetsCommandInput, ListDeploymentTargetsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
63
|
readonly input: ListDeploymentTargetsCommandInput;
|
|
@@ -30,6 +30,40 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsOutput, __M
|
|
|
30
30
|
* @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
34
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
37
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link DeploymentGroupDoesNotExistException} (client fault)
|
|
40
|
+
* <p>The named deployment group with the IAM user or Amazon Web Services account does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link DeploymentGroupNameRequiredException} (client fault)
|
|
43
|
+
* <p>The deployment group name was not specified.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
46
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidDeploymentGroupNameException} (client fault)
|
|
49
|
+
* <p>The deployment group name was specified in an invalid format.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidDeploymentStatusException} (client fault)
|
|
52
|
+
* <p>The specified deployment status doesn't exist or cannot be determined.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidExternalIdException} (client fault)
|
|
55
|
+
* <p>The external ID was specified in an invalid format.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
58
|
+
* <p>The input was specified in an invalid format.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
61
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidTimeRangeException} (client fault)
|
|
64
|
+
* <p>The specified time range was specified in an invalid format.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
33
67
|
*/
|
|
34
68
|
export declare class ListDeploymentsCommand extends $Command<ListDeploymentsCommandInput, ListDeploymentsCommandOutput, CodeDeployClientResolvedConfig> {
|
|
35
69
|
readonly input: ListDeploymentsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListGitHubAccountTokenNamesCommandOutput extends ListGitHubAcco
|
|
|
29
29
|
* @see {@link ListGitHubAccountTokenNamesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link OperationNotSupportedException} (client fault)
|
|
36
|
+
* <p>The API used does not support the deployment.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceValidationException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be validated.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListGitHubAccountTokenNamesCommand extends $Command<ListGitHubAccountTokenNamesCommandInput, ListGitHubAccountTokenNamesCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
44
|
readonly input: ListGitHubAccountTokenNamesCommandInput;
|
|
@@ -32,6 +32,16 @@ export interface ListOnPremisesInstancesCommandOutput extends ListOnPremisesInst
|
|
|
32
32
|
* @see {@link ListOnPremisesInstancesCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRegistrationStatusException} (client fault)
|
|
39
|
+
* <p>The registration status was specified in an invalid format.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidTagFilterException} (client fault)
|
|
42
|
+
* <p>The tag filter was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
35
45
|
*/
|
|
36
46
|
export declare class ListOnPremisesInstancesCommand extends $Command<ListOnPremisesInstancesCommandInput, ListOnPremisesInstancesCommandOutput, CodeDeployClientResolvedConfig> {
|
|
37
47
|
readonly input: ListOnPremisesInstancesCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ArnNotSupportedException} (client fault)
|
|
34
|
+
* <p> The specified ARN is not supported. For example, it might be an ARN for a resource
|
|
35
|
+
* that is not expected. </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
38
|
+
* <p> The specified ARN is not in a valid format. </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceArnRequiredException} (client fault)
|
|
41
|
+
* <p> The ARN of a resource is required, but was not found. </p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeDeployClientResolvedConfig> {
|
|
35
46
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -37,6 +37,33 @@ export interface PutLifecycleEventHookExecutionStatusCommandOutput extends PutLi
|
|
|
37
37
|
* @see {@link PutLifecycleEventHookExecutionStatusCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link DeploymentDoesNotExistException} (client fault)
|
|
41
|
+
* <p>The deployment with the IAM user or Amazon Web Services account does not
|
|
42
|
+
* exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link DeploymentIdRequiredException} (client fault)
|
|
45
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidDeploymentIdException} (client fault)
|
|
48
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidLifecycleEventHookExecutionIdException} (client fault)
|
|
51
|
+
* <p>A lifecycle event hook is invalid. Review the <code>hooks</code> section in your
|
|
52
|
+
* AppSpec file to ensure the lifecycle events and <code>hooks</code> functions are
|
|
53
|
+
* valid.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidLifecycleEventHookExecutionStatusException} (client fault)
|
|
56
|
+
* <p>The result of a Lambda validation function that verifies a lifecycle event
|
|
57
|
+
* is invalid. It should return <code>Succeeded</code> or <code>Failed</code>.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link LifecycleEventAlreadyCompletedException} (client fault)
|
|
60
|
+
* <p>An attempt to return the status of an already completed lifecycle event
|
|
61
|
+
* occurred.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link UnsupportedActionForDeploymentTypeException} (client fault)
|
|
64
|
+
* <p>A call was submitted that is not supported for the specified deployment type.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
40
67
|
*/
|
|
41
68
|
export declare class PutLifecycleEventHookExecutionStatusCommand extends $Command<PutLifecycleEventHookExecutionStatusCommandInput, PutLifecycleEventHookExecutionStatusCommandOutput, CodeDeployClientResolvedConfig> {
|
|
42
69
|
readonly input: PutLifecycleEventHookExecutionStatusCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface RegisterApplicationRevisionCommandOutput extends __MetadataBear
|
|
|
29
29
|
* @see {@link RegisterApplicationRevisionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApplicationDoesNotExistException} (client fault)
|
|
33
|
+
* <p>The application does not exist with the IAM user or Amazon Web Services account.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApplicationNameRequiredException} (client fault)
|
|
36
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DescriptionTooLongException} (client fault)
|
|
39
|
+
* <p>The description is too long.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidApplicationNameException} (client fault)
|
|
42
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidRevisionException} (client fault)
|
|
45
|
+
* <p>The revision was specified in an invalid format.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link RevisionRequiredException} (client fault)
|
|
48
|
+
* <p>The revision ID was not specified.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class RegisterApplicationRevisionCommand extends $Command<RegisterApplicationRevisionCommandInput, RegisterApplicationRevisionCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
53
|
readonly input: RegisterApplicationRevisionCommandInput;
|
|
@@ -32,6 +32,40 @@ export interface RegisterOnPremisesInstanceCommandOutput extends __MetadataBeare
|
|
|
32
32
|
* @see {@link RegisterOnPremisesInstanceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link IamArnRequiredException} (client fault)
|
|
36
|
+
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or IAM user ARN in the request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link IamSessionArnAlreadyRegisteredException} (client fault)
|
|
39
|
+
* <p>The request included an IAM session ARN that has already been used to
|
|
40
|
+
* register a different instance.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link IamUserArnAlreadyRegisteredException} (client fault)
|
|
43
|
+
* <p>The specified IAM user ARN is already registered with an on-premises
|
|
44
|
+
* instance.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link IamUserArnRequiredException} (client fault)
|
|
47
|
+
* <p>An IAM user ARN was not specified.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InstanceNameAlreadyRegisteredException} (client fault)
|
|
50
|
+
* <p>The specified on-premises instance name is already registered.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InstanceNameRequiredException} (client fault)
|
|
53
|
+
* <p>An on-premises instance name was not specified.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidIamSessionArnException} (client fault)
|
|
56
|
+
* <p>The IAM session ARN was specified in an invalid format.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InvalidIamUserArnException} (client fault)
|
|
59
|
+
* <p>The IAM user ARN was specified in an invalid format.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
62
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link MultipleIamArnsProvidedException} (client fault)
|
|
65
|
+
* <p>Both an IAM user ARN and an IAM session ARN were
|
|
66
|
+
* included in the request. Use only one ARN type.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
35
69
|
*/
|
|
36
70
|
export declare class RegisterOnPremisesInstanceCommand extends $Command<RegisterOnPremisesInstanceCommandInput, RegisterOnPremisesInstanceCommandOutput, CodeDeployClientResolvedConfig> {
|
|
37
71
|
readonly input: RegisterOnPremisesInstanceCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface RemoveTagsFromOnPremisesInstancesCommandOutput extends __Metada
|
|
|
29
29
|
* @see {@link RemoveTagsFromOnPremisesInstancesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CodeDeployClientResolvedConfig | config} for CodeDeployClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InstanceLimitExceededException} (client fault)
|
|
33
|
+
* <p>The maximum number of allowed on-premises instances in a single call was
|
|
34
|
+
* exceeded.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InstanceNameRequiredException} (client fault)
|
|
37
|
+
* <p>An on-premises instance name was not specified.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InstanceNotRegisteredException} (client fault)
|
|
40
|
+
* <p>The specified on-premises instance is not registered.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidInstanceNameException} (client fault)
|
|
43
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidTagException} (client fault)
|
|
46
|
+
* <p>The tag was specified in an invalid format.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TagLimitExceededException} (client fault)
|
|
49
|
+
* <p>The maximum allowed number of tags was exceeded.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TagRequiredException} (client fault)
|
|
52
|
+
* <p>A tag was not specified.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class RemoveTagsFromOnPremisesInstancesCommand extends $Command<RemoveTagsFromOnPremisesInstancesCommandInput, RemoveTagsFromOnPremisesInstancesCommandOutput, CodeDeployClientResolvedConfig> {
|
|
34
57
|
readonly input: RemoveTagsFromOnPremisesInstancesCommandInput;
|