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

com.amazonaws.services.elasticbeanstalk.model.CreateEnvironmentRequest Maven / Gradle / Ivy

/*
 * Copyright 2010-2014 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.elasticbeanstalk.model;

import java.io.Serializable;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * Container for the parameters to the {@link com.amazonaws.services.elasticbeanstalk.AWSElasticBeanstalk#createEnvironment(CreateEnvironmentRequest) CreateEnvironment operation}.
 * 

* Launches an environment for the specified application using the * specified configuration. *

* * @see com.amazonaws.services.elasticbeanstalk.AWSElasticBeanstalk#createEnvironment(CreateEnvironmentRequest) */ public class CreateEnvironmentRequest extends AmazonWebServiceRequest implements Serializable { /** * The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. *

* Constraints:
* Length: 1 - 100
*/ private String applicationName; /** * A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. *

* Constraints:
* Length: 4 - 23
*/ private String environmentName; /** * Describes this environment. *

* Constraints:
* Length: 0 - 200
*/ private String description; /** * If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. *

* Constraints:
* Length: 4 - 63
*/ private String cNAMEPrefix; /** * This specifies the tier to use for creating this environment. */ private EnvironmentTier tier; /** * This specifies the tags applied to resources in the environment. */ private com.amazonaws.internal.ListWithAutoConstructFlag tags; /** * The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. *

* Constraints:
* Length: 1 - 100
*/ private String versionLabel; /** * The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 1 - 100
*/ private String templateName; /** * This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 0 - 100
*/ private String solutionStackName; /** * If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. */ private com.amazonaws.internal.ListWithAutoConstructFlag optionSettings; /** * A list of custom user-defined configuration options to remove from the * configuration set for this new environment. */ private com.amazonaws.internal.ListWithAutoConstructFlag optionsToRemove; /** * Default constructor for a new CreateEnvironmentRequest object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public CreateEnvironmentRequest() {} /** * Constructs a new CreateEnvironmentRequest object. * Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param applicationName The name of the application that contains the * version to be deployed.

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. * @param environmentName A unique name for the deployment environment. * Used in the application URL.

Constraint: Must be from 4 to 23 * characters in length. The name can contain only letters, numbers, and * hyphens. It cannot start or end with a hyphen. This name must be * unique in your account. If the specified name already exists, AWS * Elastic Beanstalk returns an InvalidParameterValue error. *

Default: If the CNAME parameter is not specified, the environment * name becomes part of the CNAME, and therefore part of the visible URL * for your application. */ public CreateEnvironmentRequest(String applicationName, String environmentName) { setApplicationName(applicationName); setEnvironmentName(environmentName); } /** * The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. *

* Constraints:
* Length: 1 - 100
* * @return The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. */ public String getApplicationName() { return applicationName; } /** * The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. *

* Constraints:
* Length: 1 - 100
* * @param applicationName The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. */ public void setApplicationName(String applicationName) { this.applicationName = applicationName; } /** * The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 100
* * @param applicationName The name of the application that contains the version to be deployed. *

If no application is found with this name, * CreateEnvironment returns an * InvalidParameterValue error. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withApplicationName(String applicationName) { this.applicationName = applicationName; return this; } /** * A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. *

* Constraints:
* Length: 4 - 23
* * @return A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. */ public String getEnvironmentName() { return environmentName; } /** * A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. *

* Constraints:
* Length: 4 - 23
* * @param environmentName A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. */ public void setEnvironmentName(String environmentName) { this.environmentName = environmentName; } /** * A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 4 - 23
* * @param environmentName A unique name for the deployment environment. Used in the application * URL.

Constraint: Must be from 4 to 23 characters in length. The * name can contain only letters, numbers, and hyphens. It cannot start * or end with a hyphen. This name must be unique in your account. If the * specified name already exists, AWS Elastic Beanstalk returns an * InvalidParameterValue error.

Default: If the CNAME * parameter is not specified, the environment name becomes part of the * CNAME, and therefore part of the visible URL for your application. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withEnvironmentName(String environmentName) { this.environmentName = environmentName; return this; } /** * Describes this environment. *

* Constraints:
* Length: 0 - 200
* * @return Describes this environment. */ public String getDescription() { return description; } /** * Describes this environment. *

* Constraints:
* Length: 0 - 200
* * @param description Describes this environment. */ public void setDescription(String description) { this.description = description; } /** * Describes this environment. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 0 - 200
* * @param description Describes this environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withDescription(String description) { this.description = description; return this; } /** * If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. *

* Constraints:
* Length: 4 - 63
* * @return If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. */ public String getCNAMEPrefix() { return cNAMEPrefix; } /** * If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. *

* Constraints:
* Length: 4 - 63
* * @param cNAMEPrefix If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. */ public void setCNAMEPrefix(String cNAMEPrefix) { this.cNAMEPrefix = cNAMEPrefix; } /** * If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 4 - 63
* * @param cNAMEPrefix If specified, the environment attempts to use this value as the prefix * for the CNAME. If not specified, the CNAME is generated automatically * by appending a random alphanumeric string to the environment name. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withCNAMEPrefix(String cNAMEPrefix) { this.cNAMEPrefix = cNAMEPrefix; return this; } /** * This specifies the tier to use for creating this environment. * * @return This specifies the tier to use for creating this environment. */ public EnvironmentTier getTier() { return tier; } /** * This specifies the tier to use for creating this environment. * * @param tier This specifies the tier to use for creating this environment. */ public void setTier(EnvironmentTier tier) { this.tier = tier; } /** * This specifies the tier to use for creating this environment. *

* Returns a reference to this object so that method calls can be chained together. * * @param tier This specifies the tier to use for creating this environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withTier(EnvironmentTier tier) { this.tier = tier; return this; } /** * This specifies the tags applied to resources in the environment. * * @return This specifies the tags applied to resources in the environment. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.ListWithAutoConstructFlag(); tags.setAutoConstruct(true); } return tags; } /** * This specifies the tags applied to resources in the environment. * * @param tags This specifies the tags applied to resources in the environment. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } /** * This specifies the tags applied to resources in the environment. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags This specifies the tags applied to resources in the environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withTags(Tag... tags) { if (getTags() == null) setTags(new java.util.ArrayList(tags.length)); for (Tag value : tags) { getTags().add(value); } return this; } /** * This specifies the tags applied to resources in the environment. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags This specifies the tags applied to resources in the environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withTags(java.util.Collection tags) { if (tags == null) { this.tags = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } return this; } /** * The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. *

* Constraints:
* Length: 1 - 100
* * @return The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. */ public String getVersionLabel() { return versionLabel; } /** * The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. *

* Constraints:
* Length: 1 - 100
* * @param versionLabel The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. */ public void setVersionLabel(String versionLabel) { this.versionLabel = versionLabel; } /** * The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 100
* * @param versionLabel The name of the application version to deploy.

If the specified * application has no associated application versions, AWS Elastic * Beanstalk UpdateEnvironment returns an * InvalidParameterValue error.

Default: If not * specified, AWS Elastic Beanstalk attempts to launch the sample * application in the container. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withVersionLabel(String versionLabel) { this.versionLabel = versionLabel; return this; } /** * The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 1 - 100
* * @return The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. */ public String getTemplateName() { return templateName; } /** * The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 1 - 100
* * @param templateName The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. */ public void setTemplateName(String templateName) { this.templateName = templateName; } /** * The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 100
* * @param templateName The name of the configuration template to use in deployment. If no * configuration template is found with this name, AWS Elastic Beanstalk * returns an InvalidParameterValue error.

Condition: * You must specify either this parameter or a * SolutionStackName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withTemplateName(String templateName) { this.templateName = templateName; return this; } /** * This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 0 - 100
* * @return This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. */ public String getSolutionStackName() { return solutionStackName; } /** * This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Constraints:
* Length: 0 - 100
* * @param solutionStackName This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. */ public void setSolutionStackName(String solutionStackName) { this.solutionStackName = solutionStackName; } /** * This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 0 - 100
* * @param solutionStackName This is an alternative to specifying a configuration name. If * specified, AWS Elastic Beanstalk sets the configuration values to the * default values associated with the specified solution stack.

* Condition: You must specify either this or a * TemplateName, but not both. If you specify both, AWS * Elastic Beanstalk returns an InvalidParameterCombination * error. If you do not specify either, AWS Elastic Beanstalk returns a * MissingRequiredParameter error. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withSolutionStackName(String solutionStackName) { this.solutionStackName = solutionStackName; return this; } /** * If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. * * @return If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. */ public java.util.List getOptionSettings() { if (optionSettings == null) { optionSettings = new com.amazonaws.internal.ListWithAutoConstructFlag(); optionSettings.setAutoConstruct(true); } return optionSettings; } /** * If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. * * @param optionSettings If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. */ public void setOptionSettings(java.util.Collection optionSettings) { if (optionSettings == null) { this.optionSettings = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag optionSettingsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(optionSettings.size()); optionSettingsCopy.addAll(optionSettings); this.optionSettings = optionSettingsCopy; } /** * If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. *

* Returns a reference to this object so that method calls can be chained together. * * @param optionSettings If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withOptionSettings(ConfigurationOptionSetting... optionSettings) { if (getOptionSettings() == null) setOptionSettings(new java.util.ArrayList(optionSettings.length)); for (ConfigurationOptionSetting value : optionSettings) { getOptionSettings().add(value); } return this; } /** * If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. *

* Returns a reference to this object so that method calls can be chained together. * * @param optionSettings If specified, AWS Elastic Beanstalk sets the specified configuration * options to the requested value in the configuration set for the new * environment. These override the values obtained from the solution * stack or the configuration template. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withOptionSettings(java.util.Collection optionSettings) { if (optionSettings == null) { this.optionSettings = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag optionSettingsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(optionSettings.size()); optionSettingsCopy.addAll(optionSettings); this.optionSettings = optionSettingsCopy; } return this; } /** * A list of custom user-defined configuration options to remove from the * configuration set for this new environment. * * @return A list of custom user-defined configuration options to remove from the * configuration set for this new environment. */ public java.util.List getOptionsToRemove() { if (optionsToRemove == null) { optionsToRemove = new com.amazonaws.internal.ListWithAutoConstructFlag(); optionsToRemove.setAutoConstruct(true); } return optionsToRemove; } /** * A list of custom user-defined configuration options to remove from the * configuration set for this new environment. * * @param optionsToRemove A list of custom user-defined configuration options to remove from the * configuration set for this new environment. */ public void setOptionsToRemove(java.util.Collection optionsToRemove) { if (optionsToRemove == null) { this.optionsToRemove = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag optionsToRemoveCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(optionsToRemove.size()); optionsToRemoveCopy.addAll(optionsToRemove); this.optionsToRemove = optionsToRemoveCopy; } /** * A list of custom user-defined configuration options to remove from the * configuration set for this new environment. *

* Returns a reference to this object so that method calls can be chained together. * * @param optionsToRemove A list of custom user-defined configuration options to remove from the * configuration set for this new environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withOptionsToRemove(OptionSpecification... optionsToRemove) { if (getOptionsToRemove() == null) setOptionsToRemove(new java.util.ArrayList(optionsToRemove.length)); for (OptionSpecification value : optionsToRemove) { getOptionsToRemove().add(value); } return this; } /** * A list of custom user-defined configuration options to remove from the * configuration set for this new environment. *

* Returns a reference to this object so that method calls can be chained together. * * @param optionsToRemove A list of custom user-defined configuration options to remove from the * configuration set for this new environment. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateEnvironmentRequest withOptionsToRemove(java.util.Collection optionsToRemove) { if (optionsToRemove == null) { this.optionsToRemove = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag optionsToRemoveCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(optionsToRemove.size()); optionsToRemoveCopy.addAll(optionsToRemove); this.optionsToRemove = optionsToRemoveCopy; } 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 (getApplicationName() != null) sb.append("ApplicationName: " + getApplicationName() + ","); if (getEnvironmentName() != null) sb.append("EnvironmentName: " + getEnvironmentName() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getCNAMEPrefix() != null) sb.append("CNAMEPrefix: " + getCNAMEPrefix() + ","); if (getTier() != null) sb.append("Tier: " + getTier() + ","); if (getTags() != null) sb.append("Tags: " + getTags() + ","); if (getVersionLabel() != null) sb.append("VersionLabel: " + getVersionLabel() + ","); if (getTemplateName() != null) sb.append("TemplateName: " + getTemplateName() + ","); if (getSolutionStackName() != null) sb.append("SolutionStackName: " + getSolutionStackName() + ","); if (getOptionSettings() != null) sb.append("OptionSettings: " + getOptionSettings() + ","); if (getOptionsToRemove() != null) sb.append("OptionsToRemove: " + getOptionsToRemove() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getApplicationName() == null) ? 0 : getApplicationName().hashCode()); hashCode = prime * hashCode + ((getEnvironmentName() == null) ? 0 : getEnvironmentName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getCNAMEPrefix() == null) ? 0 : getCNAMEPrefix().hashCode()); hashCode = prime * hashCode + ((getTier() == null) ? 0 : getTier().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getVersionLabel() == null) ? 0 : getVersionLabel().hashCode()); hashCode = prime * hashCode + ((getTemplateName() == null) ? 0 : getTemplateName().hashCode()); hashCode = prime * hashCode + ((getSolutionStackName() == null) ? 0 : getSolutionStackName().hashCode()); hashCode = prime * hashCode + ((getOptionSettings() == null) ? 0 : getOptionSettings().hashCode()); hashCode = prime * hashCode + ((getOptionsToRemove() == null) ? 0 : getOptionsToRemove().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateEnvironmentRequest == false) return false; CreateEnvironmentRequest other = (CreateEnvironmentRequest)obj; if (other.getApplicationName() == null ^ this.getApplicationName() == null) return false; if (other.getApplicationName() != null && other.getApplicationName().equals(this.getApplicationName()) == false) return false; if (other.getEnvironmentName() == null ^ this.getEnvironmentName() == null) return false; if (other.getEnvironmentName() != null && other.getEnvironmentName().equals(this.getEnvironmentName()) == 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.getCNAMEPrefix() == null ^ this.getCNAMEPrefix() == null) return false; if (other.getCNAMEPrefix() != null && other.getCNAMEPrefix().equals(this.getCNAMEPrefix()) == false) return false; if (other.getTier() == null ^ this.getTier() == null) return false; if (other.getTier() != null && other.getTier().equals(this.getTier()) == 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.getVersionLabel() == null ^ this.getVersionLabel() == null) return false; if (other.getVersionLabel() != null && other.getVersionLabel().equals(this.getVersionLabel()) == false) return false; if (other.getTemplateName() == null ^ this.getTemplateName() == null) return false; if (other.getTemplateName() != null && other.getTemplateName().equals(this.getTemplateName()) == false) return false; if (other.getSolutionStackName() == null ^ this.getSolutionStackName() == null) return false; if (other.getSolutionStackName() != null && other.getSolutionStackName().equals(this.getSolutionStackName()) == false) return false; if (other.getOptionSettings() == null ^ this.getOptionSettings() == null) return false; if (other.getOptionSettings() != null && other.getOptionSettings().equals(this.getOptionSettings()) == false) return false; if (other.getOptionsToRemove() == null ^ this.getOptionsToRemove() == null) return false; if (other.getOptionsToRemove() != null && other.getOptionsToRemove().equals(this.getOptionsToRemove()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy