Class HTTPGetAction
HTTPGetAction describes an action based on HTTP Get requests.
Inheritance
System.Object
HTTPGetAction
Implements
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
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. +optional
Declaration
[JsonProperty("host")]
public virtual string Host { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
HttpHeaders
Custom headers to set in the request. HTTP allows repeated headers. +optional
Declaration
[JsonProperty("httpHeaders")]
public virtual IList<HTTPHeader> HttpHeaders { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<HTTPHeader> |
Path
Path to access on the HTTP server. +optional
Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Port
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
Declaration
[JsonProperty("port")]
public virtual IntOrString Port { get; set; }
Property Value
| Type | Description |
|---|---|
| IntOrString |
Scheme
Scheme to use for connecting to the host. Defaults to HTTP. +optional
Declaration
[JsonProperty("scheme")]
public virtual string Scheme { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |