Class JobHttpTargetArgs
Inherited Members
Namespace: Pulumi.Gcp.CloudScheduler.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobHttpTargetArgs : ResourceArgs
Constructors
View SourceJobHttpTargetArgs()
Declaration
public JobHttpTargetArgs()
Properties
View SourceBody
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> |
OauthToken
Contains information needed for generating an OAuth token. This type of authorization should be used when sending requests to a GCP endpoint. Structure is documented below.
Declaration
public Input<JobHttpTargetOauthTokenArgs> OauthToken { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<JobHttpTargetOauthTokenArgs> |
OidcToken
Contains information needed for generating an OpenID Connect token. This type of authorization should be used when sending requests to third party endpoints or Cloud Run. Structure is documented below.
Declaration
public Input<JobHttpTargetOidcTokenArgs> OidcToken { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<JobHttpTargetOidcTokenArgs> |
Uri
The full URI path that the request will be sent to.
Declaration
public Input<string> Uri { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |