Show / Hide Table of Contents

Class ContainerHttpHealthCheck

Container Health Check HTTP type.

Inheritance
object
ContainerHealthCheck
ContainerHttpHealthCheck
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 ContainerHttpHealthCheck : ContainerHealthCheck

Properties

Headers

Declaration
[JsonProperty(PropertyName = "headers")]
public List<HealthCheckHttpHeader> Headers { get; set; }
Property Value
Type Description
List<HealthCheckHttpHeader>

Container health check HTTP headers.

Path

Declaration
[Required(ErrorMessage = "Path is required.")]
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
Property Value
Type Description
string

Container health check HTTP path.

Remarks

Required

Port

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

Container health check HTTP port.

Remarks

Required

In this article
Back to top