1. Packages
  2. F5bigip Provider
  3. API Docs
  4. ltm
  5. Pool
f5 BIG-IP v3.17.10 published on Tuesday, Apr 8, 2025 by Pulumi

f5bigip.ltm.Pool

Explore with Pulumi AI

f5bigip.ltm.Pool Manages F5 BIG-IP LTM pools via iControl REST API.

For resources should be named with their full path. The full path is the combination of the partition + name of the resource or partition + directory + name. For example /Common/my-pool.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";

const monitor = new f5bigip.ltm.Monitor("monitor", {
    name: "/Common/terraform_monitor",
    parent: "/Common/http",
});
const pool = new f5bigip.ltm.Pool("pool", {
    name: "/Common/Axiom_Environment_APP1_Pool",
    loadBalancingMode: "round-robin",
    minimumActiveMembers: 1,
    monitors: [monitor.name],
});
Copy
import pulumi
import pulumi_f5bigip as f5bigip

monitor = f5bigip.ltm.Monitor("monitor",
    name="/Common/terraform_monitor",
    parent="/Common/http")
pool = f5bigip.ltm.Pool("pool",
    name="/Common/Axiom_Environment_APP1_Pool",
    load_balancing_mode="round-robin",
    minimum_active_members=1,
    monitors=[monitor.name])
Copy
package main

import (
	"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		monitor, err := ltm.NewMonitor(ctx, "monitor", &ltm.MonitorArgs{
			Name:   pulumi.String("/Common/terraform_monitor"),
			Parent: pulumi.String("/Common/http"),
		})
		if err != nil {
			return err
		}
		_, err = ltm.NewPool(ctx, "pool", &ltm.PoolArgs{
			Name:                 pulumi.String("/Common/Axiom_Environment_APP1_Pool"),
			LoadBalancingMode:    pulumi.String("round-robin"),
			MinimumActiveMembers: pulumi.Int(1),
			Monitors: pulumi.StringArray{
				monitor.Name,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;

return await Deployment.RunAsync(() => 
{
    var monitor = new F5BigIP.Ltm.Monitor("monitor", new()
    {
        Name = "/Common/terraform_monitor",
        Parent = "/Common/http",
    });

    var pool = new F5BigIP.Ltm.Pool("pool", new()
    {
        Name = "/Common/Axiom_Environment_APP1_Pool",
        LoadBalancingMode = "round-robin",
        MinimumActiveMembers = 1,
        Monitors = new[]
        {
            monitor.Name,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.Monitor;
import com.pulumi.f5bigip.ltm.MonitorArgs;
import com.pulumi.f5bigip.ltm.Pool;
import com.pulumi.f5bigip.ltm.PoolArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var monitor = new Monitor("monitor", MonitorArgs.builder()
            .name("/Common/terraform_monitor")
            .parent("/Common/http")
            .build());

        var pool = new Pool("pool", PoolArgs.builder()
            .name("/Common/Axiom_Environment_APP1_Pool")
            .loadBalancingMode("round-robin")
            .minimumActiveMembers(1)
            .monitors(monitor.name())
            .build());

    }
}
Copy
resources:
  monitor:
    type: f5bigip:ltm:Monitor
    properties:
      name: /Common/terraform_monitor
      parent: /Common/http
  pool:
    type: f5bigip:ltm:Pool
    properties:
      name: /Common/Axiom_Environment_APP1_Pool
      loadBalancingMode: round-robin
      minimumActiveMembers: 1
      monitors:
        - ${monitor.name}
Copy

Create Pool Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
@overload
def Pool(resource_name: str,
         args: PoolArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Pool(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         name: Optional[str] = None,
         allow_nat: Optional[str] = None,
         allow_snat: Optional[str] = None,
         description: Optional[str] = None,
         load_balancing_mode: Optional[str] = None,
         minimum_active_members: Optional[int] = None,
         monitors: Optional[Sequence[str]] = None,
         reselect_tries: Optional[int] = None,
         service_down_action: Optional[str] = None,
         slow_ramp_time: Optional[int] = None)
func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
public Pool(String name, PoolArgs args)
public Pool(String name, PoolArgs args, CustomResourceOptions options)
type: f5bigip:ltm:Pool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PoolArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var poolResource = new F5BigIP.Ltm.Pool("poolResource", new()
{
    Name = "string",
    AllowNat = "string",
    AllowSnat = "string",
    Description = "string",
    LoadBalancingMode = "string",
    MinimumActiveMembers = 0,
    Monitors = new[]
    {
        "string",
    },
    ReselectTries = 0,
    ServiceDownAction = "string",
    SlowRampTime = 0,
});
Copy
example, err := ltm.NewPool(ctx, "poolResource", &ltm.PoolArgs{
	Name:                 pulumi.String("string"),
	AllowNat:             pulumi.String("string"),
	AllowSnat:            pulumi.String("string"),
	Description:          pulumi.String("string"),
	LoadBalancingMode:    pulumi.String("string"),
	MinimumActiveMembers: pulumi.Int(0),
	Monitors: pulumi.StringArray{
		pulumi.String("string"),
	},
	ReselectTries:     pulumi.Int(0),
	ServiceDownAction: pulumi.String("string"),
	SlowRampTime:      pulumi.Int(0),
})
Copy
var poolResource = new Pool("poolResource", PoolArgs.builder()
    .name("string")
    .allowNat("string")
    .allowSnat("string")
    .description("string")
    .loadBalancingMode("string")
    .minimumActiveMembers(0)
    .monitors("string")
    .reselectTries(0)
    .serviceDownAction("string")
    .slowRampTime(0)
    .build());
Copy
pool_resource = f5bigip.ltm.Pool("poolResource",
    name="string",
    allow_nat="string",
    allow_snat="string",
    description="string",
    load_balancing_mode="string",
    minimum_active_members=0,
    monitors=["string"],
    reselect_tries=0,
    service_down_action="string",
    slow_ramp_time=0)
Copy
const poolResource = new f5bigip.ltm.Pool("poolResource", {
    name: "string",
    allowNat: "string",
    allowSnat: "string",
    description: "string",
    loadBalancingMode: "string",
    minimumActiveMembers: 0,
    monitors: ["string"],
    reselectTries: 0,
    serviceDownAction: "string",
    slowRampTime: 0,
});
Copy
type: f5bigip:ltm:Pool
properties:
    allowNat: string
    allowSnat: string
    description: string
    loadBalancingMode: string
    minimumActiveMembers: 0
    monitors:
        - string
    name: string
    reselectTries: 0
    serviceDownAction: string
    slowRampTime: 0
Copy

Pool Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Pool resource accepts the following input properties:

Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
AllowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
AllowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
Description string
Specifies descriptive text that identifies the pool.
LoadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
MinimumActiveMembers int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
Monitors List<string>
List of monitor names to associate with the pool
ReselectTries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
ServiceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
SlowRampTime int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
AllowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
AllowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
Description string
Specifies descriptive text that identifies the pool.
LoadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
MinimumActiveMembers int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
Monitors []string
List of monitor names to associate with the pool
ReselectTries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
ServiceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
SlowRampTime int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
allowNat String
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat String
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description String
Specifies descriptive text that identifies the pool.
loadBalancingMode String
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers Integer
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors List<String>
List of monitor names to associate with the pool
reselectTries Integer
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction String
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime Integer
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
allowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description string
Specifies descriptive text that identifies the pool.
loadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers number
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors string[]
List of monitor names to associate with the pool
reselectTries number
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime number
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
name
This property is required.
Changes to this property will trigger replacement.
str
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
allow_nat str
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allow_snat str
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description str
Specifies descriptive text that identifies the pool.
load_balancing_mode str
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimum_active_members int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors Sequence[str]
List of monitor names to associate with the pool
reselect_tries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
service_down_action str
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slow_ramp_time int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
allowNat String
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat String
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description String
Specifies descriptive text that identifies the pool.
loadBalancingMode String
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers Number
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors List<String>
List of monitor names to associate with the pool
reselectTries Number
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction String
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime Number
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.

Outputs

All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Pool Resource

Get an existing Pool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: PoolState, opts?: CustomResourceOptions): Pool
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allow_nat: Optional[str] = None,
        allow_snat: Optional[str] = None,
        description: Optional[str] = None,
        load_balancing_mode: Optional[str] = None,
        minimum_active_members: Optional[int] = None,
        monitors: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        reselect_tries: Optional[int] = None,
        service_down_action: Optional[str] = None,
        slow_ramp_time: Optional[int] = None) -> Pool
func GetPool(ctx *Context, name string, id IDInput, state *PoolState, opts ...ResourceOption) (*Pool, error)
public static Pool Get(string name, Input<string> id, PoolState? state, CustomResourceOptions? opts = null)
public static Pool get(String name, Output<String> id, PoolState state, CustomResourceOptions options)
resources:  _:    type: f5bigip:ltm:Pool    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AllowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
AllowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
Description string
Specifies descriptive text that identifies the pool.
LoadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
MinimumActiveMembers int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
Monitors List<string>
List of monitor names to associate with the pool
Name Changes to this property will trigger replacement. string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
ReselectTries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
ServiceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
SlowRampTime int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
AllowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
AllowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
Description string
Specifies descriptive text that identifies the pool.
LoadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
MinimumActiveMembers int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
Monitors []string
List of monitor names to associate with the pool
Name Changes to this property will trigger replacement. string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
ReselectTries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
ServiceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
SlowRampTime int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
allowNat String
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat String
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description String
Specifies descriptive text that identifies the pool.
loadBalancingMode String
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers Integer
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors List<String>
List of monitor names to associate with the pool
name Changes to this property will trigger replacement. String
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
reselectTries Integer
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction String
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime Integer
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
allowNat string
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat string
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description string
Specifies descriptive text that identifies the pool.
loadBalancingMode string
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers number
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors string[]
List of monitor names to associate with the pool
name Changes to this property will trigger replacement. string
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
reselectTries number
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction string
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime number
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
allow_nat str
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allow_snat str
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description str
Specifies descriptive text that identifies the pool.
load_balancing_mode str
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimum_active_members int
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors Sequence[str]
List of monitor names to associate with the pool
name Changes to this property will trigger replacement. str
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
reselect_tries int
Specifies the number of times the system tries to contact a new pool member after a passive failure.
service_down_action str
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slow_ramp_time int
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.
allowNat String
Specifies whether NATs are automatically enabled or disabled for any connections using this pool, [ Default : yes, Possible Values yes or no].
allowSnat String
Specifies whether SNATs are automatically enabled or disabled for any connections using this pool,[ Default : yes, Possible Values yes or no].
description String
Specifies descriptive text that identifies the pool.
loadBalancingMode String
Specifies the load balancing method. The default is round-robin. Possible options: [dynamic-ratio-member,dynamic-ratio-node, fastest-app-response,fastest-node, least-connections-members,least-connections-node,least-sessions,observed-member,observed-node,predictive-member,predictive-node,ratio-least-connections-member,ratio-least-connections-node,ratio-member,ratio-node,ratio-session,round-robin,weighted-least-connections-member,weighted-least-connections-node]
minimumActiveMembers Number
Specifies whether the system load balances traffic according to the priority number assigned to the pool member,Default Value is 0 meaning disabled.
monitors List<String>
List of monitor names to associate with the pool
name Changes to this property will trigger replacement. String
Name of the pool,it should be full path.The full path is the combination of the partition + name of the pool.(For example /Common/my-pool)
reselectTries Number
Specifies the number of times the system tries to contact a new pool member after a passive failure.
serviceDownAction String
Specifies how the system should respond when the target pool member becomes unavailable. The default is None, Possible values: [none, reset, reselect, drop].
slowRampTime Number
Specifies the duration during which the system sends less traffic to a newly-enabled pool member.

Import

ing

An existing pool can be imported into this resource by supplying pool Name in full path as id. An example is below:

$ terraform import bigip_ltm_pool.k8s_prod_import /Common/k8prod_Pool
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
f5 BIG-IP pulumi/pulumi-f5bigip
License
Apache-2.0
Notes
This Pulumi package is based on the bigip Terraform Provider.