Show / Hide Table of Contents

Class LoadBalancerPoolOriginArgs

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

Constructors

View Source

LoadBalancerPoolOriginArgs()

Declaration
public LoadBalancerPoolOriginArgs()

Properties

View Source

Address

The IP address (IPv4 or IPv6) of the origin, or the publicly addressable hostname. Hostnames entered here should resolve directly to the origin, and not be a hostname proxied by Cloudflare.

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

Enabled

Whether to enable (the default) this origin within the Pool. Disabled origins will not receive traffic and are excluded from health checks. The origin will only be disabled for the current pool.

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

Name

A human-identifiable name for the origin.

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

Weight

The weight (0.01 - 1.00) of this origin, relative to other origins in the pool. Equal values mean equal weighting. A weight of 0 means traffic will not be sent to this origin, but health is still checked. Default: 1.

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