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

com.amazonaws.services.workspaces.model.DescribeWorkspaceBundlesRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.workspaces.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* Contains the inputs for the DescribeWorkspaceBundles operation. *

*/ public class DescribeWorkspaceBundlesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* An array of strings that contains the identifiers of the bundles to * retrieve. This parameter cannot be combined with any other filter * parameter. *

*/ private com.amazonaws.internal.SdkInternalList bundleIds; /** *

* The owner of the bundles to retrieve. This parameter cannot be combined * with any other filter parameter. *

*

* This contains one of the following values: *

*
    *
  • null - Retrieves the bundles that belong to the account making the * call.
  • *
  • AMAZON - Retrieves the bundles that are provided by AWS. *
  • *
*/ private String owner; /** *

* The NextToken value from a previous call to this operation. * Pass null if this is the first call. *

*/ private String nextToken; /** *

* An array of strings that contains the identifiers of the bundles to * retrieve. This parameter cannot be combined with any other filter * parameter. *

* * @return An array of strings that contains the identifiers of the bundles * to retrieve. This parameter cannot be combined with any other * filter parameter. */ public java.util.List getBundleIds() { if (bundleIds == null) { bundleIds = new com.amazonaws.internal.SdkInternalList(); } return bundleIds; } /** *

* An array of strings that contains the identifiers of the bundles to * retrieve. This parameter cannot be combined with any other filter * parameter. *

* * @param bundleIds * An array of strings that contains the identifiers of the bundles * to retrieve. This parameter cannot be combined with any other * filter parameter. */ public void setBundleIds(java.util.Collection bundleIds) { if (bundleIds == null) { this.bundleIds = null; return; } this.bundleIds = new com.amazonaws.internal.SdkInternalList( bundleIds); } /** *

* An array of strings that contains the identifiers of the bundles to * retrieve. This parameter cannot be combined with any other filter * parameter. *

*

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

* * @param bundleIds * An array of strings that contains the identifiers of the bundles * to retrieve. This parameter cannot be combined with any other * filter parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeWorkspaceBundlesRequest withBundleIds(String... bundleIds) { if (this.bundleIds == null) { setBundleIds(new com.amazonaws.internal.SdkInternalList( bundleIds.length)); } for (String ele : bundleIds) { this.bundleIds.add(ele); } return this; } /** *

* An array of strings that contains the identifiers of the bundles to * retrieve. This parameter cannot be combined with any other filter * parameter. *

* * @param bundleIds * An array of strings that contains the identifiers of the bundles * to retrieve. This parameter cannot be combined with any other * filter parameter. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeWorkspaceBundlesRequest withBundleIds( java.util.Collection bundleIds) { setBundleIds(bundleIds); return this; } /** *

* The owner of the bundles to retrieve. This parameter cannot be combined * with any other filter parameter. *

*

* This contains one of the following values: *

*
    *
  • null - Retrieves the bundles that belong to the account making the * call.
  • *
  • AMAZON - Retrieves the bundles that are provided by AWS. *
  • *
* * @param owner * The owner of the bundles to retrieve. This parameter cannot be * combined with any other filter parameter.

*

* This contains one of the following values: *

*
    *
  • null - Retrieves the bundles that belong to the account making * the call.
  • *
  • AMAZON - Retrieves the bundles that are provided * by AWS.
  • */ public void setOwner(String owner) { this.owner = owner; } /** *

    * The owner of the bundles to retrieve. This parameter cannot be combined * with any other filter parameter. *

    *

    * This contains one of the following values: *

    *
      *
    • null - Retrieves the bundles that belong to the account making the * call.
    • *
    • AMAZON - Retrieves the bundles that are provided by AWS. *
    • *
    * * @return The owner of the bundles to retrieve. This parameter cannot be * combined with any other filter parameter.

    *

    * This contains one of the following values: *

    *
      *
    • null - Retrieves the bundles that belong to the account * making the call.
    • *
    • AMAZON - Retrieves the bundles that are provided * by AWS.
    • */ public String getOwner() { return this.owner; } /** *

      * The owner of the bundles to retrieve. This parameter cannot be combined * with any other filter parameter. *

      *

      * This contains one of the following values: *

      *
        *
      • null - Retrieves the bundles that belong to the account making the * call.
      • *
      • AMAZON - Retrieves the bundles that are provided by AWS. *
      • *
      * * @param owner * The owner of the bundles to retrieve. This parameter cannot be * combined with any other filter parameter.

      *

      * This contains one of the following values: *

      *
        *
      • null - Retrieves the bundles that belong to the account making * the call.
      • *
      • AMAZON - Retrieves the bundles that are provided * by AWS.
      • * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeWorkspaceBundlesRequest withOwner(String owner) { setOwner(owner); return this; } /** *

        * The NextToken value from a previous call to this operation. * Pass null if this is the first call. *

        * * @param nextToken * The NextToken value from a previous call to this * operation. Pass null if this is the first call. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

        * The NextToken value from a previous call to this operation. * Pass null if this is the first call. *

        * * @return The NextToken value from a previous call to this * operation. Pass null if this is the first call. */ public String getNextToken() { return this.nextToken; } /** *

        * The NextToken value from a previous call to this operation. * Pass null if this is the first call. *

        * * @param nextToken * The NextToken value from a previous call to this * operation. Pass null if this is the first call. * @return Returns a reference to this object so that method calls can be * chained together. */ public DescribeWorkspaceBundlesRequest withNextToken(String nextToken) { setNextToken(nextToken); 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 (getBundleIds() != null) sb.append("BundleIds: " + getBundleIds() + ","); if (getOwner() != null) sb.append("Owner: " + getOwner() + ","); if (getNextToken() != null) sb.append("NextToken: " + getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeWorkspaceBundlesRequest == false) return false; DescribeWorkspaceBundlesRequest other = (DescribeWorkspaceBundlesRequest) obj; if (other.getBundleIds() == null ^ this.getBundleIds() == null) return false; if (other.getBundleIds() != null && other.getBundleIds().equals(this.getBundleIds()) == false) return false; if (other.getOwner() == null ^ this.getOwner() == null) return false; if (other.getOwner() != null && other.getOwner().equals(this.getOwner()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBundleIds() == null) ? 0 : getBundleIds().hashCode()); hashCode = prime * hashCode + ((getOwner() == null) ? 0 : getOwner().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public DescribeWorkspaceBundlesRequest clone() { return (DescribeWorkspaceBundlesRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy