Show / Hide Table of Contents

Class NodeBalancerConfigState

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

Constructors

View Source

NodeBalancerConfigState()

Declaration
public NodeBalancerConfigState()

Properties

View Source

Algorithm

What algorithm this NodeBalancer should use for routing traffic to backends: roundrobin, leastconn, source

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

Check

The type of check to perform against backends to ensure they are serving requests. This is used to determine if backends are up or down. If none no check is performed. connection requires only a connection to the backend to succeed. http and http_body rely on the backend serving HTTP, and that the response returned matches what is expected.

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

CheckAttempts

How many times to attempt a check before considering a backend to be down. (1-30)

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

CheckBody

This value must be present in the response body of the check in order for it to pass. If this value is not present in the response body of a check request, the backend is considered to be down

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

CheckInterval

How often, in seconds, to check that backends are up and serving requests.

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

CheckPassive

If true, any response from this backend with a 5xx status code will be enough for it to be considered unhealthy and taken out of rotation.

Declaration
public Input<bool> CheckPassive { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

CheckPath

The URL path to check on each backend. If the backend does not respond to this request it is considered to be down.

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

CheckTimeout

How long, in seconds, to wait for a check attempt before considering it failed. (1-30)

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

CipherSuite

What ciphers to use for SSL connections served by this NodeBalancer. legacy is considered insecure and should only be used if necessary.

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

NodebalancerId

The ID of the NodeBalancer to access.

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

NodeStatus

Declaration
public Input<NodeBalancerConfigNodeStatusGetArgs> NodeStatus { get; set; }
Property Value
Type Description
Input<NodeBalancerConfigNodeStatusGetArgs>
View Source

Port

The TCP port this Config is for. These values must be unique across configs on a single NodeBalancer (you can't have two configs for port 80, for example). While some ports imply some protocols, no enforcement is done and you may configure your NodeBalancer however is useful to you. For example, while port 443 is generally used for HTTPS, you do not need SSL configured to have a NodeBalancer listening on port 443. (Defaults to 80)

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

Protocol

The protocol this port is configured to serve. If this is set to https you must include an ssl_cert and an ssl_key. (Defaults to "http")

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

SslCert

The certificate this port is serving. This is not returned. If set, this field will come back as &lt;REDACTED>. Please use the ssl_commonname and ssl_fingerprint to identify the certificate.

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

SslCommonname

The common name for the SSL certification this port is serving if this port is not configured to use SSL.

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

SslFingerprint

The fingerprint for the SSL certification this port is serving if this port is not configured to use SSL.

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

SslKey

The private key corresponding to this port's certificate. This is not returned. If set, this field will come back as &lt;REDACTED>. Please use the ssl_commonname and ssl_fingerprint to identify the certificate.

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

Stickiness

Controls how session stickiness is handled on this port: 'none', 'table', 'http_cookie'

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