All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ecs.model.Deployment Maven / Gradle / Ivy

Go to download

The AWS Java SDK for the Amazon EC2 Container Service holds the client classes that are used for communicating with the Amazon EC2 Container Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.ecs.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The details of an Amazon ECS service deployment. This is used only when a service uses the ECS * deployment controller type. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Deployment implements Serializable, Cloneable, StructuredPojo { /** *

* The ID of the deployment. *

*/ private String id; /** *

* The status of the deployment. The following describes each state: *

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*
*/ private String status; /** *

* The most recent task definition that was specified for the tasks in the service to use. *

*/ private String taskDefinition; /** *

* The most recent desired count of tasks that was specified for the service to deploy or maintain. *

*/ private Integer desiredCount; /** *

* The number of tasks in the deployment that are in the PENDING status. *

*/ private Integer pendingCount; /** *

* The number of tasks in the deployment that are in the RUNNING status. *

*/ private Integer runningCount; /** *

* The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any * of its defined health checks and is stopped. *

* *

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and * stops being evaluated. *

*
*/ private Integer failedTasks; /** *

* The Unix timestamp for when the service deployment was created. *

*/ private java.util.Date createdAt; /** *

* The Unix timestamp for when the service deployment was last updated. *

*/ private java.util.Date updatedAt; /** *

* The capacity provider strategy that the deployment is using. *

*/ private com.amazonaws.internal.SdkInternalList capacityProviderStrategy; /** *

* The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types * in the Amazon Elastic Container Service Developer Guide. *

*/ private String launchType; /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

*/ private String platformVersion; /** *

* The VPC subnet and security group configuration for tasks that receive their own elastic network interface by * using the awsvpc networking mode. *

*/ private NetworkConfiguration networkConfiguration; /** * *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

*
*

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a * COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the * deployment will transition to a FAILED state. A deployment in FAILED state will launch * no new tasks. For more information, see DeploymentCircuitBreaker. *

*/ private String rolloutState; /** *

* A description of the rollout state of a deployment. *

*/ private String rolloutStateReason; /** *

* The ID of the deployment. *

* * @param id * The ID of the deployment. */ public void setId(String id) { this.id = id; } /** *

* The ID of the deployment. *

* * @return The ID of the deployment. */ public String getId() { return this.id; } /** *

* The ID of the deployment. *

* * @param id * The ID of the deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withId(String id) { setId(id); return this; } /** *

* The status of the deployment. The following describes each state: *

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*
* * @param status * The status of the deployment. The following describes each state:

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*/ public void setStatus(String status) { this.status = status; } /** *

* The status of the deployment. The following describes each state: *

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*
* * @return The status of the deployment. The following describes each state:

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*/ public String getStatus() { return this.status; } /** *

* The status of the deployment. The following describes each state: *

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
*
* * @param status * The status of the deployment. The following describes each state:

*
*
PRIMARY
*
*

* The most recent deployment of a service. *

*
*
ACTIVE
*
*

* A service deployment that still has running tasks, but are in the process of being replaced with a new * PRIMARY deployment. *

*
*
INACTIVE
*
*

* A deployment that has been completely replaced. *

*
* @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withStatus(String status) { setStatus(status); return this; } /** *

* The most recent task definition that was specified for the tasks in the service to use. *

* * @param taskDefinition * The most recent task definition that was specified for the tasks in the service to use. */ public void setTaskDefinition(String taskDefinition) { this.taskDefinition = taskDefinition; } /** *

* The most recent task definition that was specified for the tasks in the service to use. *

* * @return The most recent task definition that was specified for the tasks in the service to use. */ public String getTaskDefinition() { return this.taskDefinition; } /** *

* The most recent task definition that was specified for the tasks in the service to use. *

* * @param taskDefinition * The most recent task definition that was specified for the tasks in the service to use. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withTaskDefinition(String taskDefinition) { setTaskDefinition(taskDefinition); return this; } /** *

* The most recent desired count of tasks that was specified for the service to deploy or maintain. *

* * @param desiredCount * The most recent desired count of tasks that was specified for the service to deploy or maintain. */ public void setDesiredCount(Integer desiredCount) { this.desiredCount = desiredCount; } /** *

* The most recent desired count of tasks that was specified for the service to deploy or maintain. *

* * @return The most recent desired count of tasks that was specified for the service to deploy or maintain. */ public Integer getDesiredCount() { return this.desiredCount; } /** *

* The most recent desired count of tasks that was specified for the service to deploy or maintain. *

* * @param desiredCount * The most recent desired count of tasks that was specified for the service to deploy or maintain. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withDesiredCount(Integer desiredCount) { setDesiredCount(desiredCount); return this; } /** *

* The number of tasks in the deployment that are in the PENDING status. *

* * @param pendingCount * The number of tasks in the deployment that are in the PENDING status. */ public void setPendingCount(Integer pendingCount) { this.pendingCount = pendingCount; } /** *

* The number of tasks in the deployment that are in the PENDING status. *

* * @return The number of tasks in the deployment that are in the PENDING status. */ public Integer getPendingCount() { return this.pendingCount; } /** *

* The number of tasks in the deployment that are in the PENDING status. *

* * @param pendingCount * The number of tasks in the deployment that are in the PENDING status. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withPendingCount(Integer pendingCount) { setPendingCount(pendingCount); return this; } /** *

* The number of tasks in the deployment that are in the RUNNING status. *

* * @param runningCount * The number of tasks in the deployment that are in the RUNNING status. */ public void setRunningCount(Integer runningCount) { this.runningCount = runningCount; } /** *

* The number of tasks in the deployment that are in the RUNNING status. *

* * @return The number of tasks in the deployment that are in the RUNNING status. */ public Integer getRunningCount() { return this.runningCount; } /** *

* The number of tasks in the deployment that are in the RUNNING status. *

* * @param runningCount * The number of tasks in the deployment that are in the RUNNING status. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withRunningCount(Integer runningCount) { setRunningCount(runningCount); return this; } /** *

* The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any * of its defined health checks and is stopped. *

* *

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and * stops being evaluated. *

*
* * @param failedTasks * The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it * fails any of its defined health checks and is stopped.

*

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero * and stops being evaluated. *

*/ public void setFailedTasks(Integer failedTasks) { this.failedTasks = failedTasks; } /** *

* The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any * of its defined health checks and is stopped. *

* *

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and * stops being evaluated. *

*
* * @return The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it * fails any of its defined health checks and is stopped.

*

* Once a service deployment has one or more successfully running tasks, the failed task count resets to * zero and stops being evaluated. *

*/ public Integer getFailedTasks() { return this.failedTasks; } /** *

* The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any * of its defined health checks and is stopped. *

* *

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and * stops being evaluated. *

*
* * @param failedTasks * The number of consecutively failed tasks in the deployment. A task is considered a failure if the service * scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it * fails any of its defined health checks and is stopped.

*

* Once a service deployment has one or more successfully running tasks, the failed task count resets to zero * and stops being evaluated. *

* @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withFailedTasks(Integer failedTasks) { setFailedTasks(failedTasks); return this; } /** *

* The Unix timestamp for when the service deployment was created. *

* * @param createdAt * The Unix timestamp for when the service deployment was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The Unix timestamp for when the service deployment was created. *

* * @return The Unix timestamp for when the service deployment was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The Unix timestamp for when the service deployment was created. *

* * @param createdAt * The Unix timestamp for when the service deployment was created. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The Unix timestamp for when the service deployment was last updated. *

* * @param updatedAt * The Unix timestamp for when the service deployment was last updated. */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** *

* The Unix timestamp for when the service deployment was last updated. *

* * @return The Unix timestamp for when the service deployment was last updated. */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** *

* The Unix timestamp for when the service deployment was last updated. *

* * @param updatedAt * The Unix timestamp for when the service deployment was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); return this; } /** *

* The capacity provider strategy that the deployment is using. *

* * @return The capacity provider strategy that the deployment is using. */ public java.util.List getCapacityProviderStrategy() { if (capacityProviderStrategy == null) { capacityProviderStrategy = new com.amazonaws.internal.SdkInternalList(); } return capacityProviderStrategy; } /** *

* The capacity provider strategy that the deployment is using. *

* * @param capacityProviderStrategy * The capacity provider strategy that the deployment is using. */ public void setCapacityProviderStrategy(java.util.Collection capacityProviderStrategy) { if (capacityProviderStrategy == null) { this.capacityProviderStrategy = null; return; } this.capacityProviderStrategy = new com.amazonaws.internal.SdkInternalList(capacityProviderStrategy); } /** *

* The capacity provider strategy that the deployment is using. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setCapacityProviderStrategy(java.util.Collection)} or * {@link #withCapacityProviderStrategy(java.util.Collection)} if you want to override the existing values. *

* * @param capacityProviderStrategy * The capacity provider strategy that the deployment is using. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withCapacityProviderStrategy(CapacityProviderStrategyItem... capacityProviderStrategy) { if (this.capacityProviderStrategy == null) { setCapacityProviderStrategy(new com.amazonaws.internal.SdkInternalList(capacityProviderStrategy.length)); } for (CapacityProviderStrategyItem ele : capacityProviderStrategy) { this.capacityProviderStrategy.add(ele); } return this; } /** *

* The capacity provider strategy that the deployment is using. *

* * @param capacityProviderStrategy * The capacity provider strategy that the deployment is using. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withCapacityProviderStrategy(java.util.Collection capacityProviderStrategy) { setCapacityProviderStrategy(capacityProviderStrategy); return this; } /** *

* The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types * in the Amazon Elastic Container Service Developer Guide. *

* * @param launchType * The launch type the tasks in the service are using. For more information, see Amazon ECS Launch * Types in the Amazon Elastic Container Service Developer Guide. * @see LaunchType */ public void setLaunchType(String launchType) { this.launchType = launchType; } /** *

* The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types * in the Amazon Elastic Container Service Developer Guide. *

* * @return The launch type the tasks in the service are using. For more information, see Amazon ECS Launch * Types in the Amazon Elastic Container Service Developer Guide. * @see LaunchType */ public String getLaunchType() { return this.launchType; } /** *

* The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types * in the Amazon Elastic Container Service Developer Guide. *

* * @param launchType * The launch type the tasks in the service are using. For more information, see Amazon ECS Launch * Types in the Amazon Elastic Container Service Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see LaunchType */ public Deployment withLaunchType(String launchType) { setLaunchType(launchType); return this; } /** *

* The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types * in the Amazon Elastic Container Service Developer Guide. *

* * @param launchType * The launch type the tasks in the service are using. For more information, see Amazon ECS Launch * Types in the Amazon Elastic Container Service Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see LaunchType */ public Deployment withLaunchType(LaunchType launchType) { this.launchType = launchType.toString(); return this; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @param platformVersion * The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform version * is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. */ public void setPlatformVersion(String platformVersion) { this.platformVersion = platformVersion; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @return The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform * version is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. */ public String getPlatformVersion() { return this.platformVersion; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @param platformVersion * The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform version * is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withPlatformVersion(String platformVersion) { setPlatformVersion(platformVersion); return this; } /** *

* The VPC subnet and security group configuration for tasks that receive their own elastic network interface by * using the awsvpc networking mode. *

* * @param networkConfiguration * The VPC subnet and security group configuration for tasks that receive their own elastic network interface * by using the awsvpc networking mode. */ public void setNetworkConfiguration(NetworkConfiguration networkConfiguration) { this.networkConfiguration = networkConfiguration; } /** *

* The VPC subnet and security group configuration for tasks that receive their own elastic network interface by * using the awsvpc networking mode. *

* * @return The VPC subnet and security group configuration for tasks that receive their own elastic network * interface by using the awsvpc networking mode. */ public NetworkConfiguration getNetworkConfiguration() { return this.networkConfiguration; } /** *

* The VPC subnet and security group configuration for tasks that receive their own elastic network interface by * using the awsvpc networking mode. *

* * @param networkConfiguration * The VPC subnet and security group configuration for tasks that receive their own elastic network interface * by using the awsvpc networking mode. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withNetworkConfiguration(NetworkConfiguration networkConfiguration) { setNetworkConfiguration(networkConfiguration); return this; } /** * *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

*
*

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a * COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the * deployment will transition to a FAILED state. A deployment in FAILED state will launch * no new tasks. For more information, see DeploymentCircuitBreaker. *

* * @param rolloutState *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

*
*

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to * a COMPLETED state. If the service fails to reach a steady state and circuit breaker is * enabled, the deployment will transition to a FAILED state. A deployment in * FAILED state will launch no new tasks. For more information, see * DeploymentCircuitBreaker. * @see DeploymentRolloutState */ public void setRolloutState(String rolloutState) { this.rolloutState = rolloutState; } /** * *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

*
*

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a * COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the * deployment will transition to a FAILED state. A deployment in FAILED state will launch * no new tasks. For more information, see DeploymentCircuitBreaker. *

* * @return

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

*
*

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition * to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is * enabled, the deployment will transition to a FAILED state. A deployment in * FAILED state will launch no new tasks. For more information, see * DeploymentCircuitBreaker. * @see DeploymentRolloutState */ public String getRolloutState() { return this.rolloutState; } /** * *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

* *

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a * COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the * deployment will transition to a FAILED state. A deployment in FAILED state will launch * no new tasks. For more information, see DeploymentCircuitBreaker. *

* * @param rolloutState *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

* *

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to * a COMPLETED state. If the service fails to reach a steady state and circuit breaker is * enabled, the deployment will transition to a FAILED state. A deployment in * FAILED state will launch no new tasks. For more information, see * DeploymentCircuitBreaker. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentRolloutState */ public Deployment withRolloutState(String rolloutState) { setRolloutState(rolloutState); return this; } /** * *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

* *

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a * COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the * deployment will transition to a FAILED state. A deployment in FAILED state will launch * no new tasks. For more information, see DeploymentCircuitBreaker. *

* * @param rolloutState *

* The rolloutState of a service is only returned for services that use the rolling update ( * ECS) deployment type that are not behind a Classic Load Balancer. *

* *

* The rollout state of the deployment. When a service deployment is started, it begins in an * IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to * a COMPLETED state. If the service fails to reach a steady state and circuit breaker is * enabled, the deployment will transition to a FAILED state. A deployment in * FAILED state will launch no new tasks. For more information, see * DeploymentCircuitBreaker. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentRolloutState */ public Deployment withRolloutState(DeploymentRolloutState rolloutState) { this.rolloutState = rolloutState.toString(); return this; } /** *

* A description of the rollout state of a deployment. *

* * @param rolloutStateReason * A description of the rollout state of a deployment. */ public void setRolloutStateReason(String rolloutStateReason) { this.rolloutStateReason = rolloutStateReason; } /** *

* A description of the rollout state of a deployment. *

* * @return A description of the rollout state of a deployment. */ public String getRolloutStateReason() { return this.rolloutStateReason; } /** *

* A description of the rollout state of a deployment. *

* * @param rolloutStateReason * A description of the rollout state of a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public Deployment withRolloutStateReason(String rolloutStateReason) { setRolloutStateReason(rolloutStateReason); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getTaskDefinition() != null) sb.append("TaskDefinition: ").append(getTaskDefinition()).append(","); if (getDesiredCount() != null) sb.append("DesiredCount: ").append(getDesiredCount()).append(","); if (getPendingCount() != null) sb.append("PendingCount: ").append(getPendingCount()).append(","); if (getRunningCount() != null) sb.append("RunningCount: ").append(getRunningCount()).append(","); if (getFailedTasks() != null) sb.append("FailedTasks: ").append(getFailedTasks()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()).append(","); if (getCapacityProviderStrategy() != null) sb.append("CapacityProviderStrategy: ").append(getCapacityProviderStrategy()).append(","); if (getLaunchType() != null) sb.append("LaunchType: ").append(getLaunchType()).append(","); if (getPlatformVersion() != null) sb.append("PlatformVersion: ").append(getPlatformVersion()).append(","); if (getNetworkConfiguration() != null) sb.append("NetworkConfiguration: ").append(getNetworkConfiguration()).append(","); if (getRolloutState() != null) sb.append("RolloutState: ").append(getRolloutState()).append(","); if (getRolloutStateReason() != null) sb.append("RolloutStateReason: ").append(getRolloutStateReason()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Deployment == false) return false; Deployment other = (Deployment) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getTaskDefinition() == null ^ this.getTaskDefinition() == null) return false; if (other.getTaskDefinition() != null && other.getTaskDefinition().equals(this.getTaskDefinition()) == false) return false; if (other.getDesiredCount() == null ^ this.getDesiredCount() == null) return false; if (other.getDesiredCount() != null && other.getDesiredCount().equals(this.getDesiredCount()) == false) return false; if (other.getPendingCount() == null ^ this.getPendingCount() == null) return false; if (other.getPendingCount() != null && other.getPendingCount().equals(this.getPendingCount()) == false) return false; if (other.getRunningCount() == null ^ this.getRunningCount() == null) return false; if (other.getRunningCount() != null && other.getRunningCount().equals(this.getRunningCount()) == false) return false; if (other.getFailedTasks() == null ^ this.getFailedTasks() == null) return false; if (other.getFailedTasks() != null && other.getFailedTasks().equals(this.getFailedTasks()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; if (other.getCapacityProviderStrategy() == null ^ this.getCapacityProviderStrategy() == null) return false; if (other.getCapacityProviderStrategy() != null && other.getCapacityProviderStrategy().equals(this.getCapacityProviderStrategy()) == false) return false; if (other.getLaunchType() == null ^ this.getLaunchType() == null) return false; if (other.getLaunchType() != null && other.getLaunchType().equals(this.getLaunchType()) == false) return false; if (other.getPlatformVersion() == null ^ this.getPlatformVersion() == null) return false; if (other.getPlatformVersion() != null && other.getPlatformVersion().equals(this.getPlatformVersion()) == false) return false; if (other.getNetworkConfiguration() == null ^ this.getNetworkConfiguration() == null) return false; if (other.getNetworkConfiguration() != null && other.getNetworkConfiguration().equals(this.getNetworkConfiguration()) == false) return false; if (other.getRolloutState() == null ^ this.getRolloutState() == null) return false; if (other.getRolloutState() != null && other.getRolloutState().equals(this.getRolloutState()) == false) return false; if (other.getRolloutStateReason() == null ^ this.getRolloutStateReason() == null) return false; if (other.getRolloutStateReason() != null && other.getRolloutStateReason().equals(this.getRolloutStateReason()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getTaskDefinition() == null) ? 0 : getTaskDefinition().hashCode()); hashCode = prime * hashCode + ((getDesiredCount() == null) ? 0 : getDesiredCount().hashCode()); hashCode = prime * hashCode + ((getPendingCount() == null) ? 0 : getPendingCount().hashCode()); hashCode = prime * hashCode + ((getRunningCount() == null) ? 0 : getRunningCount().hashCode()); hashCode = prime * hashCode + ((getFailedTasks() == null) ? 0 : getFailedTasks().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getCapacityProviderStrategy() == null) ? 0 : getCapacityProviderStrategy().hashCode()); hashCode = prime * hashCode + ((getLaunchType() == null) ? 0 : getLaunchType().hashCode()); hashCode = prime * hashCode + ((getPlatformVersion() == null) ? 0 : getPlatformVersion().hashCode()); hashCode = prime * hashCode + ((getNetworkConfiguration() == null) ? 0 : getNetworkConfiguration().hashCode()); hashCode = prime * hashCode + ((getRolloutState() == null) ? 0 : getRolloutState().hashCode()); hashCode = prime * hashCode + ((getRolloutStateReason() == null) ? 0 : getRolloutStateReason().hashCode()); return hashCode; } @Override public Deployment clone() { try { return (Deployment) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.ecs.model.transform.DeploymentMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy