Show / Hide Table of Contents

Class ContainerTcpHealthCheck

Container Health Check with TCP type.

Inheritance
object
ContainerHealthCheck
ContainerTcpHealthCheck
Inherited Members
ContainerHealthCheck.Name
ContainerHealthCheck.InitialDelayInSeconds
ContainerHealthCheck.IntervalInSeconds
ContainerHealthCheck.FailureThreshold
ContainerHealthCheck.SuccessThreshold
ContainerHealthCheck.TimeoutInSeconds
ContainerHealthCheck.Status
ContainerHealthCheck.StatusDetails
ContainerHealthCheck.FailureAction
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerinstancesService.Models
Assembly: OCI.DotNetSDK.Containerinstances.dll
Syntax
public class ContainerTcpHealthCheck : ContainerHealthCheck

Properties

Port

Declaration
[Required(ErrorMessage = "Port is required.")]
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

Container health check port.

Remarks

Required

In this article
Back to top