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

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

/**
 * 

* Make a request to simulate the execution of an Authorizer. *

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

* Specifies a test invoke authorizer request's RestApi identifier. *

*/ private String restApiId; /** *

* Specifies a test invoke authorizer request's Authorizer ID. *

*/ private String authorizerId; /** *

* [Required] A key-value map of headers to simulate an incoming invocation * request. This is where the incoming authorization token, or identity * source, should be specified. *

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

* [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query string * parameters. *

*/ private String pathWithQueryString; /** *

* [Optional] The simulated request body of an incoming invocation request. *

*/ private String body; /** *

* A key-value map of stage variables to simulate an invocation on a * deployed Stage. *

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

* [Optional] A key-value map of additional context variables. *

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

* Specifies a test invoke authorizer request's RestApi identifier. *

* * @param restApiId * Specifies a test invoke authorizer request's RestApi * identifier. */ public void setRestApiId(String restApiId) { this.restApiId = restApiId; } /** *

* Specifies a test invoke authorizer request's RestApi identifier. *

* * @return Specifies a test invoke authorizer request's RestApi * identifier. */ public String getRestApiId() { return this.restApiId; } /** *

* Specifies a test invoke authorizer request's RestApi identifier. *

* * @param restApiId * Specifies a test invoke authorizer request's RestApi * identifier. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withRestApiId(String restApiId) { setRestApiId(restApiId); return this; } /** *

* Specifies a test invoke authorizer request's Authorizer ID. *

* * @param authorizerId * Specifies a test invoke authorizer request's Authorizer ID. */ public void setAuthorizerId(String authorizerId) { this.authorizerId = authorizerId; } /** *

* Specifies a test invoke authorizer request's Authorizer ID. *

* * @return Specifies a test invoke authorizer request's Authorizer * ID. */ public String getAuthorizerId() { return this.authorizerId; } /** *

* Specifies a test invoke authorizer request's Authorizer ID. *

* * @param authorizerId * Specifies a test invoke authorizer request's Authorizer ID. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withAuthorizerId(String authorizerId) { setAuthorizerId(authorizerId); return this; } /** *

* [Required] A key-value map of headers to simulate an incoming invocation * request. This is where the incoming authorization token, or identity * source, should be specified. *

* * @return [Required] A key-value map of headers to simulate an incoming * invocation request. This is where the incoming authorization * token, or identity source, should be specified. */ public java.util.Map getHeaders() { return headers; } /** *

* [Required] A key-value map of headers to simulate an incoming invocation * request. This is where the incoming authorization token, or identity * source, should be specified. *

* * @param headers * [Required] A key-value map of headers to simulate an incoming * invocation request. This is where the incoming authorization * token, or identity source, should be specified. */ public void setHeaders(java.util.Map headers) { this.headers = headers; } /** *

* [Required] A key-value map of headers to simulate an incoming invocation * request. This is where the incoming authorization token, or identity * source, should be specified. *

* * @param headers * [Required] A key-value map of headers to simulate an incoming * invocation request. This is where the incoming authorization * token, or identity source, should be specified. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withHeaders( java.util.Map headers) { setHeaders(headers); return this; } public TestInvokeAuthorizerRequest addHeadersEntry(String key, String value) { if (null == this.headers) { this.headers = new java.util.HashMap(); } if (this.headers.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.headers.put(key, value); return this; } /** * Removes all the entries added into Headers. <p> Returns a reference to * this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest clearHeadersEntries() { this.headers = null; return this; } /** *

* [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query string * parameters. *

* * @param pathWithQueryString * [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query * string parameters. */ public void setPathWithQueryString(String pathWithQueryString) { this.pathWithQueryString = pathWithQueryString; } /** *

* [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query string * parameters. *

* * @return [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query * string parameters. */ public String getPathWithQueryString() { return this.pathWithQueryString; } /** *

* [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query string * parameters. *

* * @param pathWithQueryString * [Optional] The URI path, including query string, of the simulated * invocation request. Use this to specify path parameters and query * string parameters. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withPathWithQueryString( String pathWithQueryString) { setPathWithQueryString(pathWithQueryString); return this; } /** *

* [Optional] The simulated request body of an incoming invocation request. *

* * @param body * [Optional] The simulated request body of an incoming invocation * request. */ public void setBody(String body) { this.body = body; } /** *

* [Optional] The simulated request body of an incoming invocation request. *

* * @return [Optional] The simulated request body of an incoming invocation * request. */ public String getBody() { return this.body; } /** *

* [Optional] The simulated request body of an incoming invocation request. *

* * @param body * [Optional] The simulated request body of an incoming invocation * request. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withBody(String body) { setBody(body); return this; } /** *

* A key-value map of stage variables to simulate an invocation on a * deployed Stage. *

* * @return A key-value map of stage variables to simulate an invocation on a * deployed Stage. */ public java.util.Map getStageVariables() { return stageVariables; } /** *

* A key-value map of stage variables to simulate an invocation on a * deployed Stage. *

* * @param stageVariables * A key-value map of stage variables to simulate an invocation on a * deployed Stage. */ public void setStageVariables(java.util.Map stageVariables) { this.stageVariables = stageVariables; } /** *

* A key-value map of stage variables to simulate an invocation on a * deployed Stage. *

* * @param stageVariables * A key-value map of stage variables to simulate an invocation on a * deployed Stage. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withStageVariables( java.util.Map stageVariables) { setStageVariables(stageVariables); return this; } public TestInvokeAuthorizerRequest addStageVariablesEntry(String key, String value) { if (null == this.stageVariables) { this.stageVariables = new java.util.HashMap(); } if (this.stageVariables.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.stageVariables.put(key, value); return this; } /** * Removes all the entries added into StageVariables. <p> Returns a * reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest clearStageVariablesEntries() { this.stageVariables = null; return this; } /** *

* [Optional] A key-value map of additional context variables. *

* * @return [Optional] A key-value map of additional context variables. */ public java.util.Map getAdditionalContext() { return additionalContext; } /** *

* [Optional] A key-value map of additional context variables. *

* * @param additionalContext * [Optional] A key-value map of additional context variables. */ public void setAdditionalContext( java.util.Map additionalContext) { this.additionalContext = additionalContext; } /** *

* [Optional] A key-value map of additional context variables. *

* * @param additionalContext * [Optional] A key-value map of additional context variables. * @return Returns a reference to this object so that method calls can be * chained together. */ public TestInvokeAuthorizerRequest withAdditionalContext( java.util.Map additionalContext) { setAdditionalContext(additionalContext); return this; } public TestInvokeAuthorizerRequest addAdditionalContextEntry(String key, String value) { if (null == this.additionalContext) { this.additionalContext = new java.util.HashMap(); } if (this.additionalContext.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.additionalContext.put(key, value); return this; } /** * Removes all the entries added into AdditionalContext. <p> Returns a * reference to this object so that method calls can be chained together. */ public TestInvokeAuthorizerRequest clearAdditionalContextEntries() { this.additionalContext = 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 (getAuthorizerId() != null) sb.append("AuthorizerId: " + getAuthorizerId() + ","); if (getHeaders() != null) sb.append("Headers: " + getHeaders() + ","); if (getPathWithQueryString() != null) sb.append("PathWithQueryString: " + getPathWithQueryString() + ","); if (getBody() != null) sb.append("Body: " + getBody() + ","); if (getStageVariables() != null) sb.append("StageVariables: " + getStageVariables() + ","); if (getAdditionalContext() != null) sb.append("AdditionalContext: " + getAdditionalContext()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TestInvokeAuthorizerRequest == false) return false; TestInvokeAuthorizerRequest other = (TestInvokeAuthorizerRequest) obj; if (other.getRestApiId() == null ^ this.getRestApiId() == null) return false; if (other.getRestApiId() != null && other.getRestApiId().equals(this.getRestApiId()) == false) return false; if (other.getAuthorizerId() == null ^ this.getAuthorizerId() == null) return false; if (other.getAuthorizerId() != null && other.getAuthorizerId().equals(this.getAuthorizerId()) == false) return false; if (other.getHeaders() == null ^ this.getHeaders() == null) return false; if (other.getHeaders() != null && other.getHeaders().equals(this.getHeaders()) == false) return false; if (other.getPathWithQueryString() == null ^ this.getPathWithQueryString() == null) return false; if (other.getPathWithQueryString() != null && other.getPathWithQueryString().equals( this.getPathWithQueryString()) == false) return false; if (other.getBody() == null ^ this.getBody() == null) return false; if (other.getBody() != null && other.getBody().equals(this.getBody()) == false) return false; if (other.getStageVariables() == null ^ this.getStageVariables() == null) return false; if (other.getStageVariables() != null && other.getStageVariables().equals(this.getStageVariables()) == false) return false; if (other.getAdditionalContext() == null ^ this.getAdditionalContext() == null) return false; if (other.getAdditionalContext() != null && other.getAdditionalContext().equals( this.getAdditionalContext()) == 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 + ((getAuthorizerId() == null) ? 0 : getAuthorizerId() .hashCode()); hashCode = prime * hashCode + ((getHeaders() == null) ? 0 : getHeaders().hashCode()); hashCode = prime * hashCode + ((getPathWithQueryString() == null) ? 0 : getPathWithQueryString().hashCode()); hashCode = prime * hashCode + ((getBody() == null) ? 0 : getBody().hashCode()); hashCode = prime * hashCode + ((getStageVariables() == null) ? 0 : getStageVariables() .hashCode()); hashCode = prime * hashCode + ((getAdditionalContext() == null) ? 0 : getAdditionalContext().hashCode()); return hashCode; } @Override public TestInvokeAuthorizerRequest clone() { return (TestInvokeAuthorizerRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy