upcloud.LoadbalancerFrontendRule
Explore with Pulumi AI
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
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions - Rule actions.
- Matchers
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- Matching
Condition 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
Loadbalancer
Frontend Rule Actions Args - Rule actions.
- Matchers
Loadbalancer
Frontend Rule Matchers Args - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- Matching
Condition 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
Loadbalancer
Frontend Rule Actions - Rule actions.
- matchers
Loadbalancer
Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- matching
Condition 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
Loadbalancer
Frontend Rule Actions - Rule actions.
- matchers
Loadbalancer
Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- matching
Condition 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
Loadbalancer
Frontend Rule Actions Args - Rule actions.
- matchers
Loadbalancer
Frontend Rule Matchers Args - 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.
- matching
Condition 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.
- Actions
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions - Rule actions.
- Frontend string
- ID of the load balancer frontend to which the frontend rule is connected.
- Matchers
Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- Matching
Condition 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
Loadbalancer
Frontend Rule Actions Args - Rule actions.
- Frontend string
- ID of the load balancer frontend to which the frontend rule is connected.
- Matchers
Loadbalancer
Frontend Rule Matchers Args - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- Matching
Condition 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
Loadbalancer
Frontend Rule Actions - Rule actions.
- frontend String
- ID of the load balancer frontend to which the frontend rule is connected.
- matchers
Loadbalancer
Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- matching
Condition 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
Loadbalancer
Frontend Rule Actions - Rule actions.
- frontend string
- ID of the load balancer frontend to which the frontend rule is connected.
- matchers
Loadbalancer
Frontend Rule Matchers - Set of rule matchers. If rule doesn't have matchers, then action applies to all incoming requests.
- matching
Condition 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
Loadbalancer
Frontend Rule Actions Args - Rule actions.
- frontend str
- ID of the load balancer frontend to which the frontend rule is connected.
- matchers
Loadbalancer
Frontend Rule Matchers Args - 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.
- matching
Condition 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
- Http
Redirects List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Http Redirect> - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- Http
Returns List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Http Return> - Returns HTTP response with specified HTTP status.
- Set
Forwarded List<UpHeaders Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Set Forwarded Header> - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- Set
Request List<UpHeaders Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Set Request Header> - Set request header
- Set
Response List<UpHeaders Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Set Response Header> - Set response header
- Tcp
Rejects List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Tcp Reject> - Terminates a connection.
- Use
Backends List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Actions Use Backend> - Routes traffic to specified
backend
.
- Http
Redirects []LoadbalancerFrontend Rule Actions Http Redirect - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- Http
Returns []LoadbalancerFrontend Rule Actions Http Return - Returns HTTP response with specified HTTP status.
- Set
Forwarded []LoadbalancerHeaders Frontend Rule Actions Set Forwarded Header - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- Set
Request []LoadbalancerHeaders Frontend Rule Actions Set Request Header - Set request header
- Set
Response []LoadbalancerHeaders Frontend Rule Actions Set Response Header - Set response header
- Tcp
Rejects []LoadbalancerFrontend Rule Actions Tcp Reject - Terminates a connection.
- Use
Backends []LoadbalancerFrontend Rule Actions Use Backend - Routes traffic to specified
backend
.
- http
Redirects List<LoadbalancerFrontend Rule Actions Http Redirect> - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- http
Returns List<LoadbalancerFrontend Rule Actions Http Return> - Returns HTTP response with specified HTTP status.
- set
Forwarded List<LoadbalancerHeaders Frontend Rule Actions Set Forwarded Header> - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- set
Request List<LoadbalancerHeaders Frontend Rule Actions Set Request Header> - Set request header
- set
Response List<LoadbalancerHeaders Frontend Rule Actions Set Response Header> - Set response header
- tcp
Rejects List<LoadbalancerFrontend Rule Actions Tcp Reject> - Terminates a connection.
- use
Backends List<LoadbalancerFrontend Rule Actions Use Backend> - Routes traffic to specified
backend
.
- http
Redirects LoadbalancerFrontend Rule Actions Http Redirect[] - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- http
Returns LoadbalancerFrontend Rule Actions Http Return[] - Returns HTTP response with specified HTTP status.
- set
Forwarded LoadbalancerHeaders Frontend Rule Actions Set Forwarded Header[] - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- set
Request LoadbalancerHeaders Frontend Rule Actions Set Request Header[] - Set request header
- set
Response LoadbalancerHeaders Frontend Rule Actions Set Response Header[] - Set response header
- tcp
Rejects LoadbalancerFrontend Rule Actions Tcp Reject[] - Terminates a connection.
- use
Backends LoadbalancerFrontend Rule Actions Use Backend[] - Routes traffic to specified
backend
.
- http_
redirects Sequence[LoadbalancerFrontend Rule Actions Http Redirect] - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- http_
returns Sequence[LoadbalancerFrontend Rule Actions Http Return] - Returns HTTP response with specified HTTP status.
- set_
forwarded_ Sequence[Loadbalancerheaders Frontend Rule Actions Set Forwarded Header] - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- set_
request_ Sequence[Loadbalancerheaders Frontend Rule Actions Set Request Header] - Set request header
- set_
response_ Sequence[Loadbalancerheaders Frontend Rule Actions Set Response Header] - Set response header
- tcp_
rejects Sequence[LoadbalancerFrontend Rule Actions Tcp Reject] - Terminates a connection.
- use_
backends Sequence[LoadbalancerFrontend Rule Actions Use Backend] - Routes traffic to specified
backend
.
- http
Redirects List<Property Map> - Redirects HTTP requests to specified location or URL scheme. Only either location or scheme can be defined at a time.
- http
Returns List<Property Map> - Returns HTTP response with specified HTTP status.
- set
Forwarded List<Property Map>Headers - Adds 'X-Forwarded-For / -Proto / -Port' headers in your forwarded requests
- set
Request List<Property Map>Headers - Set request header
- set
Response List<Property Map>Headers - Set response header
- tcp
Rejects List<Property Map> - Terminates a connection.
- use
Backends List<Property Map> - Routes traffic to specified
backend
.
LoadbalancerFrontendRuleActionsHttpRedirect, LoadbalancerFrontendRuleActionsHttpRedirectArgs
LoadbalancerFrontendRuleActionsHttpReturn, LoadbalancerFrontendRuleActionsHttpReturnArgs
- Content
Type string - Content type.
- Payload string
- The payload.
- Status int
- HTTP status code.
- Content
Type string - Content type.
- Payload string
- The payload.
- Status int
- HTTP status code.
- content
Type String - Content type.
- payload String
- The payload.
- status Integer
- HTTP status code.
- content
Type 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.
- content
Type 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
LoadbalancerFrontendRuleActionsSetResponseHeader, LoadbalancerFrontendRuleActionsSetResponseHeaderArgs
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
- Backend
Name string - The name of the backend where traffic will be routed.
- Backend
Name string - The name of the backend where traffic will be routed.
- backend
Name String - The name of the backend where traffic will be routed.
- backend
Name string - The name of the backend where traffic will be routed.
- backend_
name str - The name of the backend where traffic will be routed.
- backend
Name String - The name of the backend where traffic will be routed.
LoadbalancerFrontendRuleMatchers, LoadbalancerFrontendRuleMatchersArgs
- Body
Size List<UpRanges Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Body Size Range> - Matches by range of HTTP request body sizes.
- Body
Sizes List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Body Size> - Matches by HTTP request body size.
- List<Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Cookie> - Matches by HTTP cookie value. Cookie name must be provided.
- Headers
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Header> - Matches by HTTP header value. Header name must be provided.
- Hosts
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Host> - Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- Http
Methods List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Http Method> - Matches by HTTP method.
- Http
Status List<UpRanges Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Http Status Range> - Matches by range of HTTP statuses.
- Http
Statuses List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Http Status> - Matches by HTTP status.
- Num
Members List<UpUps Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Num Members Up> - Matches by number of healthy backend members.
- Paths
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Path> - Matches by URL path.
- Request
Headers List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Request Header> - Matches by HTTP request header value. Header name must be provided.
- Response
Headers List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Response Header> - Matches by HTTP response header value. Header name must be provided.
- Src
Ips List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Src Ip> - Matches by source IP address.
- Src
Port List<UpRanges Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Src Port Range> - Matches by range of source port numbers.
- Src
Ports List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Src Port> - Matches by source port number.
- Url
Params List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Url Param> - Matches by URL query parameter value. Query parameter name must be provided
- Url
Queries List<UpCloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Url Query> - Matches by URL query string.
- Urls
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Loadbalancer Frontend Rule Matchers Url> - Matches by URL without schema, e.g.
example.com/dashboard
.
- Body
Size []LoadbalancerRanges Frontend Rule Matchers Body Size Range - Matches by range of HTTP request body sizes.
- Body
Sizes []LoadbalancerFrontend Rule Matchers Body Size - Matches by HTTP request body size.
- []Loadbalancer
Frontend Rule Matchers Cookie - Matches by HTTP cookie value. Cookie name must be provided.
- Headers
[]Loadbalancer
Frontend Rule Matchers Header - Matches by HTTP header value. Header name must be provided.
- Hosts
[]Loadbalancer
Frontend Rule Matchers Host - Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- Http
Methods []LoadbalancerFrontend Rule Matchers Http Method - Matches by HTTP method.
- Http
Status []LoadbalancerRanges Frontend Rule Matchers Http Status Range - Matches by range of HTTP statuses.
- Http
Statuses []LoadbalancerFrontend Rule Matchers Http Status - Matches by HTTP status.
- Num
Members []LoadbalancerUps Frontend Rule Matchers Num Members Up - Matches by number of healthy backend members.
- Paths
[]Loadbalancer
Frontend Rule Matchers Path - Matches by URL path.
- Request
Headers []LoadbalancerFrontend Rule Matchers Request Header - Matches by HTTP request header value. Header name must be provided.
- Response
Headers []LoadbalancerFrontend Rule Matchers Response Header - Matches by HTTP response header value. Header name must be provided.
- Src
Ips []LoadbalancerFrontend Rule Matchers Src Ip - Matches by source IP address.
- Src
Port []LoadbalancerRanges Frontend Rule Matchers Src Port Range - Matches by range of source port numbers.
- Src
Ports []LoadbalancerFrontend Rule Matchers Src Port - Matches by source port number.
- Url
Params []LoadbalancerFrontend Rule Matchers Url Param - Matches by URL query parameter value. Query parameter name must be provided
- Url
Queries []LoadbalancerFrontend Rule Matchers Url Query - Matches by URL query string.
- Urls
[]Loadbalancer
Frontend Rule Matchers Url - Matches by URL without schema, e.g.
example.com/dashboard
.
- body
Size List<LoadbalancerRanges Frontend Rule Matchers Body Size Range> - Matches by range of HTTP request body sizes.
- body
Sizes List<LoadbalancerFrontend Rule Matchers Body Size> - Matches by HTTP request body size.
- List<Loadbalancer
Frontend Rule Matchers Cookie> - Matches by HTTP cookie value. Cookie name must be provided.
- headers
List<Loadbalancer
Frontend Rule Matchers Header> - Matches by HTTP header value. Header name must be provided.
- hosts
List<Loadbalancer
Frontend Rule Matchers Host> - Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- http
Methods List<LoadbalancerFrontend Rule Matchers Http Method> - Matches by HTTP method.
- http
Status List<LoadbalancerRanges Frontend Rule Matchers Http Status Range> - Matches by range of HTTP statuses.
- http
Statuses List<LoadbalancerFrontend Rule Matchers Http Status> - Matches by HTTP status.
- num
Members List<LoadbalancerUps Frontend Rule Matchers Num Members Up> - Matches by number of healthy backend members.
- paths
List<Loadbalancer
Frontend Rule Matchers Path> - Matches by URL path.
- request
Headers List<LoadbalancerFrontend Rule Matchers Request Header> - Matches by HTTP request header value. Header name must be provided.
- response
Headers List<LoadbalancerFrontend Rule Matchers Response Header> - Matches by HTTP response header value. Header name must be provided.
- src
Ips List<LoadbalancerFrontend Rule Matchers Src Ip> - Matches by source IP address.
- src
Port List<LoadbalancerRanges Frontend Rule Matchers Src Port Range> - Matches by range of source port numbers.
- src
Ports List<LoadbalancerFrontend Rule Matchers Src Port> - Matches by source port number.
- url
Params List<LoadbalancerFrontend Rule Matchers Url Param> - Matches by URL query parameter value. Query parameter name must be provided
- url
Queries List<LoadbalancerFrontend Rule Matchers Url Query> - Matches by URL query string.
- urls
List<Loadbalancer
Frontend Rule Matchers Url> - Matches by URL without schema, e.g.
example.com/dashboard
.
- body
Size LoadbalancerRanges Frontend Rule Matchers Body Size Range[] - Matches by range of HTTP request body sizes.
- body
Sizes LoadbalancerFrontend Rule Matchers Body Size[] - Matches by HTTP request body size.
- Loadbalancer
Frontend Rule Matchers Cookie[] - Matches by HTTP cookie value. Cookie name must be provided.
- headers
Loadbalancer
Frontend Rule Matchers Header[] - Matches by HTTP header value. Header name must be provided.
- hosts
Loadbalancer
Frontend Rule Matchers Host[] - Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- http
Methods LoadbalancerFrontend Rule Matchers Http Method[] - Matches by HTTP method.
- http
Status LoadbalancerRanges Frontend Rule Matchers Http Status Range[] - Matches by range of HTTP statuses.
- http
Statuses LoadbalancerFrontend Rule Matchers Http Status[] - Matches by HTTP status.
- num
Members LoadbalancerUps Frontend Rule Matchers Num Members Up[] - Matches by number of healthy backend members.
- paths
Loadbalancer
Frontend Rule Matchers Path[] - Matches by URL path.
- request
Headers LoadbalancerFrontend Rule Matchers Request Header[] - Matches by HTTP request header value. Header name must be provided.
- response
Headers LoadbalancerFrontend Rule Matchers Response Header[] - Matches by HTTP response header value. Header name must be provided.
- src
Ips LoadbalancerFrontend Rule Matchers Src Ip[] - Matches by source IP address.
- src
Port LoadbalancerRanges Frontend Rule Matchers Src Port Range[] - Matches by range of source port numbers.
- src
Ports LoadbalancerFrontend Rule Matchers Src Port[] - Matches by source port number.
- url
Params LoadbalancerFrontend Rule Matchers Url Param[] - Matches by URL query parameter value. Query parameter name must be provided
- url
Queries LoadbalancerFrontend Rule Matchers Url Query[] - Matches by URL query string.
- urls
Loadbalancer
Frontend Rule Matchers Url[] - Matches by URL without schema, e.g.
example.com/dashboard
.
- body_
size_ Sequence[Loadbalancerranges Frontend Rule Matchers Body Size Range] - Matches by range of HTTP request body sizes.
- body_
sizes Sequence[LoadbalancerFrontend Rule Matchers Body Size] - Matches by HTTP request body size.
- Sequence[Loadbalancer
Frontend Rule Matchers Cookie] - Matches by HTTP cookie value. Cookie name must be provided.
- headers
Sequence[Loadbalancer
Frontend Rule Matchers Header] - Matches by HTTP header value. Header name must be provided.
- hosts
Sequence[Loadbalancer
Frontend Rule Matchers Host] - Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- http_
methods Sequence[LoadbalancerFrontend Rule Matchers Http Method] - Matches by HTTP method.
- http_
status_ Sequence[Loadbalancerranges Frontend Rule Matchers Http Status Range] - Matches by range of HTTP statuses.
- http_
statuses Sequence[LoadbalancerFrontend Rule Matchers Http Status] - Matches by HTTP status.
- num_
members_ Sequence[Loadbalancerups Frontend Rule Matchers Num Members Up] - Matches by number of healthy backend members.
- paths
Sequence[Loadbalancer
Frontend Rule Matchers Path] - Matches by URL path.
- request_
headers Sequence[LoadbalancerFrontend Rule Matchers Request Header] - Matches by HTTP request header value. Header name must be provided.
- response_
headers Sequence[LoadbalancerFrontend Rule Matchers Response Header] - Matches by HTTP response header value. Header name must be provided.
- src_
ips Sequence[LoadbalancerFrontend Rule Matchers Src Ip] - Matches by source IP address.
- src_
port_ Sequence[Loadbalancerranges Frontend Rule Matchers Src Port Range] - Matches by range of source port numbers.
- src_
ports Sequence[LoadbalancerFrontend Rule Matchers Src Port] - Matches by source port number.
- url_
params Sequence[LoadbalancerFrontend Rule Matchers Url Param] - Matches by URL query parameter value. Query parameter name must be provided
- url_
queries Sequence[LoadbalancerFrontend Rule Matchers Url Query] - Matches by URL query string.
- urls
Sequence[Loadbalancer
Frontend Rule Matchers Url] - Matches by URL without schema, e.g.
example.com/dashboard
.
- body
Size List<Property Map>Ranges - Matches by range of HTTP request body sizes.
- body
Sizes List<Property Map> - Matches by HTTP request body size.
- 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.
- hosts List<Property Map>
- Matches by hostname. Header extracted from HTTP Headers or from TLS certificate in case of secured connection.
- http
Methods List<Property Map> - Matches by HTTP method.
- http
Status List<Property Map>Ranges - Matches by range of HTTP statuses.
- http
Statuses List<Property Map> - Matches by HTTP status.
- num
Members List<Property Map>Ups - Matches by number of healthy backend members.
- paths List<Property Map>
- Matches by URL path.
- request
Headers List<Property Map> - Matches by HTTP request header value. Header name must be provided.
- response
Headers List<Property Map> - Matches by HTTP response header value. Header name must be provided.
- src
Ips List<Property Map> - Matches by source IP address.
- src
Port List<Property Map>Ranges - Matches by range of source port numbers.
- src
Ports List<Property Map> - Matches by source port number.
- url
Params List<Property Map> - Matches by URL query parameter value. Query parameter name must be provided
- url
Queries List<Property Map> - Matches by URL query string.
- urls List<Property Map>
- Matches by URL without schema, e.g.
example.com/dashboard
.
LoadbalancerFrontendRuleMatchersBodySize, LoadbalancerFrontendRuleMatchersBodySizeArgs
LoadbalancerFrontendRuleMatchersBodySizeRange, LoadbalancerFrontendRuleMatchersBodySizeRangeArgs
- 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.
- 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.
- range
End Integer - Integer value.
- range
Start Integer - Integer value.
- inverse Boolean
- Defines if the condition should be inverted. Works similarly to logical NOT operator.
- range
End number - Integer value.
- range
Start 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.
- range
End Number - Integer value.
- range
Start 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name string
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name string
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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
LoadbalancerFrontendRuleMatchersHttpMethod, LoadbalancerFrontendRuleMatchersHttpMethodArgs
LoadbalancerFrontendRuleMatchersHttpStatus, LoadbalancerFrontendRuleMatchersHttpStatusArgs
LoadbalancerFrontendRuleMatchersHttpStatusRange, LoadbalancerFrontendRuleMatchersHttpStatusRangeArgs
- 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.
- 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.
- range
End Integer - Integer value.
- range
Start Integer - Integer value.
- inverse Boolean
- Defines if the condition should be inverted. Works similarly to logical NOT operator.
- range
End number - Integer value.
- range
Start 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.
- range
End Number - Integer value.
- range
Start Number - Integer value.
- inverse Boolean
- Defines if the condition should be inverted. Works similarly to logical NOT operator.
LoadbalancerFrontendRuleMatchersNumMembersUp, LoadbalancerFrontendRuleMatchersNumMembersUpArgs
- Backend
Name 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.
- Backend
Name 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.
- backend
Name 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.
- backend
Name 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.
- backend
Name 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 withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name string
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name string
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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
LoadbalancerFrontendRuleMatchersSrcPort, LoadbalancerFrontendRuleMatchersSrcPortArgs
LoadbalancerFrontendRuleMatchersSrcPortRange, LoadbalancerFrontendRuleMatchersSrcPortRangeArgs
- 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.
- 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.
- range
End Integer - Integer value.
- range
Start Integer - Integer value.
- inverse Boolean
- Defines if the condition should be inverted. Works similarly to logical NOT operator.
- range
End number - Integer value.
- range
Start 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.
- range
End Number - Integer value.
- range
Start 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 withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - Name string
- 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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name string
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - name String
- Name of the argument.
- ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- Method string
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_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 string
- String value.
- method String
- Match method (
exact
,substring
,regexp
,starts
,ends
,domain
,ip
,exists
). Matcher withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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 withexists
andip
methods must be used withoutvalue
andignore_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 withexists
andip
methods must be used withoutvalue
andignore_case
fields. - ignore
Case 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.