LoadBalancerPoolArgs

data class LoadBalancerPoolArgs(val accountId: Output<String>? = null, val checkRegions: Output<List<String>>? = null, val description: Output<String>? = null, val enabled: Output<Boolean>? = null, val latitude: Output<Double>? = null, val loadSheddings: Output<List<LoadBalancerPoolLoadSheddingArgs>>? = null, val longitude: Output<Double>? = null, val minimumOrigins: Output<Int>? = null, val monitor: Output<String>? = null, val name: Output<String>? = null, val notificationEmail: Output<String>? = null, val originSteerings: Output<List<LoadBalancerPoolOriginSteeringArgs>>? = null, val origins: Output<List<LoadBalancerPoolOriginArgs>>? = null) : ConvertibleToJava<LoadBalancerPoolArgs>

Provides a Cloudflare Load Balancer pool resource. This provides a pool of origins that can be used by a Cloudflare Load Balancer.

Example Usage

No Java example available.

Import

$ pulumi import cloudflare:index/loadBalancerPool:LoadBalancerPool example <account_id>/<load_balancer_pool_id>

Constructors

Link copied to clipboard
fun LoadBalancerPoolArgs(accountId: Output<String>? = null, checkRegions: Output<List<String>>? = null, description: Output<String>? = null, enabled: Output<Boolean>? = null, latitude: Output<Double>? = null, loadSheddings: Output<List<LoadBalancerPoolLoadSheddingArgs>>? = null, longitude: Output<Double>? = null, minimumOrigins: Output<Int>? = null, monitor: Output<String>? = null, name: Output<String>? = null, notificationEmail: Output<String>? = null, originSteerings: Output<List<LoadBalancerPoolOriginSteeringArgs>>? = null, origins: Output<List<LoadBalancerPoolOriginArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): LoadBalancerPoolArgs

Properties

Link copied to clipboard
val accountId: Output<String>? = null

The account identifier to target for the resource.

Link copied to clipboard
val checkRegions: Output<List<String>>? = null

A list of regions (specified by region code) from which to run health checks. Empty means every Cloudflare data center (the default), but requires an Enterprise plan. Region codes can be found here.

Link copied to clipboard
val description: Output<String>? = null

Free text description.

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether this origin is enabled. Disabled origins will not receive traffic and are excluded from health checks. Defaults to true.

Link copied to clipboard
val latitude: Output<Double>? = null

The latitude this pool is physically located at; used for proximity steering.

Link copied to clipboard

Setting for controlling load shedding for this pool.

Link copied to clipboard
val longitude: Output<Double>? = null

The longitude this pool is physically located at; used for proximity steering.

Link copied to clipboard
val minimumOrigins: Output<Int>? = null

The minimum number of origins that must be healthy for this pool to serve traffic. If the number of healthy origins falls below this number, the pool will be marked unhealthy and we will failover to the next available pool. Defaults to 1.

Link copied to clipboard
val monitor: Output<String>? = null

The ID of the Monitor to use for health checking origins within this pool.

Link copied to clipboard
val name: Output<String>? = null

A human-identifiable name for the origin.

Link copied to clipboard
val notificationEmail: Output<String>? = null

The email address to send health status notifications to. This can be an individual mailbox or a mailing list. Multiple emails can be supplied as a comma delimited list.

Link copied to clipboard

The list of origins within this pool. Traffic directed at this pool is balanced across all currently healthy origins, provided the pool itself is healthy.

Link copied to clipboard

Set an origin steering policy to control origin selection within a pool.