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

com.amazonaws.services.robomaker.model.DescribeDeploymentJobResult Maven / Gradle / Ivy

/*
 * 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.robomaker.model;

import java.io.Serializable;
import javax.annotation.Generated;

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

    /**
     * 

* The Amazon Resource Name (ARN) of the deployment job. *

*/ private String arn; /** *

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

*/ private String fleet; /** *

* The status of the deployment job. *

*/ private String status; /** *

* The deployment configuration. *

*/ private DeploymentConfig deploymentConfig; /** *

* The deployment application configuration. *

*/ private java.util.List deploymentApplicationConfigs; /** *

* A short description of the reason why the deployment job failed. *

*/ private String failureReason; /** *

* The deployment job failure code. *

*/ private String failureCode; /** *

* The time, in milliseconds since the epoch, when the deployment job was created. *

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

* A list of robot deployment summaries. *

*/ private java.util.List robotDeploymentSummary; /** *

* The list of all tags added to the specified deployment job. *

*/ private java.util.Map tags; /** *

* The Amazon Resource Name (ARN) of the deployment job. *

* * @param arn * The Amazon Resource Name (ARN) of the deployment job. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the deployment job. *

* * @return The Amazon Resource Name (ARN) of the deployment job. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the deployment job. *

* * @param arn * The Amazon Resource Name (ARN) of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withArn(String arn) { setArn(arn); return this; } /** *

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

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

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

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

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

* * @param fleet * The Amazon Resource Name (ARN) of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withFleet(String fleet) { setFleet(fleet); return this; } /** *

* The status of the deployment job. *

* * @param status * The status of the deployment job. * @see DeploymentStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the deployment job. *

* * @return The status of the deployment job. * @see DeploymentStatus */ public String getStatus() { return this.status; } /** *

* The status of the deployment job. *

* * @param status * The status of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public DescribeDeploymentJobResult withStatus(String status) { setStatus(status); return this; } /** *

* The status of the deployment job. *

* * @param status * The status of the deployment job. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentStatus */ public DescribeDeploymentJobResult withStatus(DeploymentStatus status) { this.status = status.toString(); return this; } /** *

* The deployment configuration. *

* * @param deploymentConfig * The deployment configuration. */ public void setDeploymentConfig(DeploymentConfig deploymentConfig) { this.deploymentConfig = deploymentConfig; } /** *

* The deployment configuration. *

* * @return The deployment configuration. */ public DeploymentConfig getDeploymentConfig() { return this.deploymentConfig; } /** *

* The deployment configuration. *

* * @param deploymentConfig * The deployment configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentConfig(DeploymentConfig deploymentConfig) { setDeploymentConfig(deploymentConfig); return this; } /** *

* The deployment application configuration. *

* * @return The deployment application configuration. */ public java.util.List getDeploymentApplicationConfigs() { return deploymentApplicationConfigs; } /** *

* The deployment application configuration. *

* * @param deploymentApplicationConfigs * The deployment application configuration. */ public void setDeploymentApplicationConfigs(java.util.Collection deploymentApplicationConfigs) { if (deploymentApplicationConfigs == null) { this.deploymentApplicationConfigs = null; return; } this.deploymentApplicationConfigs = new java.util.ArrayList(deploymentApplicationConfigs); } /** *

* The deployment application configuration. *

*

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

* * @param deploymentApplicationConfigs * The deployment application configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentApplicationConfigs(DeploymentApplicationConfig... deploymentApplicationConfigs) { if (this.deploymentApplicationConfigs == null) { setDeploymentApplicationConfigs(new java.util.ArrayList(deploymentApplicationConfigs.length)); } for (DeploymentApplicationConfig ele : deploymentApplicationConfigs) { this.deploymentApplicationConfigs.add(ele); } return this; } /** *

* The deployment application configuration. *

* * @param deploymentApplicationConfigs * The deployment application configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withDeploymentApplicationConfigs(java.util.Collection deploymentApplicationConfigs) { setDeploymentApplicationConfigs(deploymentApplicationConfigs); return this; } /** *

* A short description of the reason why the deployment job failed. *

* * @param failureReason * A short description of the reason why the deployment job failed. */ public void setFailureReason(String failureReason) { this.failureReason = failureReason; } /** *

* A short description of the reason why the deployment job failed. *

* * @return A short description of the reason why the deployment job failed. */ public String getFailureReason() { return this.failureReason; } /** *

* A short description of the reason why the deployment job failed. *

* * @param failureReason * A short description of the reason why the deployment job failed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withFailureReason(String failureReason) { setFailureReason(failureReason); return this; } /** *

* The deployment job failure code. *

* * @param failureCode * The deployment job failure code. * @see DeploymentJobErrorCode */ public void setFailureCode(String failureCode) { this.failureCode = failureCode; } /** *

* The deployment job failure code. *

* * @return The deployment job failure code. * @see DeploymentJobErrorCode */ public String getFailureCode() { return this.failureCode; } /** *

* The deployment job failure code. *

* * @param failureCode * The deployment job failure code. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public DescribeDeploymentJobResult withFailureCode(String failureCode) { setFailureCode(failureCode); return this; } /** *

* The deployment job failure code. *

* * @param failureCode * The deployment job failure code. * @return Returns a reference to this object so that method calls can be chained together. * @see DeploymentJobErrorCode */ public DescribeDeploymentJobResult withFailureCode(DeploymentJobErrorCode failureCode) { this.failureCode = failureCode.toString(); return this; } /** *

* The time, in milliseconds since the epoch, when the deployment job was created. *

* * @param createdAt * The time, in milliseconds since the epoch, when the deployment job was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The time, in milliseconds since the epoch, when the deployment job was created. *

* * @return The time, in milliseconds since the epoch, when the deployment job was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The time, in milliseconds since the epoch, when the deployment job was created. *

* * @param createdAt * The time, in milliseconds since the epoch, when the deployment job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* A list of robot deployment summaries. *

* * @return A list of robot deployment summaries. */ public java.util.List getRobotDeploymentSummary() { return robotDeploymentSummary; } /** *

* A list of robot deployment summaries. *

* * @param robotDeploymentSummary * A list of robot deployment summaries. */ public void setRobotDeploymentSummary(java.util.Collection robotDeploymentSummary) { if (robotDeploymentSummary == null) { this.robotDeploymentSummary = null; return; } this.robotDeploymentSummary = new java.util.ArrayList(robotDeploymentSummary); } /** *

* A list of robot deployment summaries. *

*

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

* * @param robotDeploymentSummary * A list of robot deployment summaries. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withRobotDeploymentSummary(RobotDeployment... robotDeploymentSummary) { if (this.robotDeploymentSummary == null) { setRobotDeploymentSummary(new java.util.ArrayList(robotDeploymentSummary.length)); } for (RobotDeployment ele : robotDeploymentSummary) { this.robotDeploymentSummary.add(ele); } return this; } /** *

* A list of robot deployment summaries. *

* * @param robotDeploymentSummary * A list of robot deployment summaries. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withRobotDeploymentSummary(java.util.Collection robotDeploymentSummary) { setRobotDeploymentSummary(robotDeploymentSummary); return this; } /** *

* The list of all tags added to the specified deployment job. *

* * @return The list of all tags added to the specified deployment job. */ public java.util.Map getTags() { return tags; } /** *

* The list of all tags added to the specified deployment job. *

* * @param tags * The list of all tags added to the specified deployment job. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The list of all tags added to the specified deployment job. *

* * @param tags * The list of all tags added to the specified deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see DescribeDeploymentJobResult#withTags * @returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeDeploymentJobResult clearTagsEntries() { this.tags = null; 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getFleet() != null) sb.append("Fleet: ").append(getFleet()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getDeploymentConfig() != null) sb.append("DeploymentConfig: ").append(getDeploymentConfig()).append(","); if (getDeploymentApplicationConfigs() != null) sb.append("DeploymentApplicationConfigs: ").append(getDeploymentApplicationConfigs()).append(","); if (getFailureReason() != null) sb.append("FailureReason: ").append(getFailureReason()).append(","); if (getFailureCode() != null) sb.append("FailureCode: ").append(getFailureCode()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getRobotDeploymentSummary() != null) sb.append("RobotDeploymentSummary: ").append(getRobotDeploymentSummary()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeDeploymentJobResult == false) return false; DescribeDeploymentJobResult other = (DescribeDeploymentJobResult) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getFleet() == null ^ this.getFleet() == null) return false; if (other.getFleet() != null && other.getFleet().equals(this.getFleet()) == 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.getDeploymentConfig() == null ^ this.getDeploymentConfig() == null) return false; if (other.getDeploymentConfig() != null && other.getDeploymentConfig().equals(this.getDeploymentConfig()) == false) return false; if (other.getDeploymentApplicationConfigs() == null ^ this.getDeploymentApplicationConfigs() == null) return false; if (other.getDeploymentApplicationConfigs() != null && other.getDeploymentApplicationConfigs().equals(this.getDeploymentApplicationConfigs()) == false) return false; if (other.getFailureReason() == null ^ this.getFailureReason() == null) return false; if (other.getFailureReason() != null && other.getFailureReason().equals(this.getFailureReason()) == false) return false; if (other.getFailureCode() == null ^ this.getFailureCode() == null) return false; if (other.getFailureCode() != null && other.getFailureCode().equals(this.getFailureCode()) == 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.getRobotDeploymentSummary() == null ^ this.getRobotDeploymentSummary() == null) return false; if (other.getRobotDeploymentSummary() != null && other.getRobotDeploymentSummary().equals(this.getRobotDeploymentSummary()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getFleet() == null) ? 0 : getFleet().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getDeploymentConfig() == null) ? 0 : getDeploymentConfig().hashCode()); hashCode = prime * hashCode + ((getDeploymentApplicationConfigs() == null) ? 0 : getDeploymentApplicationConfigs().hashCode()); hashCode = prime * hashCode + ((getFailureReason() == null) ? 0 : getFailureReason().hashCode()); hashCode = prime * hashCode + ((getFailureCode() == null) ? 0 : getFailureCode().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getRobotDeploymentSummary() == null) ? 0 : getRobotDeploymentSummary().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public DescribeDeploymentJobResult clone() { try { return (DescribeDeploymentJobResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy