207 lines
10 KiB
C
207 lines
10 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/apigateway/APIGateway_EXPORTS.h>
|
|||
|
|
#include <aws/apigateway/APIGatewayRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/apigateway/model/GatewayResponseType.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/apigateway/model/PatchOperation.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace APIGateway
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Updates a <a>GatewayResponse</a> of a specified response type on the given
|
|||
|
|
* <a>RestApi</a>.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/apigateway-2015-07-09/UpdateGatewayResponseRequest">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_APIGATEWAY_API UpdateGatewayResponseRequest : public APIGatewayRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateGatewayResponseRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "UpdateGatewayResponse"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetRestApiId() const{ return m_restApiId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool RestApiIdHasBeenSet() const { return m_restApiIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRestApiId(const Aws::String& value) { m_restApiIdHasBeenSet = true; m_restApiId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRestApiId(Aws::String&& value) { m_restApiIdHasBeenSet = true; m_restApiId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRestApiId(const char* value) { m_restApiIdHasBeenSet = true; m_restApiId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithRestApiId(const Aws::String& value) { SetRestApiId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithRestApiId(Aws::String&& value) { SetRestApiId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] The string identifier of the associated <a>RestApi</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithRestApiId(const char* value) { SetRestApiId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline const GatewayResponseType& GetResponseType() const{ return m_responseType; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline bool ResponseTypeHasBeenSet() const { return m_responseTypeHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResponseType(const GatewayResponseType& value) { m_responseTypeHasBeenSet = true; m_responseType = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResponseType(GatewayResponseType&& value) { m_responseTypeHasBeenSet = true; m_responseType = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithResponseType(const GatewayResponseType& value) { SetResponseType(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>[Required] <p>The response type of the associated <a>GatewayResponse</a>.
|
|||
|
|
* Valid values are
|
|||
|
|
* <ul><li>ACCESS_DENIED</li><li>API_CONFIGURATION_ERROR</li><li>AUTHORIZER_FAILURE</li><li>
|
|||
|
|
* AUTHORIZER_CONFIGURATION_ERROR</li><li>BAD_REQUEST_PARAMETERS</li><li>BAD_REQUEST_BODY</li><li>DEFAULT_4XX</li><li>DEFAULT_5XX</li><li>EXPIRED_TOKEN</li><li>INVALID_SIGNATURE</li><li>INTEGRATION_FAILURE</li><li>INTEGRATION_TIMEOUT</li><li>INVALID_API_KEY</li><li>MISSING_AUTHENTICATION_TOKEN</li><li>
|
|||
|
|
* QUOTA_EXCEEDED</li><li>REQUEST_TOO_LARGE</li><li>RESOURCE_NOT_FOUND</li><li>THROTTLED</li><li>UNAUTHORIZED</li><li>UNSUPPORTED_MEDIA_TYPE</li></ul>
|
|||
|
|
* </p></p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithResponseType(GatewayResponseType&& value) { SetResponseType(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<PatchOperation>& GetPatchOperations() const{ return m_patchOperations; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool PatchOperationsHasBeenSet() const { return m_patchOperationsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPatchOperations(const Aws::Vector<PatchOperation>& value) { m_patchOperationsHasBeenSet = true; m_patchOperations = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetPatchOperations(Aws::Vector<PatchOperation>&& value) { m_patchOperationsHasBeenSet = true; m_patchOperations = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithPatchOperations(const Aws::Vector<PatchOperation>& value) { SetPatchOperations(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& WithPatchOperations(Aws::Vector<PatchOperation>&& value) { SetPatchOperations(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& AddPatchOperations(const PatchOperation& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A list of update operations to be applied to the specified resource and in
|
|||
|
|
* the order specified in this list.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayResponseRequest& AddPatchOperations(PatchOperation&& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_restApiId;
|
|||
|
|
bool m_restApiIdHasBeenSet;
|
|||
|
|
|
|||
|
|
GatewayResponseType m_responseType;
|
|||
|
|
bool m_responseTypeHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<PatchOperation> m_patchOperations;
|
|||
|
|
bool m_patchOperationsHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace APIGateway
|
|||
|
|
} // namespace Aws
|