Show / Hide Table of Contents

Class Handler

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

Handler defines a specific action that should be taken

Inheritance
System.Object
Handler
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Handler : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Exec

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

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

Declaration
public virtual ExecAction Exec { get; set; }
Property Value
Type Description
ExecAction

HttpGet

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

HTTPGet specifies the http request to perform.

Declaration
public virtual HTTPGetAction HttpGet { get; set; }
Property Value
Type Description
HTTPGetAction

TcpSocket

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

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

Declaration
public virtual TCPSocketAction TcpSocket { get; set; }
Property Value
Type Description
TCPSocketAction

Implements

IDirectResponseSchema
Back to top