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 Java SDK for Amazon WorkSpaces module holds the client classes that are used for communicating with Amazon WorkSpaces Service

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2016-2021 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 javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeWorkspaceBundlesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The identifiers of the bundles. You cannot combine this parameter with any other filter. *

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

* The owner of the bundles. You cannot combine this parameter with any other filter. *

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong * to your account. *

*/ private String owner; /** *

* The token for the next set of results. (You received this token from a previous call.) *

*/ private String nextToken; /** *

* The identifiers of the bundles. You cannot combine this parameter with any other filter. *

* * @return The identifiers of the bundles. You cannot combine this parameter with any other filter. */ public java.util.List getBundleIds() { if (bundleIds == null) { bundleIds = new com.amazonaws.internal.SdkInternalList(); } return bundleIds; } /** *

* The identifiers of the bundles. You cannot combine this parameter with any other filter. *

* * @param bundleIds * The identifiers of the bundles. You cannot combine this parameter with any other filter. */ public void setBundleIds(java.util.Collection bundleIds) { if (bundleIds == null) { this.bundleIds = null; return; } this.bundleIds = new com.amazonaws.internal.SdkInternalList(bundleIds); } /** *

* The identifiers of the bundles. You cannot combine this parameter with any other filter. *

*

* 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 * The identifiers of the bundles. You cannot combine this parameter with any other filter. * @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; } /** *

* The identifiers of the bundles. You cannot combine this parameter with any other filter. *

* * @param bundleIds * The identifiers of the bundles. You cannot combine this parameter with any other filter. * @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. You cannot combine this parameter with any other filter. *

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong * to your account. *

* * @param owner * The owner of the bundles. You cannot combine this parameter with any other filter.

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that * belong to your account. */ public void setOwner(String owner) { this.owner = owner; } /** *

* The owner of the bundles. You cannot combine this parameter with any other filter. *

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong * to your account. *

* * @return The owner of the bundles. You cannot combine this parameter with any other filter.

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that * belong to your account. */ public String getOwner() { return this.owner; } /** *

* The owner of the bundles. You cannot combine this parameter with any other filter. *

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong * to your account. *

* * @param owner * The owner of the bundles. You cannot combine this parameter with any other filter.

*

* Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that * belong to your account. * @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 token for the next set of results. (You received this token from a previous call.) *

* * @param nextToken * The token for the next set of results. (You received this token from a previous call.) */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* The token for the next set of results. (You received this token from a previous call.) *

* * @return The token for the next set of results. (You received this token from a previous call.) */ public String getNextToken() { return this.nextToken; } /** *

* The token for the next set of results. (You received this token from a previous call.) *

* * @param nextToken * The token for the next set of results. (You received this token from a previous 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. 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 (getBundleIds() != null) sb.append("BundleIds: ").append(getBundleIds()).append(","); if (getOwner() != null) sb.append("Owner: ").append(getOwner()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(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 - 2024 Weber Informatics LLC | Privacy Policy