/* * 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.proton.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateEnvironmentTemplateVersionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* When included, if two identical requests are made with the same client token, Proton returns the environment * template version that the first request created. *

*/ private String clientToken; /** *

* A description of the new version of an environment template. *

*/ private String description; /** *

* To create a new minor version of the environment template, include major Version. *

*

* To create a new major and minor version of the environment template, exclude major Version. *

*/ private String majorVersion; /** *

* An object that includes the template bundle S3 bucket path and name for the new version of an template. *

*/ private TemplateVersionSourceInput source; /** *

* An optional list of metadata items that you can associate with the Proton environment template version. A tag is * a key-value pair. *

*

* For more information, see Proton * resources and tagging in the Proton User Guide. *

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

* The name of the environment template. *

*/ private String templateName; /** *

* When included, if two identical requests are made with the same client token, Proton returns the environment * template version that the first request created. *

* * @param clientToken * When included, if two identical requests are made with the same client token, Proton returns the * environment template version that the first request created. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* When included, if two identical requests are made with the same client token, Proton returns the environment * template version that the first request created. *

* * @return When included, if two identical requests are made with the same client token, Proton returns the * environment template version that the first request created. */ public String getClientToken() { return this.clientToken; } /** *

* When included, if two identical requests are made with the same client token, Proton returns the environment * template version that the first request created. *

* * @param clientToken * When included, if two identical requests are made with the same client token, Proton returns the * environment template version that the first request created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* A description of the new version of an environment template. *

* * @param description * A description of the new version of an environment template. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the new version of an environment template. *

* * @return A description of the new version of an environment template. */ public String getDescription() { return this.description; } /** *

* A description of the new version of an environment template. *

* * @param description * A description of the new version of an environment template. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withDescription(String description) { setDescription(description); return this; } /** *

* To create a new minor version of the environment template, include major Version. *

*

* To create a new major and minor version of the environment template, exclude major Version. *

* * @param majorVersion * To create a new minor version of the environment template, include major Version.

*

* To create a new major and minor version of the environment template, exclude major Version. */ public void setMajorVersion(String majorVersion) { this.majorVersion = majorVersion; } /** *

* To create a new minor version of the environment template, include major Version. *

*

* To create a new major and minor version of the environment template, exclude major Version. *

* * @return To create a new minor version of the environment template, include major Version.

*

* To create a new major and minor version of the environment template, exclude major Version. */ public String getMajorVersion() { return this.majorVersion; } /** *

* To create a new minor version of the environment template, include major Version. *

*

* To create a new major and minor version of the environment template, exclude major Version. *

* * @param majorVersion * To create a new minor version of the environment template, include major Version.

*

* To create a new major and minor version of the environment template, exclude major Version. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withMajorVersion(String majorVersion) { setMajorVersion(majorVersion); return this; } /** *

* An object that includes the template bundle S3 bucket path and name for the new version of an template. *

* * @param source * An object that includes the template bundle S3 bucket path and name for the new version of an template. */ public void setSource(TemplateVersionSourceInput source) { this.source = source; } /** *

* An object that includes the template bundle S3 bucket path and name for the new version of an template. *

* * @return An object that includes the template bundle S3 bucket path and name for the new version of an template. */ public TemplateVersionSourceInput getSource() { return this.source; } /** *

* An object that includes the template bundle S3 bucket path and name for the new version of an template. *

* * @param source * An object that includes the template bundle S3 bucket path and name for the new version of an template. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withSource(TemplateVersionSourceInput source) { setSource(source); return this; } /** *

* An optional list of metadata items that you can associate with the Proton environment template version. A tag is * a key-value pair. *

*

* For more information, see Proton * resources and tagging in the Proton User Guide. *

* * @return An optional list of metadata items that you can associate with the Proton environment template version. A * tag is a key-value pair.

*

* For more information, see Proton resources and * tagging in the Proton User Guide. */ public java.util.List getTags() { return tags; } /** *

* An optional list of metadata items that you can associate with the Proton environment template version. A tag is * a key-value pair. *

*

* For more information, see Proton * resources and tagging in the Proton User Guide. *

* * @param tags * An optional list of metadata items that you can associate with the Proton environment template version. A * tag is a key-value pair.

*

* For more information, see Proton resources and tagging * in the Proton User Guide. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* An optional list of metadata items that you can associate with the Proton environment template version. A tag is * a key-value pair. *

*

* For more information, see Proton * resources and tagging in the Proton User Guide. *

*

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

* * @param tags * An optional list of metadata items that you can associate with the Proton environment template version. A * tag is a key-value pair.

*

* For more information, see Proton resources and tagging * in the Proton User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* An optional list of metadata items that you can associate with the Proton environment template version. A tag is * a key-value pair. *

*

* For more information, see Proton * resources and tagging in the Proton User Guide. *

* * @param tags * An optional list of metadata items that you can associate with the Proton environment template version. A * tag is a key-value pair.

*

* For more information, see Proton resources and tagging * in the Proton User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

* The name of the environment template. *

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

* The name of the environment template. *

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

* The name of the environment template. *

* * @param templateName * The name of the environment template. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateEnvironmentTemplateVersionRequest 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getDescription() != null) sb.append("Description: ").append("***Sensitive Data Redacted***").append(","); if (getMajorVersion() != null) sb.append("MajorVersion: ").append(getMajorVersion()).append(","); if (getSource() != null) sb.append("Source: ").append(getSource()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).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 CreateEnvironmentTemplateVersionRequest == false) return false; CreateEnvironmentTemplateVersionRequest other = (CreateEnvironmentTemplateVersionRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getMajorVersion() == null ^ this.getMajorVersion() == null) return false; if (other.getMajorVersion() != null && other.getMajorVersion().equals(this.getMajorVersion()) == false) return false; if (other.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == 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 + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getMajorVersion() == null) ? 0 : getMajorVersion().hashCode()); hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getTemplateName() == null) ? 0 : getTemplateName().hashCode()); return hashCode; } @Override public CreateEnvironmentTemplateVersionRequest clone() { return (CreateEnvironmentTemplateVersionRequest) super.clone(); } }