Show / Hide Table of Contents

Class LoadBalancerHealthcheck

Inheritance
System.Object
LoadBalancerHealthcheck
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: Pulumi.DigitalOcean.Outputs
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class LoadBalancerHealthcheck

Fields

View Source

CheckIntervalSeconds

The number of seconds between between two consecutive health checks. If not specified, the default value is 10.

Declaration
public readonly int? CheckIntervalSeconds
Field Value
Type Description
System.Nullable<System.Int32>
View Source

HealthyThreshold

The number of times a health check must pass for a backend Droplet to be marked "healthy" and be re-added to the pool. If not specified, the default value is 5.

Declaration
public readonly int? HealthyThreshold
Field Value
Type Description
System.Nullable<System.Int32>
View Source

Path

The path on the backend Droplets to which the Load Balancer instance will send a request.

Declaration
public readonly string Path
Field Value
Type Description
System.String
View Source

Port

An integer representing the port on the backend Droplets on which the health check will attempt a connection.

Declaration
public readonly int Port
Field Value
Type Description
System.Int32
View Source

Protocol

The protocol used for health checks sent to the backend Droplets. The possible values are http or tcp.

Declaration
public readonly string Protocol
Field Value
Type Description
System.String
View Source

ResponseTimeoutSeconds

The number of seconds the Load Balancer instance will wait for a response until marking a health check as failed. If not specified, the default value is 5.

Declaration
public readonly int? ResponseTimeoutSeconds
Field Value
Type Description
System.Nullable<System.Int32>
View Source

UnhealthyThreshold

The number of times a health check must fail for a backend Droplet to be marked "unhealthy" and be removed from the pool. If not specified, the default value is 3.

Declaration
public readonly int? UnhealthyThreshold
Field Value
Type Description
System.Nullable<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.