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

com.amazonaws.services.proton.model.EnvironmentState Maven / Gradle / Ivy

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

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

/**
 * 

* The detailed data about the current state of the environment. *

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

* The environment spec that was used to create the environment. *

*/ private String spec; /** *

* The major version of the environment template that was used to create the environment. *

*/ private String templateMajorVersion; /** *

* The minor version of the environment template that was used to create the environment. *

*/ private String templateMinorVersion; /** *

* The name of the environment template that was used to create the environment. *

*/ private String templateName; /** *

* The environment spec that was used to create the environment. *

* * @param spec * The environment spec that was used to create the environment. */ public void setSpec(String spec) { this.spec = spec; } /** *

* The environment spec that was used to create the environment. *

* * @return The environment spec that was used to create the environment. */ public String getSpec() { return this.spec; } /** *

* The environment spec that was used to create the environment. *

* * @param spec * The environment spec that was used to create the environment. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentState withSpec(String spec) { setSpec(spec); return this; } /** *

* The major version of the environment template that was used to create the environment. *

* * @param templateMajorVersion * The major version of the environment template that was used to create the environment. */ public void setTemplateMajorVersion(String templateMajorVersion) { this.templateMajorVersion = templateMajorVersion; } /** *

* The major version of the environment template that was used to create the environment. *

* * @return The major version of the environment template that was used to create the environment. */ public String getTemplateMajorVersion() { return this.templateMajorVersion; } /** *

* The major version of the environment template that was used to create the environment. *

* * @param templateMajorVersion * The major version of the environment template that was used to create the environment. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentState withTemplateMajorVersion(String templateMajorVersion) { setTemplateMajorVersion(templateMajorVersion); return this; } /** *

* The minor version of the environment template that was used to create the environment. *

* * @param templateMinorVersion * The minor version of the environment template that was used to create the environment. */ public void setTemplateMinorVersion(String templateMinorVersion) { this.templateMinorVersion = templateMinorVersion; } /** *

* The minor version of the environment template that was used to create the environment. *

* * @return The minor version of the environment template that was used to create the environment. */ public String getTemplateMinorVersion() { return this.templateMinorVersion; } /** *

* The minor version of the environment template that was used to create the environment. *

* * @param templateMinorVersion * The minor version of the environment template that was used to create the environment. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentState withTemplateMinorVersion(String templateMinorVersion) { setTemplateMinorVersion(templateMinorVersion); return this; } /** *

* The name of the environment template that was used to create the environment. *

* * @param templateName * The name of the environment template that was used to create the environment. */ public void setTemplateName(String templateName) { this.templateName = templateName; } /** *

* The name of the environment template that was used to create the environment. *

* * @return The name of the environment template that was used to create the environment. */ public String getTemplateName() { return this.templateName; } /** *

* The name of the environment template that was used to create the environment. *

* * @param templateName * The name of the environment template that was used to create the environment. * @return Returns a reference to this object so that method calls can be chained together. */ public EnvironmentState withTemplateName(String templateName) { setTemplateName(templateName); 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 (getSpec() != null) sb.append("Spec: ").append("***Sensitive Data Redacted***").append(","); if (getTemplateMajorVersion() != null) sb.append("TemplateMajorVersion: ").append(getTemplateMajorVersion()).append(","); if (getTemplateMinorVersion() != null) sb.append("TemplateMinorVersion: ").append(getTemplateMinorVersion()).append(","); if (getTemplateName() != null) sb.append("TemplateName: ").append(getTemplateName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EnvironmentState == false) return false; EnvironmentState other = (EnvironmentState) obj; if (other.getSpec() == null ^ this.getSpec() == null) return false; if (other.getSpec() != null && other.getSpec().equals(this.getSpec()) == false) return false; if (other.getTemplateMajorVersion() == null ^ this.getTemplateMajorVersion() == null) return false; if (other.getTemplateMajorVersion() != null && other.getTemplateMajorVersion().equals(this.getTemplateMajorVersion()) == false) return false; if (other.getTemplateMinorVersion() == null ^ this.getTemplateMinorVersion() == null) return false; if (other.getTemplateMinorVersion() != null && other.getTemplateMinorVersion().equals(this.getTemplateMinorVersion()) == false) return false; if (other.getTemplateName() == null ^ this.getTemplateName() == null) return false; if (other.getTemplateName() != null && other.getTemplateName().equals(this.getTemplateName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSpec() == null) ? 0 : getSpec().hashCode()); hashCode = prime * hashCode + ((getTemplateMajorVersion() == null) ? 0 : getTemplateMajorVersion().hashCode()); hashCode = prime * hashCode + ((getTemplateMinorVersion() == null) ? 0 : getTemplateMinorVersion().hashCode()); hashCode = prime * hashCode + ((getTemplateName() == null) ? 0 : getTemplateName().hashCode()); return hashCode; } @Override public EnvironmentState clone() { try { return (EnvironmentState) 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.proton.model.transform.EnvironmentStateMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy