Show / Hide Table of Contents

Class LoadBalancerHealthcheckGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
LoadBalancerHealthcheckGetArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class LoadBalancerHealthcheckGetArgs : ResourceArgs

Constructors

View Source

LoadBalancerHealthcheckGetArgs()

Declaration
public LoadBalancerHealthcheckGetArgs()

Properties

View Source

CheckIntervalSeconds

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

Declaration
public Input<int> CheckIntervalSeconds { get; set; }
Property Value
Type Description
Input<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 Input<int> HealthyThreshold { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Path

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

Declaration
public Input<string> Path { get; set; }
Property Value
Type Description
Input<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 Input<int> Port { get; set; }
Property Value
Type Description
Input<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 Input<string> Protocol { get; set; }
Property Value
Type Description
Input<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 Input<int> ResponseTimeoutSeconds { get; set; }
Property Value
Type Description
Input<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 Input<int> UnhealthyThreshold { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.