Show / Hide Table of Contents

Class HTTPGetAction

Not supported by Cloud Run HTTPGetAction describes an action based on HTTP Get requests.

Inheritance
System.Object
HTTPGetAction
Implements
IDirectResponseSchema
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: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class HTTPGetAction : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Host

(Optional) Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

Declaration
[JsonProperty("host")]
public virtual string Host { get; set; }
Property Value
Type Description
System.String

HttpHeaders

(Optional) Custom headers to set in the request. HTTP allows repeated headers.

Declaration
[JsonProperty("httpHeaders")]
public virtual IList<HTTPHeader> HttpHeaders { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<HTTPHeader>

Path

(Optional) Path to access on the HTTP server.

Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type Description
System.String

Scheme

(Optional) Scheme to use for connecting to the host. Defaults to HTTP.

Declaration
[JsonProperty("scheme")]
public virtual string Scheme { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top