MethodResponse
Provides an HTTP Method Response for an API Gateway Resource.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var myDemoAPI = new Aws.ApiGateway.RestApi("myDemoAPI", new Aws.ApiGateway.RestApiArgs
{
Description = "This is my API for demonstration purposes",
});
var myDemoResource = new Aws.ApiGateway.Resource("myDemoResource", new Aws.ApiGateway.ResourceArgs
{
ParentId = myDemoAPI.RootResourceId,
PathPart = "mydemoresource",
RestApi = myDemoAPI.Id,
});
var myDemoMethod = new Aws.ApiGateway.Method("myDemoMethod", new Aws.ApiGateway.MethodArgs
{
Authorization = "NONE",
HttpMethod = "GET",
ResourceId = myDemoResource.Id,
RestApi = myDemoAPI.Id,
});
var myDemoIntegration = new Aws.ApiGateway.Integration("myDemoIntegration", new Aws.ApiGateway.IntegrationArgs
{
HttpMethod = myDemoMethod.HttpMethod,
ResourceId = myDemoResource.Id,
RestApi = myDemoAPI.Id,
Type = "MOCK",
});
var response200 = new Aws.ApiGateway.MethodResponse("response200", new Aws.ApiGateway.MethodResponseArgs
{
HttpMethod = myDemoMethod.HttpMethod,
ResourceId = myDemoResource.Id,
RestApi = myDemoAPI.Id,
StatusCode = "200",
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/apigateway"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
myDemoAPI, err := apigateway.NewRestApi(ctx, "myDemoAPI", &apigateway.RestApiArgs{
Description: pulumi.String("This is my API for demonstration purposes"),
})
if err != nil {
return err
}
myDemoResource, err := apigateway.NewResource(ctx, "myDemoResource", &apigateway.ResourceArgs{
ParentId: myDemoAPI.RootResourceId,
PathPart: pulumi.String("mydemoresource"),
RestApi: myDemoAPI.ID(),
})
if err != nil {
return err
}
myDemoMethod, err := apigateway.NewMethod(ctx, "myDemoMethod", &apigateway.MethodArgs{
Authorization: pulumi.String("NONE"),
HttpMethod: pulumi.String("GET"),
ResourceId: myDemoResource.ID(),
RestApi: myDemoAPI.ID(),
})
if err != nil {
return err
}
_, err = apigateway.NewIntegration(ctx, "myDemoIntegration", &apigateway.IntegrationArgs{
HttpMethod: myDemoMethod.HttpMethod,
ResourceId: myDemoResource.ID(),
RestApi: myDemoAPI.ID(),
Type: pulumi.String("MOCK"),
})
if err != nil {
return err
}
_, err = apigateway.NewMethodResponse(ctx, "response200", &apigateway.MethodResponseArgs{
HttpMethod: myDemoMethod.HttpMethod,
ResourceId: myDemoResource.ID(),
RestApi: myDemoAPI.ID(),
StatusCode: pulumi.String("200"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
my_demo_api = aws.apigateway.RestApi("myDemoAPI", description="This is my API for demonstration purposes")
my_demo_resource = aws.apigateway.Resource("myDemoResource",
parent_id=my_demo_api.root_resource_id,
path_part="mydemoresource",
rest_api=my_demo_api.id)
my_demo_method = aws.apigateway.Method("myDemoMethod",
authorization="NONE",
http_method="GET",
resource_id=my_demo_resource.id,
rest_api=my_demo_api.id)
my_demo_integration = aws.apigateway.Integration("myDemoIntegration",
http_method=my_demo_method.http_method,
resource_id=my_demo_resource.id,
rest_api=my_demo_api.id,
type="MOCK")
response200 = aws.apigateway.MethodResponse("response200",
http_method=my_demo_method.http_method,
resource_id=my_demo_resource.id,
rest_api=my_demo_api.id,
status_code="200")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const myDemoAPI = new aws.apigateway.RestApi("MyDemoAPI", {
description: "This is my API for demonstration purposes",
});
const myDemoResource = new aws.apigateway.Resource("MyDemoResource", {
parentId: myDemoAPI.rootResourceId,
pathPart: "mydemoresource",
restApi: myDemoAPI.id,
});
const myDemoMethod = new aws.apigateway.Method("MyDemoMethod", {
authorization: "NONE",
httpMethod: "GET",
resourceId: myDemoResource.id,
restApi: myDemoAPI.id,
});
const myDemoIntegration = new aws.apigateway.Integration("MyDemoIntegration", {
httpMethod: myDemoMethod.httpMethod,
resourceId: myDemoResource.id,
restApi: myDemoAPI.id,
type: "MOCK",
});
const response200 = new aws.apigateway.MethodResponse("response_200", {
httpMethod: myDemoMethod.httpMethod,
resourceId: myDemoResource.id,
restApi: myDemoAPI.id,
statusCode: "200",
});Create a MethodResponse Resource
new MethodResponse(name: string, args: MethodResponseArgs, opts?: CustomResourceOptions);def MethodResponse(resource_name, opts=None, http_method=None, resource_id=None, response_models=None, response_parameters=None, rest_api=None, status_code=None, __props__=None);func NewMethodResponse(ctx *Context, name string, args MethodResponseArgs, opts ...ResourceOption) (*MethodResponse, error)public MethodResponse(string name, MethodResponseArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args MethodResponseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MethodResponseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MethodResponseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
MethodResponse Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The MethodResponse resource accepts the following input properties:
- Http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- Resource
Id string The API resource ID
- Rest
Api string The ID of the associated REST API
- Status
Code string The HTTP status code
- Response
Models Dictionary<string, string> A map of the API models used for the response’s content type
- Response
Parameters Dictionary<string, bool> A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.
- Http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- Resource
Id string The API resource ID
- Rest
Api interface{} The ID of the associated REST API
- Status
Code string The HTTP status code
- Response
Models map[string]string A map of the API models used for the response’s content type
- Response
Parameters map[string]bool A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.
- http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- resource
Id string The API resource ID
- rest
Api string | RestApi The ID of the associated REST API
- status
Code string The HTTP status code
- response
Models {[key: string]: string} A map of the API models used for the response’s content type
- response
Parameters {[key: string]: boolean} A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.
- http_
method str The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- resource_
id str The API resource ID
- rest_
api string | str The ID of the associated REST API
- status_
code str The HTTP status code
- response_
models Dict[str, str] A map of the API models used for the response’s content type
- response_
parameters Dict[str, Boolean] A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.
Outputs
All input properties are implicitly available as output properties. Additionally, the MethodResponse resource produces the following output properties:
Look up an Existing MethodResponse Resource
Get an existing MethodResponse resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MethodResponseState, opts?: CustomResourceOptions): MethodResponsestatic get(resource_name, id, opts=None, http_method=None, resource_id=None, response_models=None, response_parameters=None, rest_api=None, status_code=None, __props__=None);func GetMethodResponse(ctx *Context, name string, id IDInput, state *MethodResponseState, opts ...ResourceOption) (*MethodResponse, error)public static MethodResponse Get(string name, Input<string> id, MethodResponseState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- Resource
Id string The API resource ID
- Response
Models Dictionary<string, string> A map of the API models used for the response’s content type
- Response
Parameters Dictionary<string, bool> A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.- Rest
Api string The ID of the associated REST API
- Status
Code string The HTTP status code
- Http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- Resource
Id string The API resource ID
- Response
Models map[string]string A map of the API models used for the response’s content type
- Response
Parameters map[string]bool A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.- Rest
Api interface{} The ID of the associated REST API
- Status
Code string The HTTP status code
- http
Method string The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- resource
Id string The API resource ID
- response
Models {[key: string]: string} A map of the API models used for the response’s content type
- response
Parameters {[key: string]: boolean} A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.- rest
Api string | RestApi The ID of the associated REST API
- status
Code string The HTTP status code
- http_
method str The HTTP Method (
GET,POST,PUT,DELETE,HEAD,OPTIONS,ANY)- resource_
id str The API resource ID
- response_
models Dict[str, str] A map of the API models used for the response’s content type
- response_
parameters Dict[str, Boolean] A map of response parameters that can be sent to the caller. For example:
response_parameters = { "method.response.header.X-Some-Header" = true }would define that the headerX-Some-Headercan be provided on the response.- rest_
api string | str The ID of the associated REST API
- status_
code str The HTTP status code
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.