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

com.amazonaws.services.codedeploy.model.ECSTarget Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CodeDeploy module holds the client classes that are used for communicating with AWS CodeDeploy Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 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.codedeploy.model;

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

/**
 * 

* Information about the target of an Amazon ECS deployment. *

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

* The unique ID of a deployment. *

*/ private String deploymentId; /** *

* The unique ID of a deployment target that has a type of ecsTarget. *

*/ private String targetId; /** *

* The Amazon Resource Name (ARN) of the target. *

*/ private String targetArn; /** *

* The date and time when the target Amazon ECS application was updated by a deployment. *

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

* The lifecycle events of the deployment to this target Amazon ECS application. *

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

* The status an Amazon ECS deployment's target ECS application. *

*/ private String status; /** *

* The ECSTaskSet objects associated with the ECS target. *

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

* The unique ID of a deployment. *

* * @param deploymentId * The unique ID of a deployment. */ public void setDeploymentId(String deploymentId) { this.deploymentId = deploymentId; } /** *

* The unique ID of a deployment. *

* * @return The unique ID of a deployment. */ public String getDeploymentId() { return this.deploymentId; } /** *

* The unique ID of a deployment. *

* * @param deploymentId * The unique ID of a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withDeploymentId(String deploymentId) { setDeploymentId(deploymentId); return this; } /** *

* The unique ID of a deployment target that has a type of ecsTarget. *

* * @param targetId * The unique ID of a deployment target that has a type of ecsTarget. */ public void setTargetId(String targetId) { this.targetId = targetId; } /** *

* The unique ID of a deployment target that has a type of ecsTarget. *

* * @return The unique ID of a deployment target that has a type of ecsTarget. */ public String getTargetId() { return this.targetId; } /** *

* The unique ID of a deployment target that has a type of ecsTarget. *

* * @param targetId * The unique ID of a deployment target that has a type of ecsTarget. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withTargetId(String targetId) { setTargetId(targetId); return this; } /** *

* The Amazon Resource Name (ARN) of the target. *

* * @param targetArn * The Amazon Resource Name (ARN) of the target. */ public void setTargetArn(String targetArn) { this.targetArn = targetArn; } /** *

* The Amazon Resource Name (ARN) of the target. *

* * @return The Amazon Resource Name (ARN) of the target. */ public String getTargetArn() { return this.targetArn; } /** *

* The Amazon Resource Name (ARN) of the target. *

* * @param targetArn * The Amazon Resource Name (ARN) of the target. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withTargetArn(String targetArn) { setTargetArn(targetArn); return this; } /** *

* The date and time when the target Amazon ECS application was updated by a deployment. *

* * @param lastUpdatedAt * The date and time when the target Amazon ECS application was updated by a deployment. */ public void setLastUpdatedAt(java.util.Date lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } /** *

* The date and time when the target Amazon ECS application was updated by a deployment. *

* * @return The date and time when the target Amazon ECS application was updated by a deployment. */ public java.util.Date getLastUpdatedAt() { return this.lastUpdatedAt; } /** *

* The date and time when the target Amazon ECS application was updated by a deployment. *

* * @param lastUpdatedAt * The date and time when the target Amazon ECS application was updated by a deployment. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withLastUpdatedAt(java.util.Date lastUpdatedAt) { setLastUpdatedAt(lastUpdatedAt); return this; } /** *

* The lifecycle events of the deployment to this target Amazon ECS application. *

* * @return The lifecycle events of the deployment to this target Amazon ECS application. */ public java.util.List getLifecycleEvents() { if (lifecycleEvents == null) { lifecycleEvents = new com.amazonaws.internal.SdkInternalList(); } return lifecycleEvents; } /** *

* The lifecycle events of the deployment to this target Amazon ECS application. *

* * @param lifecycleEvents * The lifecycle events of the deployment to this target Amazon ECS application. */ public void setLifecycleEvents(java.util.Collection lifecycleEvents) { if (lifecycleEvents == null) { this.lifecycleEvents = null; return; } this.lifecycleEvents = new com.amazonaws.internal.SdkInternalList(lifecycleEvents); } /** *

* The lifecycle events of the deployment to this target Amazon ECS application. *

*

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

* * @param lifecycleEvents * The lifecycle events of the deployment to this target Amazon ECS application. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withLifecycleEvents(LifecycleEvent... lifecycleEvents) { if (this.lifecycleEvents == null) { setLifecycleEvents(new com.amazonaws.internal.SdkInternalList(lifecycleEvents.length)); } for (LifecycleEvent ele : lifecycleEvents) { this.lifecycleEvents.add(ele); } return this; } /** *

* The lifecycle events of the deployment to this target Amazon ECS application. *

* * @param lifecycleEvents * The lifecycle events of the deployment to this target Amazon ECS application. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withLifecycleEvents(java.util.Collection lifecycleEvents) { setLifecycleEvents(lifecycleEvents); return this; } /** *

* The status an Amazon ECS deployment's target ECS application. *

* * @param status * The status an Amazon ECS deployment's target ECS application. * @see TargetStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status an Amazon ECS deployment's target ECS application. *

* * @return The status an Amazon ECS deployment's target ECS application. * @see TargetStatus */ public String getStatus() { return this.status; } /** *

* The status an Amazon ECS deployment's target ECS application. *

* * @param status * The status an Amazon ECS deployment's target ECS application. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public ECSTarget withStatus(String status) { setStatus(status); return this; } /** *

* The status an Amazon ECS deployment's target ECS application. *

* * @param status * The status an Amazon ECS deployment's target ECS application. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public ECSTarget withStatus(TargetStatus status) { this.status = status.toString(); return this; } /** *

* The ECSTaskSet objects associated with the ECS target. *

* * @return The ECSTaskSet objects associated with the ECS target. */ public java.util.List getTaskSetsInfo() { if (taskSetsInfo == null) { taskSetsInfo = new com.amazonaws.internal.SdkInternalList(); } return taskSetsInfo; } /** *

* The ECSTaskSet objects associated with the ECS target. *

* * @param taskSetsInfo * The ECSTaskSet objects associated with the ECS target. */ public void setTaskSetsInfo(java.util.Collection taskSetsInfo) { if (taskSetsInfo == null) { this.taskSetsInfo = null; return; } this.taskSetsInfo = new com.amazonaws.internal.SdkInternalList(taskSetsInfo); } /** *

* The ECSTaskSet objects associated with the ECS target. *

*

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

* * @param taskSetsInfo * The ECSTaskSet objects associated with the ECS target. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withTaskSetsInfo(ECSTaskSet... taskSetsInfo) { if (this.taskSetsInfo == null) { setTaskSetsInfo(new com.amazonaws.internal.SdkInternalList(taskSetsInfo.length)); } for (ECSTaskSet ele : taskSetsInfo) { this.taskSetsInfo.add(ele); } return this; } /** *

* The ECSTaskSet objects associated with the ECS target. *

* * @param taskSetsInfo * The ECSTaskSet objects associated with the ECS target. * @return Returns a reference to this object so that method calls can be chained together. */ public ECSTarget withTaskSetsInfo(java.util.Collection taskSetsInfo) { setTaskSetsInfo(taskSetsInfo); 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 (getDeploymentId() != null) sb.append("DeploymentId: ").append(getDeploymentId()).append(","); if (getTargetId() != null) sb.append("TargetId: ").append(getTargetId()).append(","); if (getTargetArn() != null) sb.append("TargetArn: ").append(getTargetArn()).append(","); if (getLastUpdatedAt() != null) sb.append("LastUpdatedAt: ").append(getLastUpdatedAt()).append(","); if (getLifecycleEvents() != null) sb.append("LifecycleEvents: ").append(getLifecycleEvents()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getTaskSetsInfo() != null) sb.append("TaskSetsInfo: ").append(getTaskSetsInfo()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ECSTarget == false) return false; ECSTarget other = (ECSTarget) obj; if (other.getDeploymentId() == null ^ this.getDeploymentId() == null) return false; if (other.getDeploymentId() != null && other.getDeploymentId().equals(this.getDeploymentId()) == false) return false; if (other.getTargetId() == null ^ this.getTargetId() == null) return false; if (other.getTargetId() != null && other.getTargetId().equals(this.getTargetId()) == false) return false; if (other.getTargetArn() == null ^ this.getTargetArn() == null) return false; if (other.getTargetArn() != null && other.getTargetArn().equals(this.getTargetArn()) == false) return false; if (other.getLastUpdatedAt() == null ^ this.getLastUpdatedAt() == null) return false; if (other.getLastUpdatedAt() != null && other.getLastUpdatedAt().equals(this.getLastUpdatedAt()) == false) return false; if (other.getLifecycleEvents() == null ^ this.getLifecycleEvents() == null) return false; if (other.getLifecycleEvents() != null && other.getLifecycleEvents().equals(this.getLifecycleEvents()) == 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.getTaskSetsInfo() == null ^ this.getTaskSetsInfo() == null) return false; if (other.getTaskSetsInfo() != null && other.getTaskSetsInfo().equals(this.getTaskSetsInfo()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDeploymentId() == null) ? 0 : getDeploymentId().hashCode()); hashCode = prime * hashCode + ((getTargetId() == null) ? 0 : getTargetId().hashCode()); hashCode = prime * hashCode + ((getTargetArn() == null) ? 0 : getTargetArn().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedAt() == null) ? 0 : getLastUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getLifecycleEvents() == null) ? 0 : getLifecycleEvents().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getTaskSetsInfo() == null) ? 0 : getTaskSetsInfo().hashCode()); return hashCode; } @Override public ECSTarget clone() { try { return (ECSTarget) 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.codedeploy.model.transform.ECSTargetMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy