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

com.amazonaws.services.elasticbeanstalk.model.DescribeEnvironmentsRequest 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#describeEnvironments(DescribeEnvironmentsRequest) DescribeEnvironments operation}.
 * 

* Returns descriptions for existing environments. *

* * @see com.amazonaws.services.elasticbeanstalk.AWSElasticBeanstalk#describeEnvironments(DescribeEnvironmentsRequest) */ public class DescribeEnvironmentsRequest extends AmazonWebServiceRequest implements Serializable { /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. *

* Constraints:
* Length: 1 - 100
*/ private String applicationName; /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. *

* Constraints:
* Length: 1 - 100
*/ private String versionLabel; /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. */ private com.amazonaws.internal.ListWithAutoConstructFlag environmentIds; /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. */ private com.amazonaws.internal.ListWithAutoConstructFlag environmentNames; /** * Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. */ private Boolean includeDeleted; /** * If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. */ private java.util.Date includedDeletedBackTo; /** * Default constructor for a new DescribeEnvironmentsRequest object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public DescribeEnvironmentsRequest() {} /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. *

* Constraints:
* Length: 1 - 100
* * @return If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. */ public String getApplicationName() { return applicationName; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. *

* Constraints:
* Length: 1 - 100
* * @param applicationName If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. */ public void setApplicationName(String applicationName) { this.applicationName = applicationName; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. *

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

* Constraints:
* Length: 1 - 100
* * @param applicationName If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withApplicationName(String applicationName) { this.applicationName = applicationName; return this; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. *

* Constraints:
* Length: 1 - 100
* * @return If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. */ public String getVersionLabel() { return versionLabel; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. *

* Constraints:
* Length: 1 - 100
* * @param versionLabel If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. */ public void setVersionLabel(String versionLabel) { this.versionLabel = versionLabel; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. *

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

* Constraints:
* Length: 1 - 100
* * @param versionLabel If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that are associated with this * application version. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withVersionLabel(String versionLabel) { this.versionLabel = versionLabel; return this; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. * * @return If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. */ public java.util.List getEnvironmentIds() { if (environmentIds == null) { environmentIds = new com.amazonaws.internal.ListWithAutoConstructFlag(); environmentIds.setAutoConstruct(true); } return environmentIds; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. * * @param environmentIds If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. */ public void setEnvironmentIds(java.util.Collection environmentIds) { if (environmentIds == null) { this.environmentIds = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag environmentIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(environmentIds.size()); environmentIdsCopy.addAll(environmentIds); this.environmentIds = environmentIdsCopy; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. *

* Returns a reference to this object so that method calls can be chained together. * * @param environmentIds If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withEnvironmentIds(String... environmentIds) { if (getEnvironmentIds() == null) setEnvironmentIds(new java.util.ArrayList(environmentIds.length)); for (String value : environmentIds) { getEnvironmentIds().add(value); } return this; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. *

* Returns a reference to this object so that method calls can be chained together. * * @param environmentIds If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified IDs. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withEnvironmentIds(java.util.Collection environmentIds) { if (environmentIds == null) { this.environmentIds = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag environmentIdsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(environmentIds.size()); environmentIdsCopy.addAll(environmentIds); this.environmentIds = environmentIdsCopy; } return this; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. * * @return If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. */ public java.util.List getEnvironmentNames() { if (environmentNames == null) { environmentNames = new com.amazonaws.internal.ListWithAutoConstructFlag(); environmentNames.setAutoConstruct(true); } return environmentNames; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. * * @param environmentNames If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. */ public void setEnvironmentNames(java.util.Collection environmentNames) { if (environmentNames == null) { this.environmentNames = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag environmentNamesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(environmentNames.size()); environmentNamesCopy.addAll(environmentNames); this.environmentNames = environmentNamesCopy; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. *

* Returns a reference to this object so that method calls can be chained together. * * @param environmentNames If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withEnvironmentNames(String... environmentNames) { if (getEnvironmentNames() == null) setEnvironmentNames(new java.util.ArrayList(environmentNames.length)); for (String value : environmentNames) { getEnvironmentNames().add(value); } return this; } /** * If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. *

* Returns a reference to this object so that method calls can be chained together. * * @param environmentNames If specified, AWS Elastic Beanstalk restricts the returned * descriptions to include only those that have the specified names. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withEnvironmentNames(java.util.Collection environmentNames) { if (environmentNames == null) { this.environmentNames = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag environmentNamesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(environmentNames.size()); environmentNamesCopy.addAll(environmentNames); this.environmentNames = environmentNamesCopy; } return this; } /** * Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. * * @return Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. */ public Boolean isIncludeDeleted() { return includeDeleted; } /** * Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. * * @param includeDeleted Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. */ public void setIncludeDeleted(Boolean includeDeleted) { this.includeDeleted = includeDeleted; } /** * Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. *

* Returns a reference to this object so that method calls can be chained together. * * @param includeDeleted Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withIncludeDeleted(Boolean includeDeleted) { this.includeDeleted = includeDeleted; return this; } /** * Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. * * @return Indicates whether to include deleted environments:

* true: Environments that have been deleted after * IncludedDeletedBackTo are displayed.

* false: Do not include deleted environments. */ public Boolean getIncludeDeleted() { return includeDeleted; } /** * If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. * * @return If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. */ public java.util.Date getIncludedDeletedBackTo() { return includedDeletedBackTo; } /** * If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. * * @param includedDeletedBackTo If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. */ public void setIncludedDeletedBackTo(java.util.Date includedDeletedBackTo) { this.includedDeletedBackTo = includedDeletedBackTo; } /** * If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. *

* Returns a reference to this object so that method calls can be chained together. * * @param includedDeletedBackTo If specified when IncludeDeleted is set to * true, then environments deleted after this date are * displayed. * * @return A reference to this updated object so that method calls can be chained * together. */ public DescribeEnvironmentsRequest withIncludedDeletedBackTo(java.util.Date includedDeletedBackTo) { this.includedDeletedBackTo = includedDeletedBackTo; 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 (getVersionLabel() != null) sb.append("VersionLabel: " + getVersionLabel() + ","); if (getEnvironmentIds() != null) sb.append("EnvironmentIds: " + getEnvironmentIds() + ","); if (getEnvironmentNames() != null) sb.append("EnvironmentNames: " + getEnvironmentNames() + ","); if (isIncludeDeleted() != null) sb.append("IncludeDeleted: " + isIncludeDeleted() + ","); if (getIncludedDeletedBackTo() != null) sb.append("IncludedDeletedBackTo: " + getIncludedDeletedBackTo() ); 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 + ((getVersionLabel() == null) ? 0 : getVersionLabel().hashCode()); hashCode = prime * hashCode + ((getEnvironmentIds() == null) ? 0 : getEnvironmentIds().hashCode()); hashCode = prime * hashCode + ((getEnvironmentNames() == null) ? 0 : getEnvironmentNames().hashCode()); hashCode = prime * hashCode + ((isIncludeDeleted() == null) ? 0 : isIncludeDeleted().hashCode()); hashCode = prime * hashCode + ((getIncludedDeletedBackTo() == null) ? 0 : getIncludedDeletedBackTo().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeEnvironmentsRequest == false) return false; DescribeEnvironmentsRequest other = (DescribeEnvironmentsRequest)obj; if (other.getApplicationName() == null ^ this.getApplicationName() == null) return false; if (other.getApplicationName() != null && other.getApplicationName().equals(this.getApplicationName()) == 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.getEnvironmentIds() == null ^ this.getEnvironmentIds() == null) return false; if (other.getEnvironmentIds() != null && other.getEnvironmentIds().equals(this.getEnvironmentIds()) == false) return false; if (other.getEnvironmentNames() == null ^ this.getEnvironmentNames() == null) return false; if (other.getEnvironmentNames() != null && other.getEnvironmentNames().equals(this.getEnvironmentNames()) == false) return false; if (other.isIncludeDeleted() == null ^ this.isIncludeDeleted() == null) return false; if (other.isIncludeDeleted() != null && other.isIncludeDeleted().equals(this.isIncludeDeleted()) == false) return false; if (other.getIncludedDeletedBackTo() == null ^ this.getIncludedDeletedBackTo() == null) return false; if (other.getIncludedDeletedBackTo() != null && other.getIncludedDeletedBackTo().equals(this.getIncludedDeletedBackTo()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy