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

com.amazonaws.services.codedeploy.model.InstanceTarget 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;

/**
 * 

* A target Amazon EC2 or on-premises instance during a deployment that uses the EC2/On-premises compute platform. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class InstanceTarget 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 instanceTarget. *

*/ private String targetId; /** *

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

*/ private String targetArn; /** *

* The status an EC2/On-premises deployment's target instance. *

*/ private String status; /** *

* The date and time when the target instance was updated by a deployment. *

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

* The lifecycle events of the deployment to this target instance. *

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

* A label that identifies whether the instance is an original target (BLUE) or a replacement target ( * GREEN). *

*/ private String instanceLabel; /** *

* 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 InstanceTarget withDeploymentId(String deploymentId) { setDeploymentId(deploymentId); return this; } /** *

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

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

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

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

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

* * @param targetId * The unique ID of a deployment target that has a type of instanceTarget. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceTarget 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 InstanceTarget withTargetArn(String targetArn) { setTargetArn(targetArn); return this; } /** *

* The status an EC2/On-premises deployment's target instance. *

* * @param status * The status an EC2/On-premises deployment's target instance. * @see TargetStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status an EC2/On-premises deployment's target instance. *

* * @return The status an EC2/On-premises deployment's target instance. * @see TargetStatus */ public String getStatus() { return this.status; } /** *

* The status an EC2/On-premises deployment's target instance. *

* * @param status * The status an EC2/On-premises deployment's target instance. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public InstanceTarget withStatus(String status) { setStatus(status); return this; } /** *

* The status an EC2/On-premises deployment's target instance. *

* * @param status * The status an EC2/On-premises deployment's target instance. * @return Returns a reference to this object so that method calls can be chained together. * @see TargetStatus */ public InstanceTarget withStatus(TargetStatus status) { this.status = status.toString(); return this; } /** *

* The date and time when the target instance was updated by a deployment. *

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

* The date and time when the target instance was updated by a deployment. *

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

* The date and time when the target instance was updated by a deployment. *

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

* The lifecycle events of the deployment to this target instance. *

* * @return The lifecycle events of the deployment to this target instance. */ 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 instance. *

* * @param lifecycleEvents * The lifecycle events of the deployment to this target instance. */ 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 instance. *

*

* 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 instance. * @return Returns a reference to this object so that method calls can be chained together. */ public InstanceTarget 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 instance. *

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

* A label that identifies whether the instance is an original target (BLUE) or a replacement target ( * GREEN). *

* * @param instanceLabel * A label that identifies whether the instance is an original target (BLUE) or a replacement * target (GREEN). * @see TargetLabel */ public void setInstanceLabel(String instanceLabel) { this.instanceLabel = instanceLabel; } /** *

* A label that identifies whether the instance is an original target (BLUE) or a replacement target ( * GREEN). *

* * @return A label that identifies whether the instance is an original target (BLUE) or a replacement * target (GREEN). * @see TargetLabel */ public String getInstanceLabel() { return this.instanceLabel; } /** *

* A label that identifies whether the instance is an original target (BLUE) or a replacement target ( * GREEN). *

* * @param instanceLabel * A label that identifies whether the instance is an original target (BLUE) or a replacement * target (GREEN). * @return Returns a reference to this object so that method calls can be chained together. * @see TargetLabel */ public InstanceTarget withInstanceLabel(String instanceLabel) { setInstanceLabel(instanceLabel); return this; } /** *

* A label that identifies whether the instance is an original target (BLUE) or a replacement target ( * GREEN). *

* * @param instanceLabel * A label that identifies whether the instance is an original target (BLUE) or a replacement * target (GREEN). * @return Returns a reference to this object so that method calls can be chained together. * @see TargetLabel */ public InstanceTarget withInstanceLabel(TargetLabel instanceLabel) { this.instanceLabel = instanceLabel.toString(); 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 (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getLastUpdatedAt() != null) sb.append("LastUpdatedAt: ").append(getLastUpdatedAt()).append(","); if (getLifecycleEvents() != null) sb.append("LifecycleEvents: ").append(getLifecycleEvents()).append(","); if (getInstanceLabel() != null) sb.append("InstanceLabel: ").append(getInstanceLabel()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InstanceTarget == false) return false; InstanceTarget other = (InstanceTarget) 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.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == 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.getInstanceLabel() == null ^ this.getInstanceLabel() == null) return false; if (other.getInstanceLabel() != null && other.getInstanceLabel().equals(this.getInstanceLabel()) == 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 + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedAt() == null) ? 0 : getLastUpdatedAt().hashCode()); hashCode = prime * hashCode + ((getLifecycleEvents() == null) ? 0 : getLifecycleEvents().hashCode()); hashCode = prime * hashCode + ((getInstanceLabel() == null) ? 0 : getInstanceLabel().hashCode()); return hashCode; } @Override public InstanceTarget clone() { try { return (InstanceTarget) 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.InstanceTargetMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy