/* * Copyright 2012-2017 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.rds.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * <p/> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroup" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateOptionGroupRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * Specifies the name of the option group to be created. * </p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> * </p> */ private String optionGroupName; /** * <p> * Specifies the name of the engine that this option group should be associated with. * </p> */ private String engineName; /** * <p> * Specifies the major version of the engine that this option group should be associated with. * </p> */ private String majorEngineVersion; /** * <p> * The description of the option group. * </p> */ private String optionGroupDescription; private com.amazonaws.internal.SdkInternalList<Tag> tags; /** * <p> * Specifies the name of the option group to be created. * </p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> * </p> * * @param optionGroupName * Specifies the name of the option group to be created.</p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> */ public void setOptionGroupName(String optionGroupName) { this.optionGroupName = optionGroupName; } /** * <p> * Specifies the name of the option group to be created. * </p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> * </p> * * @return Specifies the name of the option group to be created.</p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> */ public String getOptionGroupName() { return this.optionGroupName; } /** * <p> * Specifies the name of the option group to be created. * </p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> * </p> * * @param optionGroupName * Specifies the name of the option group to be created.</p> * <p> * Constraints: * </p> * <ul> * <li> * <p> * Must be 1 to 255 alphanumeric characters or hyphens * </p> * </li> * <li> * <p> * First character must be a letter * </p> * </li> * <li> * <p> * Cannot end with a hyphen or contain two consecutive hyphens * </p> * </li> * </ul> * <p> * Example: <code>myoptiongroup</code> * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withOptionGroupName(String optionGroupName) { setOptionGroupName(optionGroupName); return this; } /** * <p> * Specifies the name of the engine that this option group should be associated with. * </p> * * @param engineName * Specifies the name of the engine that this option group should be associated with. */ public void setEngineName(String engineName) { this.engineName = engineName; } /** * <p> * Specifies the name of the engine that this option group should be associated with. * </p> * * @return Specifies the name of the engine that this option group should be associated with. */ public String getEngineName() { return this.engineName; } /** * <p> * Specifies the name of the engine that this option group should be associated with. * </p> * * @param engineName * Specifies the name of the engine that this option group should be associated with. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withEngineName(String engineName) { setEngineName(engineName); return this; } /** * <p> * Specifies the major version of the engine that this option group should be associated with. * </p> * * @param majorEngineVersion * Specifies the major version of the engine that this option group should be associated with. */ public void setMajorEngineVersion(String majorEngineVersion) { this.majorEngineVersion = majorEngineVersion; } /** * <p> * Specifies the major version of the engine that this option group should be associated with. * </p> * * @return Specifies the major version of the engine that this option group should be associated with. */ public String getMajorEngineVersion() { return this.majorEngineVersion; } /** * <p> * Specifies the major version of the engine that this option group should be associated with. * </p> * * @param majorEngineVersion * Specifies the major version of the engine that this option group should be associated with. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withMajorEngineVersion(String majorEngineVersion) { setMajorEngineVersion(majorEngineVersion); return this; } /** * <p> * The description of the option group. * </p> * * @param optionGroupDescription * The description of the option group. */ public void setOptionGroupDescription(String optionGroupDescription) { this.optionGroupDescription = optionGroupDescription; } /** * <p> * The description of the option group. * </p> * * @return The description of the option group. */ public String getOptionGroupDescription() { return this.optionGroupDescription; } /** * <p> * The description of the option group. * </p> * * @param optionGroupDescription * The description of the option group. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withOptionGroupDescription(String optionGroupDescription) { setOptionGroupDescription(optionGroupDescription); return this; } /** * @return */ public java.util.List<Tag> getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList<Tag>(); } return tags; } /** * @param tags */ public void setTags(java.util.Collection<Tag> tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList<Tag>(tags); } /** * <p> * <b>NOTE:</b> 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. * </p> * * @param tags * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList<Tag>(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * @param tags * @return Returns a reference to this object so that method calls can be chained together. */ public CreateOptionGroupRequest withTags(java.util.Collection<Tag> tags) { setTags(tags); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getOptionGroupName() != null) sb.append("OptionGroupName: ").append(getOptionGroupName()).append(","); if (getEngineName() != null) sb.append("EngineName: ").append(getEngineName()).append(","); if (getMajorEngineVersion() != null) sb.append("MajorEngineVersion: ").append(getMajorEngineVersion()).append(","); if (getOptionGroupDescription() != null) sb.append("OptionGroupDescription: ").append(getOptionGroupDescription()).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 CreateOptionGroupRequest == false) return false; CreateOptionGroupRequest other = (CreateOptionGroupRequest) obj; if (other.getOptionGroupName() == null ^ this.getOptionGroupName() == null) return false; if (other.getOptionGroupName() != null && other.getOptionGroupName().equals(this.getOptionGroupName()) == false) return false; if (other.getEngineName() == null ^ this.getEngineName() == null) return false; if (other.getEngineName() != null && other.getEngineName().equals(this.getEngineName()) == false) return false; if (other.getMajorEngineVersion() == null ^ this.getMajorEngineVersion() == null) return false; if (other.getMajorEngineVersion() != null && other.getMajorEngineVersion().equals(this.getMajorEngineVersion()) == false) return false; if (other.getOptionGroupDescription() == null ^ this.getOptionGroupDescription() == null) return false; if (other.getOptionGroupDescription() != null && other.getOptionGroupDescription().equals(this.getOptionGroupDescription()) == 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 + ((getOptionGroupName() == null) ? 0 : getOptionGroupName().hashCode()); hashCode = prime * hashCode + ((getEngineName() == null) ? 0 : getEngineName().hashCode()); hashCode = prime * hashCode + ((getMajorEngineVersion() == null) ? 0 : getMajorEngineVersion().hashCode()); hashCode = prime * hashCode + ((getOptionGroupDescription() == null) ? 0 : getOptionGroupDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateOptionGroupRequest clone() { return (CreateOptionGroupRequest) super.clone(); } }