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

com.amazonaws.services.apigateway.model.CreateDeploymentRequest 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.apigateway.model;

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

/**
 * 

* Requests Amazon API Gateway to create a Deployment resource. *

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

* The RestApi resource identifier for the Deployment resource * to create. *

*/ private String restApiId; /** *

* The name of the Stage resource for the Deployment resource * to create. *

*/ private String stageName; /** *

* The description of the Stage resource for the Deployment * resource to create. *

*/ private String stageDescription; /** *

* The description for the Deployment resource to create. *

*/ private String description; /** *

* Enables a cache cluster for the Stage resource specified in the * input. *

*/ private Boolean cacheClusterEnabled; /** *

* Specifies the cache cluster size for the Stage resource specified * in the input, if a cache cluster is enabled. *

*/ private String cacheClusterSize; /** *

* A map that defines the stage variables for the Stage resource that * is associated with the new deployment. Variable names can have * alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. *

*/ private java.util.Map variables; /** *

* The RestApi resource identifier for the Deployment resource * to create. *

* * @param restApiId * The RestApi resource identifier for the Deployment * resource to create. */ public void setRestApiId(String restApiId) { this.restApiId = restApiId; } /** *

* The RestApi resource identifier for the Deployment resource * to create. *

* * @return The RestApi resource identifier for the Deployment * resource to create. */ public String getRestApiId() { return this.restApiId; } /** *

* The RestApi resource identifier for the Deployment resource * to create. *

* * @param restApiId * The RestApi resource identifier for the Deployment * resource to create. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withRestApiId(String restApiId) { setRestApiId(restApiId); return this; } /** *

* The name of the Stage resource for the Deployment resource * to create. *

* * @param stageName * The name of the Stage resource for the Deployment * resource to create. */ public void setStageName(String stageName) { this.stageName = stageName; } /** *

* The name of the Stage resource for the Deployment resource * to create. *

* * @return The name of the Stage resource for the Deployment * resource to create. */ public String getStageName() { return this.stageName; } /** *

* The name of the Stage resource for the Deployment resource * to create. *

* * @param stageName * The name of the Stage resource for the Deployment * resource to create. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withStageName(String stageName) { setStageName(stageName); return this; } /** *

* The description of the Stage resource for the Deployment * resource to create. *

* * @param stageDescription * The description of the Stage resource for the * Deployment resource to create. */ public void setStageDescription(String stageDescription) { this.stageDescription = stageDescription; } /** *

* The description of the Stage resource for the Deployment * resource to create. *

* * @return The description of the Stage resource for the * Deployment resource to create. */ public String getStageDescription() { return this.stageDescription; } /** *

* The description of the Stage resource for the Deployment * resource to create. *

* * @param stageDescription * The description of the Stage resource for the * Deployment resource to create. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withStageDescription(String stageDescription) { setStageDescription(stageDescription); return this; } /** *

* The description for the Deployment resource to create. *

* * @param description * The description for the Deployment resource to create. */ public void setDescription(String description) { this.description = description; } /** *

* The description for the Deployment resource to create. *

* * @return The description for the Deployment resource to create. */ public String getDescription() { return this.description; } /** *

* The description for the Deployment resource to create. *

* * @param description * The description for the Deployment resource to create. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withDescription(String description) { setDescription(description); return this; } /** *

* Enables a cache cluster for the Stage resource specified in the * input. *

* * @param cacheClusterEnabled * Enables a cache cluster for the Stage resource specified in * the input. */ public void setCacheClusterEnabled(Boolean cacheClusterEnabled) { this.cacheClusterEnabled = cacheClusterEnabled; } /** *

* Enables a cache cluster for the Stage resource specified in the * input. *

* * @return Enables a cache cluster for the Stage resource specified * in the input. */ public Boolean getCacheClusterEnabled() { return this.cacheClusterEnabled; } /** *

* Enables a cache cluster for the Stage resource specified in the * input. *

* * @param cacheClusterEnabled * Enables a cache cluster for the Stage resource specified in * the input. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withCacheClusterEnabled( Boolean cacheClusterEnabled) { setCacheClusterEnabled(cacheClusterEnabled); return this; } /** *

* Enables a cache cluster for the Stage resource specified in the * input. *

* * @return Enables a cache cluster for the Stage resource specified * in the input. */ public Boolean isCacheClusterEnabled() { return this.cacheClusterEnabled; } /** *

* Specifies the cache cluster size for the Stage resource specified * in the input, if a cache cluster is enabled. *

* * @param cacheClusterSize * Specifies the cache cluster size for the Stage resource * specified in the input, if a cache cluster is enabled. */ public void setCacheClusterSize(String cacheClusterSize) { this.cacheClusterSize = cacheClusterSize; } /** *

* Specifies the cache cluster size for the Stage resource specified * in the input, if a cache cluster is enabled. *

* * @return Specifies the cache cluster size for the Stage resource * specified in the input, if a cache cluster is enabled. */ public String getCacheClusterSize() { return this.cacheClusterSize; } /** *

* Specifies the cache cluster size for the Stage resource specified * in the input, if a cache cluster is enabled. *

* * @param cacheClusterSize * Specifies the cache cluster size for the Stage resource * specified in the input, if a cache cluster is enabled. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withCacheClusterSize(String cacheClusterSize) { setCacheClusterSize(cacheClusterSize); return this; } /** *

* A map that defines the stage variables for the Stage resource that * is associated with the new deployment. Variable names can have * alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. *

* * @return A map that defines the stage variables for the Stage * resource that is associated with the new deployment. Variable * names can have alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. */ public java.util.Map getVariables() { return variables; } /** *

* A map that defines the stage variables for the Stage resource that * is associated with the new deployment. Variable names can have * alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. *

* * @param variables * A map that defines the stage variables for the Stage * resource that is associated with the new deployment. Variable * names can have alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. */ public void setVariables(java.util.Map variables) { this.variables = variables; } /** *

* A map that defines the stage variables for the Stage resource that * is associated with the new deployment. Variable names can have * alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. *

* * @param variables * A map that defines the stage variables for the Stage * resource that is associated with the new deployment. Variable * names can have alphanumeric characters, and the values must match * [A-Za-z0-9-._~:/?#&=,]+. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateDeploymentRequest withVariables( java.util.Map variables) { setVariables(variables); return this; } public CreateDeploymentRequest addVariablesEntry(String key, String value) { if (null == this.variables) { this.variables = new java.util.HashMap(); } if (this.variables.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.variables.put(key, value); return this; } /** * Removes all the entries added into Variables. <p> Returns a reference * to this object so that method calls can be chained together. */ public CreateDeploymentRequest clearVariablesEntries() { this.variables = null; 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 (getRestApiId() != null) sb.append("RestApiId: " + getRestApiId() + ","); if (getStageName() != null) sb.append("StageName: " + getStageName() + ","); if (getStageDescription() != null) sb.append("StageDescription: " + getStageDescription() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getCacheClusterEnabled() != null) sb.append("CacheClusterEnabled: " + getCacheClusterEnabled() + ","); if (getCacheClusterSize() != null) sb.append("CacheClusterSize: " + getCacheClusterSize() + ","); if (getVariables() != null) sb.append("Variables: " + getVariables()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateDeploymentRequest == false) return false; CreateDeploymentRequest other = (CreateDeploymentRequest) obj; if (other.getRestApiId() == null ^ this.getRestApiId() == null) return false; if (other.getRestApiId() != null && other.getRestApiId().equals(this.getRestApiId()) == false) return false; if (other.getStageName() == null ^ this.getStageName() == null) return false; if (other.getStageName() != null && other.getStageName().equals(this.getStageName()) == false) return false; if (other.getStageDescription() == null ^ this.getStageDescription() == null) return false; if (other.getStageDescription() != null && other.getStageDescription().equals( this.getStageDescription()) == 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.getCacheClusterEnabled() == null ^ this.getCacheClusterEnabled() == null) return false; if (other.getCacheClusterEnabled() != null && other.getCacheClusterEnabled().equals( this.getCacheClusterEnabled()) == false) return false; if (other.getCacheClusterSize() == null ^ this.getCacheClusterSize() == null) return false; if (other.getCacheClusterSize() != null && other.getCacheClusterSize().equals( this.getCacheClusterSize()) == false) return false; if (other.getVariables() == null ^ this.getVariables() == null) return false; if (other.getVariables() != null && other.getVariables().equals(this.getVariables()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRestApiId() == null) ? 0 : getRestApiId().hashCode()); hashCode = prime * hashCode + ((getStageName() == null) ? 0 : getStageName().hashCode()); hashCode = prime * hashCode + ((getStageDescription() == null) ? 0 : getStageDescription() .hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getCacheClusterEnabled() == null) ? 0 : getCacheClusterEnabled().hashCode()); hashCode = prime * hashCode + ((getCacheClusterSize() == null) ? 0 : getCacheClusterSize() .hashCode()); hashCode = prime * hashCode + ((getVariables() == null) ? 0 : getVariables().hashCode()); return hashCode; } @Override public CreateDeploymentRequest clone() { return (CreateDeploymentRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy