Show / Hide Table of Contents

Class TCPSocketAction

Not supported by Cloud Run TCPSocketAction describes an action based on opening a socket

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

Properties

ETag

The ETag of the item.

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

Host

(Optional) Optional: Host name to connect to, defaults to the pod IP.

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

Port

Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. This field is currently limited to integer types only because of proto's inability to properly support the IntOrString golang type.

Declaration
[JsonProperty("port")]
public virtual int? Port { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top