Show / Hide Table of Contents

Class HealthCheckCheckArgs

Inheritance
System.Object
InputArgs
ResourceArgs
HealthCheckCheckArgs
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.SpotInst.Inputs
Assembly: Pulumi.SpotInst.dll
Syntax
public sealed class HealthCheckCheckArgs : ResourceArgs

Constructors

View Source

HealthCheckCheckArgs()

Declaration
public HealthCheckCheckArgs()

Properties

View Source

Endpoint

The destination for the request.

Declaration
public Input<string> Endpoint { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Healthy

The number of consecutive successful health checks that must occur before declaring an instance healthy.

Declaration
public Input<int> Healthy { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Interval

The amount of time (in seconds) between each health check (minimum: 10).

Declaration
public Input<int> Interval { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Port

The port of the Spotinst HCS (default: 80).

Declaration
public Input<int> Port { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Protocol

The protocol to use to connect with the instance. Valid values: http, https.

Declaration
public Input<string> Protocol { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Timeout

the amount of time (in seconds) to wait when receiving a response from the health check.

Declaration
public Input<int> Timeout { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Unhealthy

The number of consecutive failed health checks that must occur before declaring an instance unhealthy.

Declaration
public Input<int> Unhealthy { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.