/* * Copyright 2018-2023 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 Docker and Amazon ECS container agent version information about a container instance. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class VersionInfo implements Serializable, Cloneable, StructuredPojo { /** ** The version number of the Amazon ECS container agent. *
*/ private String agentVersion; /** ** The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. *
*/ private String agentHash; /** ** The Docker version that's running on the container instance. *
*/ private String dockerVersion; /** ** The version number of the Amazon ECS container agent. *
* * @param agentVersion * The version number of the Amazon ECS container agent. */ public void setAgentVersion(String agentVersion) { this.agentVersion = agentVersion; } /** ** The version number of the Amazon ECS container agent. *
* * @return The version number of the Amazon ECS container agent. */ public String getAgentVersion() { return this.agentVersion; } /** ** The version number of the Amazon ECS container agent. *
* * @param agentVersion * The version number of the Amazon ECS container agent. * @return Returns a reference to this object so that method calls can be chained together. */ public VersionInfo withAgentVersion(String agentVersion) { setAgentVersion(agentVersion); return this; } /** ** The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. *
* * @param agentHash * The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. */ public void setAgentHash(String agentHash) { this.agentHash = agentHash; } /** ** The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. *
* * @return The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. */ public String getAgentHash() { return this.agentHash; } /** ** The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. *
* * @param agentHash * The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository. * @return Returns a reference to this object so that method calls can be chained together. */ public VersionInfo withAgentHash(String agentHash) { setAgentHash(agentHash); return this; } /** ** The Docker version that's running on the container instance. *
* * @param dockerVersion * The Docker version that's running on the container instance. */ public void setDockerVersion(String dockerVersion) { this.dockerVersion = dockerVersion; } /** ** The Docker version that's running on the container instance. *
* * @return The Docker version that's running on the container instance. */ public String getDockerVersion() { return this.dockerVersion; } /** ** The Docker version that's running on the container instance. *
* * @param dockerVersion * The Docker version that's running on the container instance. * @return Returns a reference to this object so that method calls can be chained together. */ public VersionInfo withDockerVersion(String dockerVersion) { setDockerVersion(dockerVersion); 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 (getAgentVersion() != null) sb.append("AgentVersion: ").append(getAgentVersion()).append(","); if (getAgentHash() != null) sb.append("AgentHash: ").append(getAgentHash()).append(","); if (getDockerVersion() != null) sb.append("DockerVersion: ").append(getDockerVersion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof VersionInfo == false) return false; VersionInfo other = (VersionInfo) obj; if (other.getAgentVersion() == null ^ this.getAgentVersion() == null) return false; if (other.getAgentVersion() != null && other.getAgentVersion().equals(this.getAgentVersion()) == false) return false; if (other.getAgentHash() == null ^ this.getAgentHash() == null) return false; if (other.getAgentHash() != null && other.getAgentHash().equals(this.getAgentHash()) == false) return false; if (other.getDockerVersion() == null ^ this.getDockerVersion() == null) return false; if (other.getDockerVersion() != null && other.getDockerVersion().equals(this.getDockerVersion()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAgentVersion() == null) ? 0 : getAgentVersion().hashCode()); hashCode = prime * hashCode + ((getAgentHash() == null) ? 0 : getAgentHash().hashCode()); hashCode = prime * hashCode + ((getDockerVersion() == null) ? 0 : getDockerVersion().hashCode()); return hashCode; } @Override public VersionInfo clone() { try { return (VersionInfo) 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.VersionInfoMarshaller.getInstance().marshall(this, protocolMarshaller); } }