1. Packages
  2. UpCloud
  3. API Docs
  4. LoadbalancerFrontendRule
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

upcloud.LoadbalancerFrontendRule

Explore with Pulumi AI

upcloud logo
UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd

    This resource represents load balancer frontend rule.

    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 lbFe1R1 = new upcloud.LoadbalancerFrontendRule("lb_fe_1_r1", {
        frontend: upcloudLoadbalancerFrontend.lbFe1.id,
        name: "lb-fe-1-r1-test",
        priority: 10,
        matchers: {
            srcIps: [{
                value: "192.168.0.0/24",
            }],
        },
        actions: {
            useBackends: [{
                backendName: upcloudLoadbalancerBackend.lbBe1.name,
            }],
        },
    });
    const lbFe1 = new upcloud.LoadbalancerFrontend("lb_fe_1", {
        loadbalancer: upcloudLoadbalancer.lb.id,
        name: "lb-fe-1-test",
        mode: "http",
        port: 8080,
        defaultBackendName: upcloudLoadbalancerBackend.lbBe1.name,
    });
    const lb = new upcloud.Loadbalancer("lb", {
        configuredStatus: "started",
        name: "lb-test",
        plan: "development",
        zone: lbZone,
        networks: [
            {
                type: "public",
                family: "IPv4",
                name: "public",
            },
            {
                type: "private",
                family: "IPv4",
                name: "private",
                network: upcloudNetwork.lbNetwork.id,
            },
        ],
    });
    const lbBe1 = new upcloud.LoadbalancerBackend("lb_be_1", {
        loadbalancer: upcloudLoadbalancer.lb.id,
        name: "lb-be-1-test",
    });
    
    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_fe1_r1 = upcloud.LoadbalancerFrontendRule("lb_fe_1_r1",
        frontend=upcloud_loadbalancer_frontend["lbFe1"]["id"],
        name="lb-fe-1-r1-test",
        priority=10,
        matchers={
            "src_ips": [{
                "value": "192.168.0.0/24",
            }],
        },
        actions={
            "use_backends": [{
                "backend_name": upcloud_loadbalancer_backend["lbBe1"]["name"],
            }],
        })
    lb_fe1 = upcloud.LoadbalancerFrontend("lb_fe_1",
        loadbalancer=upcloud_loadbalancer["lb"]["id"],
        name="lb-fe-1-test",
        mode="http",
        port=8080,
        default_backend_name=upcloud_loadbalancer_backend["lbBe1"]["name"])
    lb = upcloud.Loadbalancer("lb",
        configured_status="started",
        name="lb-test",
        plan="development",
        zone=lb_zone,
        networks=[
            {
                "type": "public",
                "family": "IPv4",
                "name": "public",
            },
            {
                "type": "private",
                "family": "IPv4",
                "name": "private",
                "network": upcloud_network["lbNetwork"]["id"],
            },
        ])
    lb_be1 = upcloud.LoadbalancerBackend("lb_be_1",
        loadbalancer=upcloud_loadbalancer["lb"]["id"],
        name="lb-be-1-test")
    
    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.NewLoadbalancerFrontendRule(ctx, "lb_fe_1_r1", &upcloud.LoadbalancerFrontendRuleArgs{
    			Frontend: pulumi.Any(upcloudLoadbalancerFrontend.LbFe1.Id),
    			Name:     pulumi.String("lb-fe-1-r1-test"),
    			Priority: pulumi.Int(10),
    			Matchers: &upcloud.LoadbalancerFrontendRuleMatchersArgs{
    				SrcIps: upcloud.LoadbalancerFrontendRuleMatchersSrcIpArray{
    					&upcloud.LoadbalancerFrontendRuleMatchersSrcIpArgs{
    						Value: pulumi.String("192.168.0.0/24"),
    					},
    				},
    			},
    			Actions: &upcloud.LoadbalancerFrontendRuleActionsArgs{
    				UseBackends: upcloud.LoadbalancerFrontendRuleActionsUseBackendArray{
    					&upcloud.LoadbalancerFrontendRuleActionsUseBackendArgs{
    						BackendName: pulumi.Any(upcloudLoadbalancerBackend.LbBe1.Name),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = upcloud.NewLoadbalancerFrontend(ctx, "lb_fe_1", &upcloud.LoadbalancerFrontendArgs{
    			Loadbalancer:       pulumi.Any(upcloudLoadbalancer.Lb.Id),
    			Name:               pulumi.String("lb-fe-1-test"),
    			Mode:               pulumi.String("http"),
    			Port:               pulumi.Int(8080),
    			DefaultBackendName: pulumi.Any(upcloudLoadbalancerBackend.LbBe1.Name),
    		})
    		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),
    			Networks: upcloud.LoadbalancerNetworkArray{
    				&upcloud.LoadbalancerNetworkArgs{
    					Type:   pulumi.String("public"),
    					Family: pulumi.String("IPv4"),
    					Name:   pulumi.String("public"),
    				},
    				&upcloud.LoadbalancerNetworkArgs{
    					Type:    pulumi.String("private"),
    					Family:  pulumi.String("IPv4"),
    					Name:    pulumi.String("private"),
    					Network: pulumi.Any(upcloudNetwork.LbNetwork.Id),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = upcloud.NewLoadbalancerBackend(ctx, "lb_be_1", &upcloud.LoadbalancerBackendArgs{
    			Loadbalancer: pulumi.Any(upcloudLoadbalancer.Lb.Id),
    			Name:         pulumi.String("lb-be-1-test"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 lbFe1R1 = new UpCloud.LoadbalancerFrontendRule("lb_fe_1_r1", new()
        {
            Frontend = upcloudLoadbalancerFrontend.LbFe1.Id,
            Name = "lb-fe-1-r1-test",
            Priority = 10,
            Matchers = new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersArgs
            {
                SrcIps = new[]
                {
                    new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcIpArgs
                    {
                        Value = "192.168.0.0/24",
                    },
                },
            },
            Actions = new UpCloud.Inputs.LoadbalancerFrontendRuleActionsArgs
            {
                UseBackends = new[]
                {
                    new UpCloud.Inputs.LoadbalancerFrontendRuleActionsUseBackendArgs
                    {
                        BackendName = upcloudLoadbalancerBackend.LbBe1.Name,
                    },
                },
            },
        });
    
        var lbFe1 = new UpCloud.LoadbalancerFrontend("lb_fe_1", new()
        {
            Loadbalancer = upcloudLoadbalancer.Lb.Id,
            Name = "lb-fe-1-test",
            Mode = "http",
            Port = 8080,
            DefaultBackendName = upcloudLoadbalancerBackend.LbBe1.Name,
        });
    
        var lb = new UpCloud.Loadbalancer("lb", new()
        {
            ConfiguredStatus = "started",
            Name = "lb-test",
            Plan = "development",
            Zone = lbZone,
            Networks = new[]
            {
                new UpCloud.Inputs.LoadbalancerNetworkArgs
                {
                    Type = "public",
                    Family = "IPv4",
                    Name = "public",
                },
                new UpCloud.Inputs.LoadbalancerNetworkArgs
                {
                    Type = "private",
                    Family = "IPv4",
                    Name = "private",
                    Network = upcloudNetwork.LbNetwork.Id,
                },
            },
        });
    
        var lbBe1 = new UpCloud.LoadbalancerBackend("lb_be_1", new()
        {
            Loadbalancer = upcloudLoadbalancer.Lb.Id,
            Name = "lb-be-1-test",
        });
    
    });
    
    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.LoadbalancerFrontendRule;
    import com.pulumi.upcloud.LoadbalancerFrontendRuleArgs;
    import com.pulumi.upcloud.inputs.LoadbalancerFrontendRuleMatchersArgs;
    import com.pulumi.upcloud.inputs.LoadbalancerFrontendRuleActionsArgs;
    import com.pulumi.upcloud.LoadbalancerFrontend;
    import com.pulumi.upcloud.LoadbalancerFrontendArgs;
    import com.pulumi.upcloud.Loadbalancer;
    import com.pulumi.upcloud.LoadbalancerArgs;
    import com.pulumi.upcloud.inputs.LoadbalancerNetworkArgs;
    import com.pulumi.upcloud.LoadbalancerBackend;
    import com.pulumi.upcloud.LoadbalancerBackendArgs;
    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 lbFe1R1 = new LoadbalancerFrontendRule("lbFe1R1", LoadbalancerFrontendRuleArgs.builder()
                .frontend(upcloudLoadbalancerFrontend.lbFe1().id())
                .name("lb-fe-1-r1-test")
                .priority(10)
                .matchers(LoadbalancerFrontendRuleMatchersArgs.builder()
                    .srcIps(LoadbalancerFrontendRuleMatchersSrcIpArgs.builder()
                        .value("192.168.0.0/24")
                        .build())
                    .build())
                .actions(LoadbalancerFrontendRuleActionsArgs.builder()
                    .useBackends(LoadbalancerFrontendRuleActionsUseBackendArgs.builder()
                        .backendName(upcloudLoadbalancerBackend.lbBe1().name())
                        .build())
                    .build())
                .build());
    
            var lbFe1 = new LoadbalancerFrontend("lbFe1", LoadbalancerFrontendArgs.builder()
                .loadbalancer(upcloudLoadbalancer.lb().id())
                .name("lb-fe-1-test")
                .mode("http")
                .port(8080)
                .defaultBackendName(upcloudLoadbalancerBackend.lbBe1().name())
                .build());
    
            var lb = new Loadbalancer("lb", LoadbalancerArgs.builder()
                .configuredStatus("started")
                .name("lb-test")
                .plan("development")
                .zone(lbZone)
                .networks(            
                    LoadbalancerNetworkArgs.builder()
                        .type("public")
                        .family("IPv4")
                        .name("public")
                        .build(),
                    LoadbalancerNetworkArgs.builder()
                        .type("private")
                        .family("IPv4")
                        .name("private")
                        .network(upcloudNetwork.lbNetwork().id())
                        .build())
                .build());
    
            var lbBe1 = new LoadbalancerBackend("lbBe1", LoadbalancerBackendArgs.builder()
                .loadbalancer(upcloudLoadbalancer.lb().id())
                .name("lb-be-1-test")
                .build());
    
        }
    }
    
    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
      lbFe1R1:
        type: upcloud:LoadbalancerFrontendRule
        name: lb_fe_1_r1
        properties:
          frontend: ${upcloudLoadbalancerFrontend.lbFe1.id}
          name: lb-fe-1-r1-test
          priority: 10
          matchers:
            srcIps:
              - value: 192.168.0.0/24
          actions:
            useBackends:
              - backendName: ${upcloudLoadbalancerBackend.lbBe1.name}
      lbFe1:
        type: upcloud:LoadbalancerFrontend
        name: lb_fe_1
        properties:
          loadbalancer: ${upcloudLoadbalancer.lb.id}
          name: lb-fe-1-test
          mode: http
          port: 8080
          defaultBackendName: ${upcloudLoadbalancerBackend.lbBe1.name}
      lb:
        type: upcloud:Loadbalancer
        properties:
          configuredStatus: started
          name: lb-test
          plan: development
          zone: ${lbZone}
          networks:
            - type: public
              family: IPv4
              name: public
            - type: private
              family: IPv4
              name: private
              network: ${upcloudNetwork.lbNetwork.id}
      lbBe1:
        type: upcloud:LoadbalancerBackend
        name: lb_be_1
        properties:
          loadbalancer: ${upcloudLoadbalancer.lb.id}
          name: lb-be-1-test
    

    Create LoadbalancerFrontendRule Resource

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

    Constructor syntax

    new LoadbalancerFrontendRule(name: string, args: LoadbalancerFrontendRuleArgs, opts?: CustomResourceOptions);
    @overload
    def LoadbalancerFrontendRule(resource_name: str,
                                 args: LoadbalancerFrontendRuleArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def LoadbalancerFrontendRule(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 frontend: Optional[str] = None,
                                 priority: Optional[int] = None,
                                 actions: Optional[LoadbalancerFrontendRuleActionsArgs] = None,
                                 matchers: Optional[LoadbalancerFrontendRuleMatchersArgs] = None,
                                 matching_condition: Optional[str] = None,
                                 name: Optional[str] = None)
    func NewLoadbalancerFrontendRule(ctx *Context, name string, args LoadbalancerFrontendRuleArgs, opts ...ResourceOption) (*LoadbalancerFrontendRule, error)
    public LoadbalancerFrontendRule(string name, LoadbalancerFrontendRuleArgs args, CustomResourceOptions? opts = null)
    public LoadbalancerFrontendRule(String name, LoadbalancerFrontendRuleArgs args)
    public LoadbalancerFrontendRule(String name, LoadbalancerFrontendRuleArgs args, CustomResourceOptions options)
    
    type: upcloud:LoadbalancerFrontendRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LoadbalancerFrontendRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args LoadbalancerFrontendRuleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args LoadbalancerFrontendRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadbalancerFrontendRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadbalancerFrontendRuleArgs
    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 loadbalancerFrontendRuleResource = new UpCloud.LoadbalancerFrontendRule("loadbalancerFrontendRuleResource", new()
    {
        Frontend = "string",
        Priority = 0,
        Actions = new UpCloud.Inputs.LoadbalancerFrontendRuleActionsArgs
        {
            HttpRedirects = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsHttpRedirectArgs
                {
                    Location = "string",
                    Scheme = "string",
                    Status = 0,
                },
            },
            HttpReturns = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsHttpReturnArgs
                {
                    ContentType = "string",
                    Payload = "string",
                    Status = 0,
                },
            },
            SetForwardedHeaders = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetForwardedHeaderArgs
                {
                    Active = false,
                },
            },
            SetRequestHeaders = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetRequestHeaderArgs
                {
                    Header = "string",
                    Value = "string",
                },
            },
            SetResponseHeaders = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetResponseHeaderArgs
                {
                    Header = "string",
                    Value = "string",
                },
            },
            TcpRejects = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsTcpRejectArgs
                {
                    Active = false,
                },
            },
            UseBackends = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleActionsUseBackendArgs
                {
                    BackendName = "string",
                },
            },
        },
        Matchers = new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersArgs
        {
            BodySizeRanges = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersBodySizeRangeArgs
                {
                    RangeEnd = 0,
                    RangeStart = 0,
                    Inverse = false,
                },
            },
            BodySizes = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersBodySizeArgs
                {
                    Method = "string",
                    Value = 0,
                    Inverse = false,
                },
            },
            Cookies = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersCookieArgs
                {
                    Method = "string",
                    Name = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            Hosts = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHostArgs
                {
                    Value = "string",
                    Inverse = false,
                },
            },
            HttpMethods = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpMethodArgs
                {
                    Value = "string",
                    Inverse = false,
                },
            },
            HttpStatusRanges = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpStatusRangeArgs
                {
                    RangeEnd = 0,
                    RangeStart = 0,
                    Inverse = false,
                },
            },
            HttpStatuses = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpStatusArgs
                {
                    Method = "string",
                    Value = 0,
                    Inverse = false,
                },
            },
            NumMembersUps = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersNumMembersUpArgs
                {
                    BackendName = "string",
                    Method = "string",
                    Value = 0,
                    Inverse = false,
                },
            },
            Paths = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersPathArgs
                {
                    Method = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            RequestHeaders = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersRequestHeaderArgs
                {
                    Method = "string",
                    Name = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            ResponseHeaders = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersResponseHeaderArgs
                {
                    Method = "string",
                    Name = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            SrcIps = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcIpArgs
                {
                    Value = "string",
                    Inverse = false,
                },
            },
            SrcPortRanges = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcPortRangeArgs
                {
                    RangeEnd = 0,
                    RangeStart = 0,
                    Inverse = false,
                },
            },
            SrcPorts = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcPortArgs
                {
                    Method = "string",
                    Value = 0,
                    Inverse = false,
                },
            },
            UrlParams = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrlParamArgs
                {
                    Method = "string",
                    Name = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            UrlQueries = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrlQueryArgs
                {
                    Method = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
            Urls = new[]
            {
                new UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrlArgs
                {
                    Method = "string",
                    IgnoreCase = false,
                    Inverse = false,
                    Value = "string",
                },
            },
        },
        MatchingCondition = "string",
        Name = "string",
    });
    
    example, err := upcloud.NewLoadbalancerFrontendRule(ctx, "loadbalancerFrontendRuleResource", &upcloud.LoadbalancerFrontendRuleArgs{
    	Frontend: pulumi.String("string"),
    	Priority: pulumi.Int(0),
    	Actions: &upcloud.LoadbalancerFrontendRuleActionsArgs{
    		HttpRedirects: upcloud.LoadbalancerFrontendRuleActionsHttpRedirectArray{
    			&upcloud.LoadbalancerFrontendRuleActionsHttpRedirectArgs{
    				Location: pulumi.String("string"),
    				Scheme:   pulumi.String("string"),
    				Status:   pulumi.Int(0),
    			},
    		},
    		HttpReturns: upcloud.LoadbalancerFrontendRuleActionsHttpReturnArray{
    			&upcloud.LoadbalancerFrontendRuleActionsHttpReturnArgs{
    				ContentType: pulumi.String("string"),
    				Payload:     pulumi.String("string"),
    				Status:      pulumi.Int(0),
    			},
    		},
    		SetForwardedHeaders: upcloud.LoadbalancerFrontendRuleActionsSetForwardedHeaderArray{
    			&upcloud.LoadbalancerFrontendRuleActionsSetForwardedHeaderArgs{
    				Active: pulumi.Bool(false),
    			},
    		},
    		SetRequestHeaders: upcloud.LoadbalancerFrontendRuleActionsSetRequestHeaderArray{
    			&upcloud.LoadbalancerFrontendRuleActionsSetRequestHeaderArgs{
    				Header: pulumi.String("string"),
    				Value:  pulumi.String("string"),
    			},
    		},
    		SetResponseHeaders: upcloud.LoadbalancerFrontendRuleActionsSetResponseHeaderArray{
    			&upcloud.LoadbalancerFrontendRuleActionsSetResponseHeaderArgs{
    				Header: pulumi.String("string"),
    				Value:  pulumi.String("string"),
    			},
    		},
    		TcpRejects: upcloud.LoadbalancerFrontendRuleActionsTcpRejectArray{
    			&upcloud.LoadbalancerFrontendRuleActionsTcpRejectArgs{
    				Active: pulumi.Bool(false),
    			},
    		},
    		UseBackends: upcloud.LoadbalancerFrontendRuleActionsUseBackendArray{
    			&upcloud.LoadbalancerFrontendRuleActionsUseBackendArgs{
    				BackendName: pulumi.String("string"),
    			},
    		},
    	},
    	Matchers: &upcloud.LoadbalancerFrontendRuleMatchersArgs{
    		BodySizeRanges: upcloud.LoadbalancerFrontendRuleMatchersBodySizeRangeArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersBodySizeRangeArgs{
    				RangeEnd:   pulumi.Int(0),
    				RangeStart: pulumi.Int(0),
    				Inverse:    pulumi.Bool(false),
    			},
    		},
    		BodySizes: upcloud.LoadbalancerFrontendRuleMatchersBodySizeArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersBodySizeArgs{
    				Method:  pulumi.String("string"),
    				Value:   pulumi.Int(0),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		Cookies: upcloud.LoadbalancerFrontendRuleMatchersCookieArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersCookieArgs{
    				Method:     pulumi.String("string"),
    				Name:       pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		Hosts: upcloud.LoadbalancerFrontendRuleMatchersHostArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersHostArgs{
    				Value:   pulumi.String("string"),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		HttpMethods: upcloud.LoadbalancerFrontendRuleMatchersHttpMethodArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersHttpMethodArgs{
    				Value:   pulumi.String("string"),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		HttpStatusRanges: upcloud.LoadbalancerFrontendRuleMatchersHttpStatusRangeArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersHttpStatusRangeArgs{
    				RangeEnd:   pulumi.Int(0),
    				RangeStart: pulumi.Int(0),
    				Inverse:    pulumi.Bool(false),
    			},
    		},
    		HttpStatuses: upcloud.LoadbalancerFrontendRuleMatchersHttpStatusArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersHttpStatusArgs{
    				Method:  pulumi.String("string"),
    				Value:   pulumi.Int(0),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		NumMembersUps: upcloud.LoadbalancerFrontendRuleMatchersNumMembersUpArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersNumMembersUpArgs{
    				BackendName: pulumi.String("string"),
    				Method:      pulumi.String("string"),
    				Value:       pulumi.Int(0),
    				Inverse:     pulumi.Bool(false),
    			},
    		},
    		Paths: upcloud.LoadbalancerFrontendRuleMatchersPathArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersPathArgs{
    				Method:     pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		RequestHeaders: upcloud.LoadbalancerFrontendRuleMatchersRequestHeaderArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersRequestHeaderArgs{
    				Method:     pulumi.String("string"),
    				Name:       pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		ResponseHeaders: upcloud.LoadbalancerFrontendRuleMatchersResponseHeaderArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersResponseHeaderArgs{
    				Method:     pulumi.String("string"),
    				Name:       pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		SrcIps: upcloud.LoadbalancerFrontendRuleMatchersSrcIpArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersSrcIpArgs{
    				Value:   pulumi.String("string"),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		SrcPortRanges: upcloud.LoadbalancerFrontendRuleMatchersSrcPortRangeArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersSrcPortRangeArgs{
    				RangeEnd:   pulumi.Int(0),
    				RangeStart: pulumi.Int(0),
    				Inverse:    pulumi.Bool(false),
    			},
    		},
    		SrcPorts: upcloud.LoadbalancerFrontendRuleMatchersSrcPortArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersSrcPortArgs{
    				Method:  pulumi.String("string"),
    				Value:   pulumi.Int(0),
    				Inverse: pulumi.Bool(false),
    			},
    		},
    		UrlParams: upcloud.LoadbalancerFrontendRuleMatchersUrlParamArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersUrlParamArgs{
    				Method:     pulumi.String("string"),
    				Name:       pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		UrlQueries: upcloud.LoadbalancerFrontendRuleMatchersUrlQueryArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersUrlQueryArgs{
    				Method:     pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    		Urls: upcloud.LoadbalancerFrontendRuleMatchersUrlArray{
    			&upcloud.LoadbalancerFrontendRuleMatchersUrlArgs{
    				Method:     pulumi.String("string"),
    				IgnoreCase: pulumi.Bool(false),
    				Inverse:    pulumi.Bool(false),
    				Value:      pulumi.String("string"),
    			},
    		},
    	},
    	MatchingCondition: pulumi.String("string"),
    	Name:              pulumi.String("string"),
    })
    
    var loadbalancerFrontendRuleResource = new LoadbalancerFrontendRule("loadbalancerFrontendRuleResource", LoadbalancerFrontendRuleArgs.builder()
        .frontend("string")
        .priority(0)
        .actions(LoadbalancerFrontendRuleActionsArgs.builder()
            .httpRedirects(LoadbalancerFrontendRuleActionsHttpRedirectArgs.builder()
                .location("string")
                .scheme("string")
                .status(0)
                .build())
            .httpReturns(LoadbalancerFrontendRuleActionsHttpReturnArgs.builder()
                .contentType("string")
                .payload("string")
                .status(0)
                .build())
            .setForwardedHeaders(LoadbalancerFrontendRuleActionsSetForwardedHeaderArgs.builder()
                .active(false)
                .build())
            .setRequestHeaders(LoadbalancerFrontendRuleActionsSetRequestHeaderArgs.builder()
                .header("string")
                .value("string")
                .build())
            .setResponseHeaders(LoadbalancerFrontendRuleActionsSetResponseHeaderArgs.builder()
                .header("string")
                .value("string")
                .build())
            .tcpRejects(LoadbalancerFrontendRuleActionsTcpRejectArgs.builder()
                .active(false)
                .build())
            .useBackends(LoadbalancerFrontendRuleActionsUseBackendArgs.builder()
                .backendName("string")
                .build())
            .build())
        .matchers(LoadbalancerFrontendRuleMatchersArgs.builder()
            .bodySizeRanges(LoadbalancerFrontendRuleMatchersBodySizeRangeArgs.builder()
                .rangeEnd(0)
                .rangeStart(0)
                .inverse(false)
                .build())
            .bodySizes(LoadbalancerFrontendRuleMatchersBodySizeArgs.builder()
                .method("string")
                .value(0)
                .inverse(false)
                .build())
            .cookies(LoadbalancerFrontendRuleMatchersCookieArgs.builder()
                .method("string")
                .name("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .hosts(LoadbalancerFrontendRuleMatchersHostArgs.builder()
                .value("string")
                .inverse(false)
                .build())
            .httpMethods(LoadbalancerFrontendRuleMatchersHttpMethodArgs.builder()
                .value("string")
                .inverse(false)
                .build())
            .httpStatusRanges(LoadbalancerFrontendRuleMatchersHttpStatusRangeArgs.builder()
                .rangeEnd(0)
                .rangeStart(0)
                .inverse(false)
                .build())
            .httpStatuses(LoadbalancerFrontendRuleMatchersHttpStatusArgs.builder()
                .method("string")
                .value(0)
                .inverse(false)
                .build())
            .numMembersUps(LoadbalancerFrontendRuleMatchersNumMembersUpArgs.builder()
                .backendName("string")
                .method("string")
                .value(0)
                .inverse(false)
                .build())
            .paths(LoadbalancerFrontendRuleMatchersPathArgs.builder()
                .method("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .requestHeaders(LoadbalancerFrontendRuleMatchersRequestHeaderArgs.builder()
                .method("string")
                .name("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .responseHeaders(LoadbalancerFrontendRuleMatchersResponseHeaderArgs.builder()
                .method("string")
                .name("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .srcIps(LoadbalancerFrontendRuleMatchersSrcIpArgs.builder()
                .value("string")
                .inverse(false)
                .build())
            .srcPortRanges(LoadbalancerFrontendRuleMatchersSrcPortRangeArgs.builder()
                .rangeEnd(0)
                .rangeStart(0)
                .inverse(false)
                .build())
            .srcPorts(LoadbalancerFrontendRuleMatchersSrcPortArgs.builder()
                .method("string")
                .value(0)
                .inverse(false)
                .build())
            .urlParams(LoadbalancerFrontendRuleMatchersUrlParamArgs.builder()
                .method("string")
                .name("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .urlQueries(LoadbalancerFrontendRuleMatchersUrlQueryArgs.builder()
                .method("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .urls(LoadbalancerFrontendRuleMatchersUrlArgs.builder()
                .method("string")
                .ignoreCase(false)
                .inverse(false)
                .value("string")
                .build())
            .build())
        .matchingCondition("string")
        .name("string")
        .build());
    
    loadbalancer_frontend_rule_resource = upcloud.LoadbalancerFrontendRule("loadbalancerFrontendRuleResource",
        frontend="string",
        priority=0,
        actions={
            "http_redirects": [{
                "location": "string",
                "scheme": "string",
                "status": 0,
            }],
            "http_returns": [{
                "content_type": "string",
                "payload": "string",
                "status": 0,
            }],
            "set_forwarded_headers": [{
                "active": False,
            }],
            "set_request_headers": [{
                "header": "string",
                "value": "string",
            }],
            "set_response_headers": [{
                "header": "string",
                "value": "string",
            }],
            "tcp_rejects": [{
                "active": False,
            }],
            "use_backends": [{
                "backend_name": "string",
            }],
        },
        matchers={
            "body_size_ranges": [{
                "range_end": 0,
                "range_start": 0,
                "inverse": False,
            }],
            "body_sizes": [{
                "method": "string",
                "value": 0,
                "inverse": False,
            }],
            "cookies": [{
                "method": "string",
                "name": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "hosts": [{
                "value": "string",
                "inverse": False,
            }],
            "http_methods": [{
                "value": "string",
                "inverse": False,
            }],
            "http_status_ranges": [{
                "range_end": 0,
                "range_start": 0,
                "inverse": False,
            }],
            "http_statuses": [{
                "method": "string",
                "value": 0,
                "inverse": False,
            }],
            "num_members_ups": [{
                "backend_name": "string",
                "method": "string",
                "value": 0,
                "inverse": False,
            }],
            "paths": [{
                "method": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "request_headers": [{
                "method": "string",
                "name": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "response_headers": [{
                "method": "string",
                "name": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "src_ips": [{
                "value": "string",
                "inverse": False,
            }],
            "src_port_ranges": [{
                "range_end": 0,
                "range_start": 0,
                "inverse": False,
            }],
            "src_ports": [{
                "method": "string",
                "value": 0,
                "inverse": False,
            }],
            "url_params": [{
                "method": "string",
                "name": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "url_queries": [{
                "method": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
            "urls": [{
                "method": "string",
                "ignore_case": False,
                "inverse": False,
                "value": "string",
            }],
        },
        matching_condition="string",
        name="string")
    
    const loadbalancerFrontendRuleResource = new upcloud.LoadbalancerFrontendRule("loadbalancerFrontendRuleResource", {
        frontend: "string",
        priority: 0,
        actions: {
            httpRedirects: [{
                location: "string",
                scheme: "string",
                status: 0,
            }],
            httpReturns: [{
                contentType: "string",
                payload: "string",
                status: 0,
            }],
            setForwardedHeaders: [{
                active: false,
            }],
            setRequestHeaders: [{
                header: "string",
                value: "string",
            }],
            setResponseHeaders: [{
                header: "string",
                value: "string",
            }],
            tcpRejects: [{
                active: false,
            }],
            useBackends: [{
                backendName: "string",
            }],
        },
        matchers: {
            bodySizeRanges: [{
                rangeEnd: 0,
                rangeStart: 0,
                inverse: false,
            }],
            bodySizes: [{
                method: "string",
                value: 0,
                inverse: false,
            }],
            cookies: [{
                method: "string",
                name: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            hosts: [{
                value: "string",
                inverse: false,
            }],
            httpMethods: [{
                value: "string",
                inverse: false,
            }],
            httpStatusRanges: [{
                rangeEnd: 0,
                rangeStart: 0,
                inverse: false,
            }],
            httpStatuses: [{
                method: "string",
                value: 0,
                inverse: false,
            }],
            numMembersUps: [{
                backendName: "string",
                method: "string",
                value: 0,
                inverse: false,
            }],
            paths: [{
                method: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            requestHeaders: [{
                method: "string",
                name: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            responseHeaders: [{
                method: "string",
                name: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            srcIps: [{
                value: "string",
                inverse: false,
            }],
            srcPortRanges: [{
                rangeEnd: 0,
                rangeStart: 0,
                inverse: false,
            }],
            srcPorts: [{
                method: "string",
                value: 0,
                inverse: false,
            }],
            urlParams: [{
                method: "string",
                name: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            urlQueries: [{
                method: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
            urls: [{
                method: "string",
                ignoreCase: false,
                inverse: false,
                value: "string",
            }],
        },
        matchingCondition: "string",
        name: "string",
    });
    
    type: upcloud:LoadbalancerFrontendRule
    properties:
        actions:
            httpRedirects:
                - location: string
                  scheme: string
                  status: 0
            httpReturns:
                - contentType: string
                  payload: string
                  status: 0
            setForwardedHeaders:
                - active: false
            setRequestHeaders:
                - header: string
                  value: string
            setResponseHeaders:
                - header: string
                  value: string
            tcpRejects:
                - active: false
            useBackends:
                - backendName: string
        frontend: string
        matchers:
            bodySizeRanges:
                - inverse: false
                  rangeEnd: 0
                  rangeStart: 0
            bodySizes:
                - inverse: false
                  method: string
                  value: 0
            cookies:
                - ignoreCase: false
                  inverse: false
                  method: string
                  name: string
                  value: string
            hosts:
                - inverse: false
                  value: string
            httpMethods:
                - inverse: false
                  value: string
            httpStatusRanges:
                - inverse: false
                  rangeEnd: 0
                  rangeStart: 0
            httpStatuses:
                - inverse: false
                  method: string
                  value: 0
            numMembersUps:
                - backendName: string
                  inverse: false
                  method: string
                  value: 0
            paths:
                - ignoreCase: false
                  inverse: false
                  method: string
                  value: string
            requestHeaders:
                - ignoreCase: false
                  inverse: false
                  method: string
                  name: string
                  value: string
            responseHeaders:
                - ignoreCase: false
                  inverse: false
                  method: string
                  name: string
                  value: string
            srcIps:
                - inverse: false
                  value: string
            srcPortRanges:
                - inverse: false
                  rangeEnd: 0
                  rangeStart: 0
            srcPorts:
                - inverse: false
                  method: string
                  value: 0
            urlParams:
                - ignoreCase: false
                  inverse: false
                  method: string
                  name: string
                  value: string
            urlQueries:
                - ignoreCase: false
                  inverse: false
                  method: string
                  value: string
            urls:
                - ignoreCase: false
                  inverse: false
                  method: string
                  value: string
        matchingCondition: string
        name: string
        priority: 0
    

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

    Frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    Priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    Actions UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActions
    Rule actions.
    Matchers UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    MatchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    Name string
    The name of the frontend rule. Must be unique within the frontend.
    Frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    Priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    Actions LoadbalancerFrontendRuleActionsArgs
    Rule actions.
    Matchers LoadbalancerFrontendRuleMatchersArgs
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    MatchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    Name string
    The name of the frontend rule. Must be unique within the frontend.
    frontend String
    ID of the load balancer frontend to which the frontend rule is connected.
    priority Integer
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActions
    Rule actions.
    matchers LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition String
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name String
    The name of the frontend rule. Must be unique within the frontend.
    frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    priority number
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActions
    Rule actions.
    matchers LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name string
    The name of the frontend rule. Must be unique within the frontend.
    frontend str
    ID of the load balancer frontend to which the frontend rule is connected.
    priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActionsArgs
    Rule actions.
    matchers LoadbalancerFrontendRuleMatchersArgs
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matching_condition str
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name str
    The name of the frontend rule. Must be unique within the frontend.
    frontend String
    ID of the load balancer frontend to which the frontend rule is connected.
    priority Number
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions Property Map
    Rule actions.
    matchers Property Map
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition String
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name String
    The name of the frontend rule. Must be unique within the frontend.

    Outputs

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

    Get an existing LoadbalancerFrontendRule 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?: LoadbalancerFrontendRuleState, opts?: CustomResourceOptions): LoadbalancerFrontendRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            actions: Optional[LoadbalancerFrontendRuleActionsArgs] = None,
            frontend: Optional[str] = None,
            matchers: Optional[LoadbalancerFrontendRuleMatchersArgs] = None,
            matching_condition: Optional[str] = None,
            name: Optional[str] = None,
            priority: Optional[int] = None) -> LoadbalancerFrontendRule
    func GetLoadbalancerFrontendRule(ctx *Context, name string, id IDInput, state *LoadbalancerFrontendRuleState, opts ...ResourceOption) (*LoadbalancerFrontendRule, error)
    public static LoadbalancerFrontendRule Get(string name, Input<string> id, LoadbalancerFrontendRuleState? state, CustomResourceOptions? opts = null)
    public static LoadbalancerFrontendRule get(String name, Output<String> id, LoadbalancerFrontendRuleState state, CustomResourceOptions options)
    resources:  _:    type: upcloud:LoadbalancerFrontendRule    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    Actions UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActions
    Rule actions.
    Frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    Matchers UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    MatchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    Name string
    The name of the frontend rule. Must be unique within the frontend.
    Priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    Actions LoadbalancerFrontendRuleActionsArgs
    Rule actions.
    Frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    Matchers LoadbalancerFrontendRuleMatchersArgs
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    MatchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    Name string
    The name of the frontend rule. Must be unique within the frontend.
    Priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActions
    Rule actions.
    frontend String
    ID of the load balancer frontend to which the frontend rule is connected.
    matchers LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition String
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name String
    The name of the frontend rule. Must be unique within the frontend.
    priority Integer
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActions
    Rule actions.
    frontend string
    ID of the load balancer frontend to which the frontend rule is connected.
    matchers LoadbalancerFrontendRuleMatchers
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition string
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name string
    The name of the frontend rule. Must be unique within the frontend.
    priority number
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions LoadbalancerFrontendRuleActionsArgs
    Rule actions.
    frontend str
    ID of the load balancer frontend to which the frontend rule is connected.
    matchers LoadbalancerFrontendRuleMatchersArgs
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matching_condition str
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name str
    The name of the frontend rule. Must be unique within the frontend.
    priority int
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.
    actions Property Map
    Rule actions.
    frontend String
    ID of the load balancer frontend to which the frontend rule is connected.
    matchers Property Map
    Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
    matchingCondition String
    Defines boolean operator used to combine multiple matchers. Defaults to and.
    name String
    The name of the frontend rule. Must be unique within the frontend.
    priority Number
    Rule with the higher priority goes first. Rules with the same priority processed in alphabetical order.

    Supporting Types

    LoadbalancerFrontendRuleActions, LoadbalancerFrontendRuleActionsArgs

    HttpRedirects List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsHttpRedirect>
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    HttpReturns List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsHttpReturn>
    Returns HTTP response with specified HTTP status.
    SetForwardedHeaders List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetForwardedHeader>
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    SetRequestHeaders List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetRequestHeader>
    Set request header
    SetResponseHeaders List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsSetResponseHeader>
    Set response header
    TcpRejects List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsTcpReject>
    Terminates a connection.
    UseBackends List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleActionsUseBackend>
    Routes traffic to specified backend.
    HttpRedirects []LoadbalancerFrontendRuleActionsHttpRedirect
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    HttpReturns []LoadbalancerFrontendRuleActionsHttpReturn
    Returns HTTP response with specified HTTP status.
    SetForwardedHeaders []LoadbalancerFrontendRuleActionsSetForwardedHeader
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    SetRequestHeaders []LoadbalancerFrontendRuleActionsSetRequestHeader
    Set request header
    SetResponseHeaders []LoadbalancerFrontendRuleActionsSetResponseHeader
    Set response header
    TcpRejects []LoadbalancerFrontendRuleActionsTcpReject
    Terminates a connection.
    UseBackends []LoadbalancerFrontendRuleActionsUseBackend
    Routes traffic to specified backend.
    httpRedirects List<LoadbalancerFrontendRuleActionsHttpRedirect>
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    httpReturns List<LoadbalancerFrontendRuleActionsHttpReturn>
    Returns HTTP response with specified HTTP status.
    setForwardedHeaders List<LoadbalancerFrontendRuleActionsSetForwardedHeader>
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    setRequestHeaders List<LoadbalancerFrontendRuleActionsSetRequestHeader>
    Set request header
    setResponseHeaders List<LoadbalancerFrontendRuleActionsSetResponseHeader>
    Set response header
    tcpRejects List<LoadbalancerFrontendRuleActionsTcpReject>
    Terminates a connection.
    useBackends List<LoadbalancerFrontendRuleActionsUseBackend>
    Routes traffic to specified backend.
    httpRedirects LoadbalancerFrontendRuleActionsHttpRedirect[]
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    httpReturns LoadbalancerFrontendRuleActionsHttpReturn[]
    Returns HTTP response with specified HTTP status.
    setForwardedHeaders LoadbalancerFrontendRuleActionsSetForwardedHeader[]
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    setRequestHeaders LoadbalancerFrontendRuleActionsSetRequestHeader[]
    Set request header
    setResponseHeaders LoadbalancerFrontendRuleActionsSetResponseHeader[]
    Set response header
    tcpRejects LoadbalancerFrontendRuleActionsTcpReject[]
    Terminates a connection.
    useBackends LoadbalancerFrontendRuleActionsUseBackend[]
    Routes traffic to specified backend.
    http_redirects Sequence[LoadbalancerFrontendRuleActionsHttpRedirect]
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    http_returns Sequence[LoadbalancerFrontendRuleActionsHttpReturn]
    Returns HTTP response with specified HTTP status.
    set_forwarded_headers Sequence[LoadbalancerFrontendRuleActionsSetForwardedHeader]
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    set_request_headers Sequence[LoadbalancerFrontendRuleActionsSetRequestHeader]
    Set request header
    set_response_headers Sequence[LoadbalancerFrontendRuleActionsSetResponseHeader]
    Set response header
    tcp_rejects Sequence[LoadbalancerFrontendRuleActionsTcpReject]
    Terminates a connection.
    use_backends Sequence[LoadbalancerFrontendRuleActionsUseBackend]
    Routes traffic to specified backend.
    httpRedirects List<Property Map>
    Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
    httpReturns List<Property Map>
    Returns HTTP response with specified HTTP status.
    setForwardedHeaders List<Property Map>
    Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
    setRequestHeaders List<Property Map>
    Set request header
    setResponseHeaders List<Property Map>
    Set response header
    tcpRejects List<Property Map>
    Terminates a connection.
    useBackends List<Property Map>
    Routes traffic to specified backend.

    LoadbalancerFrontendRuleActionsHttpRedirect, LoadbalancerFrontendRuleActionsHttpRedirectArgs

    Location string
    Target location.
    Scheme string
    Target scheme.
    Status int
    HTTP status code.
    Location string
    Target location.
    Scheme string
    Target scheme.
    Status int
    HTTP status code.
    location String
    Target location.
    scheme String
    Target scheme.
    status Integer
    HTTP status code.
    location string
    Target location.
    scheme string
    Target scheme.
    status number
    HTTP status code.
    location str
    Target location.
    scheme str
    Target scheme.
    status int
    HTTP status code.
    location String
    Target location.
    scheme String
    Target scheme.
    status Number
    HTTP status code.

    LoadbalancerFrontendRuleActionsHttpReturn, LoadbalancerFrontendRuleActionsHttpReturnArgs

    ContentType string
    Content type.
    Payload string
    The payload.
    Status int
    HTTP status code.
    ContentType string
    Content type.
    Payload string
    The payload.
    Status int
    HTTP status code.
    contentType String
    Content type.
    payload String
    The payload.
    status Integer
    HTTP status code.
    contentType string
    Content type.
    payload string
    The payload.
    status number
    HTTP status code.
    content_type str
    Content type.
    payload str
    The payload.
    status int
    HTTP status code.
    contentType String
    Content type.
    payload String
    The payload.
    status Number
    HTTP status code.

    LoadbalancerFrontendRuleActionsSetForwardedHeader, LoadbalancerFrontendRuleActionsSetForwardedHeaderArgs

    Active bool
    Active bool
    active Boolean
    active boolean
    active bool
    active Boolean

    LoadbalancerFrontendRuleActionsSetRequestHeader, LoadbalancerFrontendRuleActionsSetRequestHeaderArgs

    Header string
    Header name.
    Value string
    Header value.
    Header string
    Header name.
    Value string
    Header value.
    header String
    Header name.
    value String
    Header value.
    header string
    Header name.
    value string
    Header value.
    header str
    Header name.
    value str
    Header value.
    header String
    Header name.
    value String
    Header value.

    LoadbalancerFrontendRuleActionsSetResponseHeader, LoadbalancerFrontendRuleActionsSetResponseHeaderArgs

    Header string
    Header name.
    Value string
    Header value.
    Header string
    Header name.
    Value string
    Header value.
    header String
    Header name.
    value String
    Header value.
    header string
    Header name.
    value string
    Header value.
    header str
    Header name.
    value str
    Header value.
    header String
    Header name.
    value String
    Header value.

    LoadbalancerFrontendRuleActionsTcpReject, LoadbalancerFrontendRuleActionsTcpRejectArgs

    Active bool
    Indicates if the rule is active.
    Active bool
    Indicates if the rule is active.
    active Boolean
    Indicates if the rule is active.
    active boolean
    Indicates if the rule is active.
    active bool
    Indicates if the rule is active.
    active Boolean
    Indicates if the rule is active.

    LoadbalancerFrontendRuleActionsUseBackend, LoadbalancerFrontendRuleActionsUseBackendArgs

    BackendName string
    The name of the backend where traffic will be routed.
    BackendName string
    The name of the backend where traffic will be routed.
    backendName String
    The name of the backend where traffic will be routed.
    backendName string
    The name of the backend where traffic will be routed.
    backend_name str
    The name of the backend where traffic will be routed.
    backendName String
    The name of the backend where traffic will be routed.

    LoadbalancerFrontendRuleMatchers, LoadbalancerFrontendRuleMatchersArgs

    BodySizeRanges List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersBodySizeRange>
    Matches by range of HTTP request body sizes.
    BodySizes List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersBodySize>
    Matches by HTTP request body size.
    Cookies List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersCookie>
    Matches by HTTP cookie value. Cookie name must be provided.
    Headers List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHeader>
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    Hosts List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHost>
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    HttpMethods List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpMethod>
    Matches by HTTP method.
    HttpStatusRanges List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpStatusRange>
    Matches by range of HTTP statuses.
    HttpStatuses List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersHttpStatus>
    Matches by HTTP status.
    NumMembersUps List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersNumMembersUp>
    Matches by number of healthy backend members.
    Paths List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersPath>
    Matches by URL path.
    RequestHeaders List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersRequestHeader>
    Matches by HTTP request header value. Header name must be provided.
    ResponseHeaders List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersResponseHeader>
    Matches by HTTP response header value. Header name must be provided.
    SrcIps List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcIp>
    Matches by source IP address.
    SrcPortRanges List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcPortRange>
    Matches by range of source port numbers.
    SrcPorts List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersSrcPort>
    Matches by source port number.
    UrlParams List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrlParam>
    Matches by URL query parameter value. Query parameter name must be provided
    UrlQueries List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrlQuery>
    Matches by URL query string.
    Urls List<UpCloud.Pulumi.UpCloud.Inputs.LoadbalancerFrontendRuleMatchersUrl>
    Matches by URL without schema, e.g. example.com/dashboard.
    BodySizeRanges []LoadbalancerFrontendRuleMatchersBodySizeRange
    Matches by range of HTTP request body sizes.
    BodySizes []LoadbalancerFrontendRuleMatchersBodySize
    Matches by HTTP request body size.
    Cookies []LoadbalancerFrontendRuleMatchersCookie
    Matches by HTTP cookie value. Cookie name must be provided.
    Headers []LoadbalancerFrontendRuleMatchersHeader
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    Hosts []LoadbalancerFrontendRuleMatchersHost
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    HttpMethods []LoadbalancerFrontendRuleMatchersHttpMethod
    Matches by HTTP method.
    HttpStatusRanges []LoadbalancerFrontendRuleMatchersHttpStatusRange
    Matches by range of HTTP statuses.
    HttpStatuses []LoadbalancerFrontendRuleMatchersHttpStatus
    Matches by HTTP status.
    NumMembersUps []LoadbalancerFrontendRuleMatchersNumMembersUp
    Matches by number of healthy backend members.
    Paths []LoadbalancerFrontendRuleMatchersPath
    Matches by URL path.
    RequestHeaders []LoadbalancerFrontendRuleMatchersRequestHeader
    Matches by HTTP request header value. Header name must be provided.
    ResponseHeaders []LoadbalancerFrontendRuleMatchersResponseHeader
    Matches by HTTP response header value. Header name must be provided.
    SrcIps []LoadbalancerFrontendRuleMatchersSrcIp
    Matches by source IP address.
    SrcPortRanges []LoadbalancerFrontendRuleMatchersSrcPortRange
    Matches by range of source port numbers.
    SrcPorts []LoadbalancerFrontendRuleMatchersSrcPort
    Matches by source port number.
    UrlParams []LoadbalancerFrontendRuleMatchersUrlParam
    Matches by URL query parameter value. Query parameter name must be provided
    UrlQueries []LoadbalancerFrontendRuleMatchersUrlQuery
    Matches by URL query string.
    Urls []LoadbalancerFrontendRuleMatchersUrl
    Matches by URL without schema, e.g. example.com/dashboard.
    bodySizeRanges List<LoadbalancerFrontendRuleMatchersBodySizeRange>
    Matches by range of HTTP request body sizes.
    bodySizes List<LoadbalancerFrontendRuleMatchersBodySize>
    Matches by HTTP request body size.
    cookies List<LoadbalancerFrontendRuleMatchersCookie>
    Matches by HTTP cookie value. Cookie name must be provided.
    headers List<LoadbalancerFrontendRuleMatchersHeader>
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    hosts List<LoadbalancerFrontendRuleMatchersHost>
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    httpMethods List<LoadbalancerFrontendRuleMatchersHttpMethod>
    Matches by HTTP method.
    httpStatusRanges List<LoadbalancerFrontendRuleMatchersHttpStatusRange>
    Matches by range of HTTP statuses.
    httpStatuses List<LoadbalancerFrontendRuleMatchersHttpStatus>
    Matches by HTTP status.
    numMembersUps List<LoadbalancerFrontendRuleMatchersNumMembersUp>
    Matches by number of healthy backend members.
    paths List<LoadbalancerFrontendRuleMatchersPath>
    Matches by URL path.
    requestHeaders List<LoadbalancerFrontendRuleMatchersRequestHeader>
    Matches by HTTP request header value. Header name must be provided.
    responseHeaders List<LoadbalancerFrontendRuleMatchersResponseHeader>
    Matches by HTTP response header value. Header name must be provided.
    srcIps List<LoadbalancerFrontendRuleMatchersSrcIp>
    Matches by source IP address.
    srcPortRanges List<LoadbalancerFrontendRuleMatchersSrcPortRange>
    Matches by range of source port numbers.
    srcPorts List<LoadbalancerFrontendRuleMatchersSrcPort>
    Matches by source port number.
    urlParams List<LoadbalancerFrontendRuleMatchersUrlParam>
    Matches by URL query parameter value. Query parameter name must be provided
    urlQueries List<LoadbalancerFrontendRuleMatchersUrlQuery>
    Matches by URL query string.
    urls List<LoadbalancerFrontendRuleMatchersUrl>
    Matches by URL without schema, e.g. example.com/dashboard.
    bodySizeRanges LoadbalancerFrontendRuleMatchersBodySizeRange[]
    Matches by range of HTTP request body sizes.
    bodySizes LoadbalancerFrontendRuleMatchersBodySize[]
    Matches by HTTP request body size.
    cookies LoadbalancerFrontendRuleMatchersCookie[]
    Matches by HTTP cookie value. Cookie name must be provided.
    headers LoadbalancerFrontendRuleMatchersHeader[]
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    hosts LoadbalancerFrontendRuleMatchersHost[]
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    httpMethods LoadbalancerFrontendRuleMatchersHttpMethod[]
    Matches by HTTP method.
    httpStatusRanges LoadbalancerFrontendRuleMatchersHttpStatusRange[]
    Matches by range of HTTP statuses.
    httpStatuses LoadbalancerFrontendRuleMatchersHttpStatus[]
    Matches by HTTP status.
    numMembersUps LoadbalancerFrontendRuleMatchersNumMembersUp[]
    Matches by number of healthy backend members.
    paths LoadbalancerFrontendRuleMatchersPath[]
    Matches by URL path.
    requestHeaders LoadbalancerFrontendRuleMatchersRequestHeader[]
    Matches by HTTP request header value. Header name must be provided.
    responseHeaders LoadbalancerFrontendRuleMatchersResponseHeader[]
    Matches by HTTP response header value. Header name must be provided.
    srcIps LoadbalancerFrontendRuleMatchersSrcIp[]
    Matches by source IP address.
    srcPortRanges LoadbalancerFrontendRuleMatchersSrcPortRange[]
    Matches by range of source port numbers.
    srcPorts LoadbalancerFrontendRuleMatchersSrcPort[]
    Matches by source port number.
    urlParams LoadbalancerFrontendRuleMatchersUrlParam[]
    Matches by URL query parameter value. Query parameter name must be provided
    urlQueries LoadbalancerFrontendRuleMatchersUrlQuery[]
    Matches by URL query string.
    urls LoadbalancerFrontendRuleMatchersUrl[]
    Matches by URL without schema, e.g. example.com/dashboard.
    body_size_ranges Sequence[LoadbalancerFrontendRuleMatchersBodySizeRange]
    Matches by range of HTTP request body sizes.
    body_sizes Sequence[LoadbalancerFrontendRuleMatchersBodySize]
    Matches by HTTP request body size.
    cookies Sequence[LoadbalancerFrontendRuleMatchersCookie]
    Matches by HTTP cookie value. Cookie name must be provided.
    headers Sequence[LoadbalancerFrontendRuleMatchersHeader]
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    hosts Sequence[LoadbalancerFrontendRuleMatchersHost]
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    http_methods Sequence[LoadbalancerFrontendRuleMatchersHttpMethod]
    Matches by HTTP method.
    http_status_ranges Sequence[LoadbalancerFrontendRuleMatchersHttpStatusRange]
    Matches by range of HTTP statuses.
    http_statuses Sequence[LoadbalancerFrontendRuleMatchersHttpStatus]
    Matches by HTTP status.
    num_members_ups Sequence[LoadbalancerFrontendRuleMatchersNumMembersUp]
    Matches by number of healthy backend members.
    paths Sequence[LoadbalancerFrontendRuleMatchersPath]
    Matches by URL path.
    request_headers Sequence[LoadbalancerFrontendRuleMatchersRequestHeader]
    Matches by HTTP request header value. Header name must be provided.
    response_headers Sequence[LoadbalancerFrontendRuleMatchersResponseHeader]
    Matches by HTTP response header value. Header name must be provided.
    src_ips Sequence[LoadbalancerFrontendRuleMatchersSrcIp]
    Matches by source IP address.
    src_port_ranges Sequence[LoadbalancerFrontendRuleMatchersSrcPortRange]
    Matches by range of source port numbers.
    src_ports Sequence[LoadbalancerFrontendRuleMatchersSrcPort]
    Matches by source port number.
    url_params Sequence[LoadbalancerFrontendRuleMatchersUrlParam]
    Matches by URL query parameter value. Query parameter name must be provided
    url_queries Sequence[LoadbalancerFrontendRuleMatchersUrlQuery]
    Matches by URL query string.
    urls Sequence[LoadbalancerFrontendRuleMatchersUrl]
    Matches by URL without schema, e.g. example.com/dashboard.
    bodySizeRanges List<Property Map>
    Matches by range of HTTP request body sizes.
    bodySizes List<Property Map>
    Matches by HTTP request body size.
    cookies List<Property Map>
    Matches by HTTP cookie value. Cookie name must be provided.
    headers List<Property Map>
    Matches by HTTP header value. Header name must be provided.

    Deprecated: Use request_header instead.

    hosts List<Property Map>
    Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
    httpMethods List<Property Map>
    Matches by HTTP method.
    httpStatusRanges List<Property Map>
    Matches by range of HTTP statuses.
    httpStatuses List<Property Map>
    Matches by HTTP status.
    numMembersUps List<Property Map>
    Matches by number of healthy backend members.
    paths List<Property Map>
    Matches by URL path.
    requestHeaders List<Property Map>
    Matches by HTTP request header value. Header name must be provided.
    responseHeaders List<Property Map>
    Matches by HTTP response header value. Header name must be provided.
    srcIps List<Property Map>
    Matches by source IP address.
    srcPortRanges List<Property Map>
    Matches by range of source port numbers.
    srcPorts List<Property Map>
    Matches by source port number.
    urlParams List<Property Map>
    Matches by URL query parameter value. Query parameter name must be provided
    urlQueries List<Property Map>
    Matches by URL query string.
    urls List<Property Map>
    Matches by URL without schema, e.g. example.com/dashboard.

    LoadbalancerFrontendRuleMatchersBodySize, LoadbalancerFrontendRuleMatchersBodySizeArgs

    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method str
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersBodySizeRange, LoadbalancerFrontendRuleMatchersBodySizeRangeArgs

    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Integer
    Integer value.
    rangeStart Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd number
    Integer value.
    rangeStart number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    range_end int
    Integer value.
    range_start int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Number
    Integer value.
    rangeStart Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersCookie, LoadbalancerFrontendRuleMatchersCookieArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name string
    Name of the argument.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name str
    Name of the argument.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersHeader, LoadbalancerFrontendRuleMatchersHeaderArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name string
    Name of the argument.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name str
    Name of the argument.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersHost, LoadbalancerFrontendRuleMatchersHostArgs

    Value string
    String value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersHttpMethod, LoadbalancerFrontendRuleMatchersHttpMethodArgs

    Value string
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value (GET, HEAD, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE).
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersHttpStatus, LoadbalancerFrontendRuleMatchersHttpStatusArgs

    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method str
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersHttpStatusRange, LoadbalancerFrontendRuleMatchersHttpStatusRangeArgs

    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Integer
    Integer value.
    rangeStart Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd number
    Integer value.
    rangeStart number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    range_end int
    Integer value.
    range_start int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Number
    Integer value.
    rangeStart Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersNumMembersUp, LoadbalancerFrontendRuleMatchersNumMembersUpArgs

    BackendName string
    The name of the backend.
    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    BackendName string
    The name of the backend.
    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    backendName String
    The name of the backend.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    backendName string
    The name of the backend.
    method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    backend_name str
    The name of the backend.
    method str
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    backendName String
    The name of the backend.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersPath, LoadbalancerFrontendRuleMatchersPathArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersRequestHeader, LoadbalancerFrontendRuleMatchersRequestHeaderArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name string
    Name of the argument.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name str
    Name of the argument.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersResponseHeader, LoadbalancerFrontendRuleMatchersResponseHeaderArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name string
    Name of the argument.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name str
    Name of the argument.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersSrcIp, LoadbalancerFrontendRuleMatchersSrcIpArgs

    Value string
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    IP address. CIDR masks are supported, e.g. 192.168.0.0/24.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersSrcPort, LoadbalancerFrontendRuleMatchersSrcPortArgs

    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    Value int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method string
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method str
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    method String
    Match method (equal, greater, greater_or_equal, less, less_or_equal).
    value Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersSrcPortRange, LoadbalancerFrontendRuleMatchersSrcPortRangeArgs

    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    RangeEnd int
    Integer value.
    RangeStart int
    Integer value.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Integer
    Integer value.
    rangeStart Integer
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd number
    Integer value.
    rangeStart number
    Integer value.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    range_end int
    Integer value.
    range_start int
    Integer value.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    rangeEnd Number
    Integer value.
    rangeStart Number
    Integer value.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.

    LoadbalancerFrontendRuleMatchersUrl, LoadbalancerFrontendRuleMatchersUrlArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersUrlParam, LoadbalancerFrontendRuleMatchersUrlParamArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    Name string
    Name of the argument.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name string
    Name of the argument.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name str
    Name of the argument.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    name String
    Name of the argument.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    LoadbalancerFrontendRuleMatchersUrlQuery, LoadbalancerFrontendRuleMatchersUrlQueryArgs

    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    Method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    IgnoreCase bool
    Defines if case should be ignored. Defaults to false.
    Inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    Value string
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.
    method string
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase boolean
    Defines if case should be ignored. Defaults to false.
    inverse boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value string
    String value.
    method str
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignore_case bool
    Defines if case should be ignored. Defaults to false.
    inverse bool
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value str
    String value.
    method String
    Match method (exact, substring, regexp, starts, ends, domain, ip, exists). Matcher with exists and ip methods must be used without value and ignore_case fields.
    ignoreCase Boolean
    Defines if case should be ignored. Defaults to false.
    inverse Boolean
    Defines if the condition should be inverted. Works similarly to logical NOT operator.
    value String
    String value.

    Package Details

    Repository
    upcloud UpCloudLtd/pulumi-upcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the upcloud Terraform Provider.
    upcloud logo
    UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd