Show / Hide Table of Contents

Class Handler

Handler defines a specific action that should be taken

Inheritance
System.Object
Handler
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 Handler : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Exec

One and only one of the following should be specified. Exec specifies the action to take. +optional

Declaration
[JsonProperty("exec")]
public virtual ExecAction Exec { get; set; }
Property Value
Type Description
ExecAction

HttpGet

HTTPGet specifies the http request to perform. +optional

Declaration
[JsonProperty("httpGet")]
public virtual HTTPGetAction HttpGet { get; set; }
Property Value
Type Description
HTTPGetAction

TcpSocket

TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

Declaration
[JsonProperty("tcpSocket")]
public virtual TCPSocketAction TcpSocket { get; set; }
Property Value
Type Description
TCPSocketAction

Implements

IDirectResponseSchema
Back to top