/* * 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.servicecatalog.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolio" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreatePortfolioRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The language code to use for this operation. Supported language codes are as follows: * </p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. * </p> */ private String acceptLanguage; /** * <p> * The name to use for display purposes. * </p> */ private String displayName; /** * <p> * The text description of the portfolio. * </p> */ private String description; /** * <p> * The name of the portfolio provider. * </p> */ private String providerName; /** * <p> * Tags to associate with the new portfolio. * </p> */ private java.util.List<Tag> tags; /** * <p> * A token to disambiguate duplicate requests. You can create multiple resources using the same input in multiple * requests, provided that you also specify a different idempotency token for each request. * </p> */ private String idempotencyToken; /** * <p> * The language code to use for this operation. Supported language codes are as follows: * </p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. * </p> * * @param acceptLanguage * The language code to use for this operation. Supported language codes are as follows:</p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. */ public void setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; } /** * <p> * The language code to use for this operation. Supported language codes are as follows: * </p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. * </p> * * @return The language code to use for this operation. Supported language codes are as follows:</p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. */ public String getAcceptLanguage() { return this.acceptLanguage; } /** * <p> * The language code to use for this operation. Supported language codes are as follows: * </p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. * </p> * * @param acceptLanguage * The language code to use for this operation. Supported language codes are as follows:</p> * <p> * "en" (English) * </p> * <p> * "jp" (Japanese) * </p> * <p> * "zh" (Chinese) * </p> * <p> * If no code is specified, "en" is used as the default. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withAcceptLanguage(String acceptLanguage) { setAcceptLanguage(acceptLanguage); return this; } /** * <p> * The name to use for display purposes. * </p> * * @param displayName * The name to use for display purposes. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** * <p> * The name to use for display purposes. * </p> * * @return The name to use for display purposes. */ public String getDisplayName() { return this.displayName; } /** * <p> * The name to use for display purposes. * </p> * * @param displayName * The name to use for display purposes. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withDisplayName(String displayName) { setDisplayName(displayName); return this; } /** * <p> * The text description of the portfolio. * </p> * * @param description * The text description of the portfolio. */ public void setDescription(String description) { this.description = description; } /** * <p> * The text description of the portfolio. * </p> * * @return The text description of the portfolio. */ public String getDescription() { return this.description; } /** * <p> * The text description of the portfolio. * </p> * * @param description * The text description of the portfolio. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withDescription(String description) { setDescription(description); return this; } /** * <p> * The name of the portfolio provider. * </p> * * @param providerName * The name of the portfolio provider. */ public void setProviderName(String providerName) { this.providerName = providerName; } /** * <p> * The name of the portfolio provider. * </p> * * @return The name of the portfolio provider. */ public String getProviderName() { return this.providerName; } /** * <p> * The name of the portfolio provider. * </p> * * @param providerName * The name of the portfolio provider. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withProviderName(String providerName) { setProviderName(providerName); return this; } /** * <p> * Tags to associate with the new portfolio. * </p> * * @return Tags to associate with the new portfolio. */ public java.util.List<Tag> getTags() { return tags; } /** * <p> * Tags to associate with the new portfolio. * </p> * * @param tags * Tags to associate with the new portfolio. */ public void setTags(java.util.Collection<Tag> tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList<Tag>(tags); } /** * <p> * Tags to associate with the new portfolio. * </p> * <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 * Tags to associate with the new portfolio. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList<Tag>(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * <p> * Tags to associate with the new portfolio. * </p> * * @param tags * Tags to associate with the new portfolio. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withTags(java.util.Collection<Tag> tags) { setTags(tags); return this; } /** * <p> * A token to disambiguate duplicate requests. You can create multiple resources using the same input in multiple * requests, provided that you also specify a different idempotency token for each request. * </p> * * @param idempotencyToken * A token to disambiguate duplicate requests. You can create multiple resources using the same input in * multiple requests, provided that you also specify a different idempotency token for each request. */ public void setIdempotencyToken(String idempotencyToken) { this.idempotencyToken = idempotencyToken; } /** * <p> * A token to disambiguate duplicate requests. You can create multiple resources using the same input in multiple * requests, provided that you also specify a different idempotency token for each request. * </p> * * @return A token to disambiguate duplicate requests. You can create multiple resources using the same input in * multiple requests, provided that you also specify a different idempotency token for each request. */ public String getIdempotencyToken() { return this.idempotencyToken; } /** * <p> * A token to disambiguate duplicate requests. You can create multiple resources using the same input in multiple * requests, provided that you also specify a different idempotency token for each request. * </p> * * @param idempotencyToken * A token to disambiguate duplicate requests. You can create multiple resources using the same input in * multiple requests, provided that you also specify a different idempotency token for each request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePortfolioRequest withIdempotencyToken(String idempotencyToken) { setIdempotencyToken(idempotencyToken); 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 (getAcceptLanguage() != null) sb.append("AcceptLanguage: ").append(getAcceptLanguage()).append(","); if (getDisplayName() != null) sb.append("DisplayName: ").append(getDisplayName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getProviderName() != null) sb.append("ProviderName: ").append(getProviderName()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getIdempotencyToken() != null) sb.append("IdempotencyToken: ").append(getIdempotencyToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreatePortfolioRequest == false) return false; CreatePortfolioRequest other = (CreatePortfolioRequest) obj; if (other.getAcceptLanguage() == null ^ this.getAcceptLanguage() == null) return false; if (other.getAcceptLanguage() != null && other.getAcceptLanguage().equals(this.getAcceptLanguage()) == false) return false; if (other.getDisplayName() == null ^ this.getDisplayName() == null) return false; if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == 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.getProviderName() == null ^ this.getProviderName() == null) return false; if (other.getProviderName() != null && other.getProviderName().equals(this.getProviderName()) == 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.getIdempotencyToken() == null ^ this.getIdempotencyToken() == null) return false; if (other.getIdempotencyToken() != null && other.getIdempotencyToken().equals(this.getIdempotencyToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAcceptLanguage() == null) ? 0 : getAcceptLanguage().hashCode()); hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getProviderName() == null) ? 0 : getProviderName().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getIdempotencyToken() == null) ? 0 : getIdempotencyToken().hashCode()); return hashCode; } @Override public CreatePortfolioRequest clone() { return (CreatePortfolioRequest) super.clone(); } }