1. Packages
  2. UpCloud
  3. API Docs
  4. LoadbalancerDynamicBackendMember
UpCloud v0.2.0 published on Wednesday, Apr 16, 2025 by UpCloudLtd

upcloud.LoadbalancerDynamicBackendMember

Explore with Pulumi AI

This resource represents load balancer dynamic backend member

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@upcloud/pulumi-upcloud";

const config = new pulumi.Config();
const lbZone = config.get("lbZone") || "fi-hel2";
const lbNetwork = new upcloud.Network("lb_network", {
    name: "lb-test-net",
    zone: lbZone,
    ipNetwork: {
        address: "10.0.0.0/24",
        dhcp: true,
        family: "IPv4",
    },
});
const lb = new upcloud.Loadbalancer("lb", {
    configuredStatus: "started",
    name: "lb-test",
    plan: "development",
    zone: lbZone,
    network: upcloudNetwork.lbNetwork.id,
});
const lbDns1 = new upcloud.LoadbalancerResolver("lb_dns_1", {
    loadbalancer: upcloudLoadbalancer.lb.id,
    name: "lb-resolver-1-test",
    cacheInvalid: 10,
    cacheValid: 100,
    retries: 5,
    timeout: 10,
    timeoutRetry: 10,
    nameservers: [
        "94.237.127.9:53",
        "94.237.40.9:53",
    ],
});
const lbBe1 = new upcloud.LoadbalancerBackend("lb_be_1", {
    loadbalancer: upcloudLoadbalancer.lb.id,
    resolverName: upcloudLoadbalancerResolver.lbDns1.name,
    name: "lb-be-1-test",
});
const lbBe1Dm1 = new upcloud.LoadbalancerDynamicBackendMember("lb_be_1_dm_1", {
    backend: upcloudLoadbalancerBackend.lbBe1.id,
    name: "lb-be-1-dm-1-test",
    weight: 10,
    maxSessions: 10,
    enabled: false,
});
Copy
import pulumi
import pulumi_upcloud as upcloud

config = pulumi.Config()
lb_zone = config.get("lbZone")
if lb_zone is None:
    lb_zone = "fi-hel2"
lb_network = upcloud.Network("lb_network",
    name="lb-test-net",
    zone=lb_zone,
    ip_network={
        "address": "10.0.0.0/24",
        "dhcp": True,
        "family": "IPv4",
    })
lb = upcloud.Loadbalancer("lb",
    configured_status="started",
    name="lb-test",
    plan="development",
    zone=lb_zone,
    network=upcloud_network["lbNetwork"]["id"])
lb_dns1 = upcloud.LoadbalancerResolver("lb_dns_1",
    loadbalancer=upcloud_loadbalancer["lb"]["id"],
    name="lb-resolver-1-test",
    cache_invalid=10,
    cache_valid=100,
    retries=5,
    timeout=10,
    timeout_retry=10,
    nameservers=[
        "94.237.127.9:53",
        "94.237.40.9:53",
    ])
lb_be1 = upcloud.LoadbalancerBackend("lb_be_1",
    loadbalancer=upcloud_loadbalancer["lb"]["id"],
    resolver_name=upcloud_loadbalancer_resolver["lbDns1"]["name"],
    name="lb-be-1-test")
lb_be1_dm1 = upcloud.LoadbalancerDynamicBackendMember("lb_be_1_dm_1",
    backend=upcloud_loadbalancer_backend["lbBe1"]["id"],
    name="lb-be-1-dm-1-test",
    weight=10,
    max_sessions=10,
    enabled=False)
Copy
package main

import (
	"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		lbZone := "fi-hel2"
		if param := cfg.Get("lbZone"); param != "" {
			lbZone = param
		}
		_, err := upcloud.NewNetwork(ctx, "lb_network", &upcloud.NetworkArgs{
			Name: pulumi.String("lb-test-net"),
			Zone: pulumi.String(lbZone),
			IpNetwork: &upcloud.NetworkIpNetworkArgs{
				Address: pulumi.String("10.0.0.0/24"),
				Dhcp:    pulumi.Bool(true),
				Family:  pulumi.String("IPv4"),
			},
		})
		if err != nil {
			return err
		}
		_, err = upcloud.NewLoadbalancer(ctx, "lb", &upcloud.LoadbalancerArgs{
			ConfiguredStatus: pulumi.String("started"),
			Name:             pulumi.String("lb-test"),
			Plan:             pulumi.String("development"),
			Zone:             pulumi.String(lbZone),
			Network:          pulumi.Any(upcloudNetwork.LbNetwork.Id),
		})
		if err != nil {
			return err
		}
		_, err = upcloud.NewLoadbalancerResolver(ctx, "lb_dns_1", &upcloud.LoadbalancerResolverArgs{
			Loadbalancer: pulumi.Any(upcloudLoadbalancer.Lb.Id),
			Name:         pulumi.String("lb-resolver-1-test"),
			CacheInvalid: pulumi.Int(10),
			CacheValid:   pulumi.Int(100),
			Retries:      pulumi.Int(5),
			Timeout:      pulumi.Int(10),
			TimeoutRetry: pulumi.Int(10),
			Nameservers: pulumi.StringArray{
				pulumi.String("94.237.127.9:53"),
				pulumi.String("94.237.40.9:53"),
			},
		})
		if err != nil {
			return err
		}
		_, err = upcloud.NewLoadbalancerBackend(ctx, "lb_be_1", &upcloud.LoadbalancerBackendArgs{
			Loadbalancer: pulumi.Any(upcloudLoadbalancer.Lb.Id),
			ResolverName: pulumi.Any(upcloudLoadbalancerResolver.LbDns1.Name),
			Name:         pulumi.String("lb-be-1-test"),
		})
		if err != nil {
			return err
		}
		_, err = upcloud.NewLoadbalancerDynamicBackendMember(ctx, "lb_be_1_dm_1", &upcloud.LoadbalancerDynamicBackendMemberArgs{
			Backend:     pulumi.Any(upcloudLoadbalancerBackend.LbBe1.Id),
			Name:        pulumi.String("lb-be-1-dm-1-test"),
			Weight:      pulumi.Int(10),
			MaxSessions: pulumi.Int(10),
			Enabled:     pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using UpCloud = UpCloud.Pulumi.UpCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var lbZone = config.Get("lbZone") ?? "fi-hel2";
    var lbNetwork = new UpCloud.Network("lb_network", new()
    {
        Name = "lb-test-net",
        Zone = lbZone,
        IpNetwork = new UpCloud.Inputs.NetworkIpNetworkArgs
        {
            Address = "10.0.0.0/24",
            Dhcp = true,
            Family = "IPv4",
        },
    });

    var lb = new UpCloud.Loadbalancer("lb", new()
    {
        ConfiguredStatus = "started",
        Name = "lb-test",
        Plan = "development",
        Zone = lbZone,
        Network = upcloudNetwork.LbNetwork.Id,
    });

    var lbDns1 = new UpCloud.LoadbalancerResolver("lb_dns_1", new()
    {
        Loadbalancer = upcloudLoadbalancer.Lb.Id,
        Name = "lb-resolver-1-test",
        CacheInvalid = 10,
        CacheValid = 100,
        Retries = 5,
        Timeout = 10,
        TimeoutRetry = 10,
        Nameservers = new[]
        {
            "94.237.127.9:53",
            "94.237.40.9:53",
        },
    });

    var lbBe1 = new UpCloud.LoadbalancerBackend("lb_be_1", new()
    {
        Loadbalancer = upcloudLoadbalancer.Lb.Id,
        ResolverName = upcloudLoadbalancerResolver.LbDns1.Name,
        Name = "lb-be-1-test",
    });

    var lbBe1Dm1 = new UpCloud.LoadbalancerDynamicBackendMember("lb_be_1_dm_1", new()
    {
        Backend = upcloudLoadbalancerBackend.LbBe1.Id,
        Name = "lb-be-1-dm-1-test",
        Weight = 10,
        MaxSessions = 10,
        Enabled = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.upcloud.Network;
import com.pulumi.upcloud.NetworkArgs;
import com.pulumi.upcloud.inputs.NetworkIpNetworkArgs;
import com.pulumi.upcloud.Loadbalancer;
import com.pulumi.upcloud.LoadbalancerArgs;
import com.pulumi.upcloud.LoadbalancerResolver;
import com.pulumi.upcloud.LoadbalancerResolverArgs;
import com.pulumi.upcloud.LoadbalancerBackend;
import com.pulumi.upcloud.LoadbalancerBackendArgs;
import com.pulumi.upcloud.LoadbalancerDynamicBackendMember;
import com.pulumi.upcloud.LoadbalancerDynamicBackendMemberArgs;
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) {
        final var config = ctx.config();
        final var lbZone = config.get("lbZone").orElse("fi-hel2");
        var lbNetwork = new Network("lbNetwork", NetworkArgs.builder()
            .name("lb-test-net")
            .zone(lbZone)
            .ipNetwork(NetworkIpNetworkArgs.builder()
                .address("10.0.0.0/24")
                .dhcp(true)
                .family("IPv4")
                .build())
            .build());

        var lb = new Loadbalancer("lb", LoadbalancerArgs.builder()
            .configuredStatus("started")
            .name("lb-test")
            .plan("development")
            .zone(lbZone)
            .network(upcloudNetwork.lbNetwork().id())
            .build());

        var lbDns1 = new LoadbalancerResolver("lbDns1", LoadbalancerResolverArgs.builder()
            .loadbalancer(upcloudLoadbalancer.lb().id())
            .name("lb-resolver-1-test")
            .cacheInvalid(10)
            .cacheValid(100)
            .retries(5)
            .timeout(10)
            .timeoutRetry(10)
            .nameservers(            
                "94.237.127.9:53",
                "94.237.40.9:53")
            .build());

        var lbBe1 = new LoadbalancerBackend("lbBe1", LoadbalancerBackendArgs.builder()
            .loadbalancer(upcloudLoadbalancer.lb().id())
            .resolverName(upcloudLoadbalancerResolver.lbDns1().name())
            .name("lb-be-1-test")
            .build());

        var lbBe1Dm1 = new LoadbalancerDynamicBackendMember("lbBe1Dm1", LoadbalancerDynamicBackendMemberArgs.builder()
            .backend(upcloudLoadbalancerBackend.lbBe1().id())
            .name("lb-be-1-dm-1-test")
            .weight(10)
            .maxSessions(10)
            .enabled(false)
            .build());

    }
}
Copy
configuration:
  lbZone:
    type: string
    default: fi-hel2
resources:
  lbNetwork:
    type: upcloud:Network
    name: lb_network
    properties:
      name: lb-test-net
      zone: ${lbZone}
      ipNetwork:
        address: 10.0.0.0/24
        dhcp: true
        family: IPv4
  lb:
    type: upcloud:Loadbalancer
    properties:
      configuredStatus: started
      name: lb-test
      plan: development
      zone: ${lbZone}
      network: ${upcloudNetwork.lbNetwork.id}
  lbDns1:
    type: upcloud:LoadbalancerResolver
    name: lb_dns_1
    properties:
      loadbalancer: ${upcloudLoadbalancer.lb.id}
      name: lb-resolver-1-test
      cacheInvalid: 10
      cacheValid: 100
      retries: 5
      timeout: 10
      timeoutRetry: 10
      nameservers:
        - 94.237.127.9:53
        - 94.237.40.9:53
  lbBe1:
    type: upcloud:LoadbalancerBackend
    name: lb_be_1
    properties:
      loadbalancer: ${upcloudLoadbalancer.lb.id}
      resolverName: ${upcloudLoadbalancerResolver.lbDns1.name}
      name: lb-be-1-test
  lbBe1Dm1:
    type: upcloud:LoadbalancerDynamicBackendMember
    name: lb_be_1_dm_1
    properties:
      backend: ${upcloudLoadbalancerBackend.lbBe1.id}
      name: lb-be-1-dm-1-test
      weight: 10
      maxSessions: 10
      enabled: false
Copy

Create LoadbalancerDynamicBackendMember Resource

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

Constructor syntax

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

@overload
def LoadbalancerDynamicBackendMember(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     backend: Optional[str] = None,
                                     max_sessions: Optional[int] = None,
                                     weight: Optional[int] = None,
                                     enabled: Optional[bool] = None,
                                     ip: Optional[str] = None,
                                     name: Optional[str] = None,
                                     port: Optional[int] = None)
func NewLoadbalancerDynamicBackendMember(ctx *Context, name string, args LoadbalancerDynamicBackendMemberArgs, opts ...ResourceOption) (*LoadbalancerDynamicBackendMember, error)
public LoadbalancerDynamicBackendMember(string name, LoadbalancerDynamicBackendMemberArgs args, CustomResourceOptions? opts = null)
public LoadbalancerDynamicBackendMember(String name, LoadbalancerDynamicBackendMemberArgs args)
public LoadbalancerDynamicBackendMember(String name, LoadbalancerDynamicBackendMemberArgs args, CustomResourceOptions options)
type: upcloud:LoadbalancerDynamicBackendMember
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. LoadbalancerDynamicBackendMemberArgs
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. LoadbalancerDynamicBackendMemberArgs
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. LoadbalancerDynamicBackendMemberArgs
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. LoadbalancerDynamicBackendMemberArgs
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. LoadbalancerDynamicBackendMemberArgs
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 loadbalancerDynamicBackendMemberResource = new UpCloud.LoadbalancerDynamicBackendMember("loadbalancerDynamicBackendMemberResource", new()
{
    Backend = "string",
    MaxSessions = 0,
    Weight = 0,
    Enabled = false,
    Ip = "string",
    Name = "string",
    Port = 0,
});
Copy
example, err := upcloud.NewLoadbalancerDynamicBackendMember(ctx, "loadbalancerDynamicBackendMemberResource", &upcloud.LoadbalancerDynamicBackendMemberArgs{
	Backend:     pulumi.String("string"),
	MaxSessions: pulumi.Int(0),
	Weight:      pulumi.Int(0),
	Enabled:     pulumi.Bool(false),
	Ip:          pulumi.String("string"),
	Name:        pulumi.String("string"),
	Port:        pulumi.Int(0),
})
Copy
var loadbalancerDynamicBackendMemberResource = new LoadbalancerDynamicBackendMember("loadbalancerDynamicBackendMemberResource", LoadbalancerDynamicBackendMemberArgs.builder()
    .backend("string")
    .maxSessions(0)
    .weight(0)
    .enabled(false)
    .ip("string")
    .name("string")
    .port(0)
    .build());
Copy
loadbalancer_dynamic_backend_member_resource = upcloud.LoadbalancerDynamicBackendMember("loadbalancerDynamicBackendMemberResource",
    backend="string",
    max_sessions=0,
    weight=0,
    enabled=False,
    ip="string",
    name="string",
    port=0)
Copy
const loadbalancerDynamicBackendMemberResource = new upcloud.LoadbalancerDynamicBackendMember("loadbalancerDynamicBackendMemberResource", {
    backend: "string",
    maxSessions: 0,
    weight: 0,
    enabled: false,
    ip: "string",
    name: "string",
    port: 0,
});
Copy
type: upcloud:LoadbalancerDynamicBackendMember
properties:
    backend: string
    enabled: false
    ip: string
    maxSessions: 0
    name: string
    port: 0
    weight: 0
Copy

LoadbalancerDynamicBackendMember 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 LoadbalancerDynamicBackendMember resource accepts the following input properties:

Backend This property is required. string
ID of the load balancer backend to which the member is connected.
MaxSessions This property is required. int
Maximum number of sessions before queueing.
Weight This property is required. int
Weight of the member. The higher the weight, the more traffic the member receives.
Enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
Ip string
Optional fallback IP address in case of failure on DNS resolving.
Name string
The name of the member. Must be unique within within the load balancer backend.
Port int
Server port. Port is optional and can be specified in DNS SRV record.
Backend This property is required. string
ID of the load balancer backend to which the member is connected.
MaxSessions This property is required. int
Maximum number of sessions before queueing.
Weight This property is required. int
Weight of the member. The higher the weight, the more traffic the member receives.
Enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
Ip string
Optional fallback IP address in case of failure on DNS resolving.
Name string
The name of the member. Must be unique within within the load balancer backend.
Port int
Server port. Port is optional and can be specified in DNS SRV record.
backend This property is required. String
ID of the load balancer backend to which the member is connected.
maxSessions This property is required. Integer
Maximum number of sessions before queueing.
weight This property is required. Integer
Weight of the member. The higher the weight, the more traffic the member receives.
enabled Boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip String
Optional fallback IP address in case of failure on DNS resolving.
name String
The name of the member. Must be unique within within the load balancer backend.
port Integer
Server port. Port is optional and can be specified in DNS SRV record.
backend This property is required. string
ID of the load balancer backend to which the member is connected.
maxSessions This property is required. number
Maximum number of sessions before queueing.
weight This property is required. number
Weight of the member. The higher the weight, the more traffic the member receives.
enabled boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip string
Optional fallback IP address in case of failure on DNS resolving.
name string
The name of the member. Must be unique within within the load balancer backend.
port number
Server port. Port is optional and can be specified in DNS SRV record.
backend This property is required. str
ID of the load balancer backend to which the member is connected.
max_sessions This property is required. int
Maximum number of sessions before queueing.
weight This property is required. int
Weight of the member. The higher the weight, the more traffic the member receives.
enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip str
Optional fallback IP address in case of failure on DNS resolving.
name str
The name of the member. Must be unique within within the load balancer backend.
port int
Server port. Port is optional and can be specified in DNS SRV record.
backend This property is required. String
ID of the load balancer backend to which the member is connected.
maxSessions This property is required. Number
Maximum number of sessions before queueing.
weight This property is required. Number
Weight of the member. The higher the weight, the more traffic the member receives.
enabled Boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip String
Optional fallback IP address in case of failure on DNS resolving.
name String
The name of the member. Must be unique within within the load balancer backend.
port Number
Server port. Port is optional and can be specified in DNS SRV record.

Outputs

All input properties are implicitly available as output properties. Additionally, the LoadbalancerDynamicBackendMember 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 LoadbalancerDynamicBackendMember Resource

Get an existing LoadbalancerDynamicBackendMember 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?: LoadbalancerDynamicBackendMemberState, opts?: CustomResourceOptions): LoadbalancerDynamicBackendMember
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backend: Optional[str] = None,
        enabled: Optional[bool] = None,
        ip: Optional[str] = None,
        max_sessions: Optional[int] = None,
        name: Optional[str] = None,
        port: Optional[int] = None,
        weight: Optional[int] = None) -> LoadbalancerDynamicBackendMember
func GetLoadbalancerDynamicBackendMember(ctx *Context, name string, id IDInput, state *LoadbalancerDynamicBackendMemberState, opts ...ResourceOption) (*LoadbalancerDynamicBackendMember, error)
public static LoadbalancerDynamicBackendMember Get(string name, Input<string> id, LoadbalancerDynamicBackendMemberState? state, CustomResourceOptions? opts = null)
public static LoadbalancerDynamicBackendMember get(String name, Output<String> id, LoadbalancerDynamicBackendMemberState state, CustomResourceOptions options)
resources:  _:    type: upcloud:LoadbalancerDynamicBackendMember    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:
Backend string
ID of the load balancer backend to which the member is connected.
Enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
Ip string
Optional fallback IP address in case of failure on DNS resolving.
MaxSessions int
Maximum number of sessions before queueing.
Name string
The name of the member. Must be unique within within the load balancer backend.
Port int
Server port. Port is optional and can be specified in DNS SRV record.
Weight int
Weight of the member. The higher the weight, the more traffic the member receives.
Backend string
ID of the load balancer backend to which the member is connected.
Enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
Ip string
Optional fallback IP address in case of failure on DNS resolving.
MaxSessions int
Maximum number of sessions before queueing.
Name string
The name of the member. Must be unique within within the load balancer backend.
Port int
Server port. Port is optional and can be specified in DNS SRV record.
Weight int
Weight of the member. The higher the weight, the more traffic the member receives.
backend String
ID of the load balancer backend to which the member is connected.
enabled Boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip String
Optional fallback IP address in case of failure on DNS resolving.
maxSessions Integer
Maximum number of sessions before queueing.
name String
The name of the member. Must be unique within within the load balancer backend.
port Integer
Server port. Port is optional and can be specified in DNS SRV record.
weight Integer
Weight of the member. The higher the weight, the more traffic the member receives.
backend string
ID of the load balancer backend to which the member is connected.
enabled boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip string
Optional fallback IP address in case of failure on DNS resolving.
maxSessions number
Maximum number of sessions before queueing.
name string
The name of the member. Must be unique within within the load balancer backend.
port number
Server port. Port is optional and can be specified in DNS SRV record.
weight number
Weight of the member. The higher the weight, the more traffic the member receives.
backend str
ID of the load balancer backend to which the member is connected.
enabled bool
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip str
Optional fallback IP address in case of failure on DNS resolving.
max_sessions int
Maximum number of sessions before queueing.
name str
The name of the member. Must be unique within within the load balancer backend.
port int
Server port. Port is optional and can be specified in DNS SRV record.
weight int
Weight of the member. The higher the weight, the more traffic the member receives.
backend String
ID of the load balancer backend to which the member is connected.
enabled Boolean
Indicates if the member is enabled. Disabled members are excluded from load balancing.
ip String
Optional fallback IP address in case of failure on DNS resolving.
maxSessions Number
Maximum number of sessions before queueing.
name String
The name of the member. Must be unique within within the load balancer backend.
port Number
Server port. Port is optional and can be specified in DNS SRV record.
weight Number
Weight of the member. The higher the weight, the more traffic the member receives.

Package Details

Repository
upcloud UpCloudLtd/pulumi-upcloud
License
Apache-2.0
Notes
This Pulumi package is based on the upcloud Terraform Provider.