Class JobAppEngineHttpTargetArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.CloudScheduler.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobAppEngineHttpTargetArgs : ResourceArgs
Constructors
View SourceJobAppEngineHttpTargetArgs()
Declaration
public JobAppEngineHttpTargetArgs()
Properties
View SourceAppEngineRouting
App Engine Routing setting for the job. Structure is documented below.
Declaration
public Input<JobAppEngineHttpTargetAppEngineRoutingArgs> AppEngineRouting { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<JobAppEngineHttpTargetAppEngineRoutingArgs> |
Body
HTTP request body. A request body is allowed only if the HTTP method is POST, PUT, or PATCH. It is an error to set body on a job with an incompatible HttpMethod.
Declaration
public Input<string> Body { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Headers
This map contains the header field names and values. Repeated headers are not supported, but a header value can contain commas.
Declaration
public InputMap<string> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
HttpMethod
Which HTTP method to use for the request.
Declaration
public Input<string> HttpMethod { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RelativeUri
The relative URI. The relative URL must begin with "/" and must be a valid HTTP relative URL. It can contain a path, query string arguments, and # fragments. If the relative URL is empty, then the root path "/" will be used. No spaces are allowed, and the maximum length allowed is 2083 characters
Declaration
public Input<string> RelativeUri { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |