1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. LoadBalancer
  5. LoadBalancerRoutingPolicy
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.LoadBalancer.LoadBalancerRoutingPolicy

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This resource provides the Load Balancer Routing Policy resource in Oracle Cloud Infrastructure Load Balancer service.

    Adds a routing policy to a load balancer. For more information, see Managing Request Routing.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testLoadBalancerRoutingPolicy = new oci.loadbalancer.LoadBalancerRoutingPolicy("test_load_balancer_routing_policy", {
        conditionLanguageVersion: loadBalancerRoutingPolicyConditionLanguageVersion,
        loadBalancerId: testLoadBalancer.id,
        name: loadBalancerRoutingPolicyName,
        rules: [{
            actions: [{
                backendSetName: testBackendSet.name,
                name: loadBalancerRoutingPolicyRulesActionsName,
            }],
            condition: loadBalancerRoutingPolicyRulesCondition,
            name: loadBalancerRoutingPolicyRulesName,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_load_balancer_routing_policy = oci.load_balancer.LoadBalancerRoutingPolicy("test_load_balancer_routing_policy",
        condition_language_version=load_balancer_routing_policy_condition_language_version,
        load_balancer_id=test_load_balancer["id"],
        name=load_balancer_routing_policy_name,
        rules=[oci.load_balancer.LoadBalancerRoutingPolicyRuleArgs(
            actions=[oci.load_balancer.LoadBalancerRoutingPolicyRuleActionArgs(
                backend_set_name=test_backend_set["name"],
                name=load_balancer_routing_policy_rules_actions_name,
            )],
            condition=load_balancer_routing_policy_rules_condition,
            name=load_balancer_routing_policy_rules_name,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/LoadBalancer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := LoadBalancer.NewLoadBalancerRoutingPolicy(ctx, "test_load_balancer_routing_policy", &LoadBalancer.LoadBalancerRoutingPolicyArgs{
    			ConditionLanguageVersion: pulumi.Any(loadBalancerRoutingPolicyConditionLanguageVersion),
    			LoadBalancerId:           pulumi.Any(testLoadBalancer.Id),
    			Name:                     pulumi.Any(loadBalancerRoutingPolicyName),
    			Rules: loadbalancer.LoadBalancerRoutingPolicyRuleArray{
    				&loadbalancer.LoadBalancerRoutingPolicyRuleArgs{
    					Actions: loadbalancer.LoadBalancerRoutingPolicyRuleActionArray{
    						&loadbalancer.LoadBalancerRoutingPolicyRuleActionArgs{
    							BackendSetName: pulumi.Any(testBackendSet.Name),
    							Name:           pulumi.Any(loadBalancerRoutingPolicyRulesActionsName),
    						},
    					},
    					Condition: pulumi.Any(loadBalancerRoutingPolicyRulesCondition),
    					Name:      pulumi.Any(loadBalancerRoutingPolicyRulesName),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testLoadBalancerRoutingPolicy = new Oci.LoadBalancer.LoadBalancerRoutingPolicy("test_load_balancer_routing_policy", new()
        {
            ConditionLanguageVersion = loadBalancerRoutingPolicyConditionLanguageVersion,
            LoadBalancerId = testLoadBalancer.Id,
            Name = loadBalancerRoutingPolicyName,
            Rules = new[]
            {
                new Oci.LoadBalancer.Inputs.LoadBalancerRoutingPolicyRuleArgs
                {
                    Actions = new[]
                    {
                        new Oci.LoadBalancer.Inputs.LoadBalancerRoutingPolicyRuleActionArgs
                        {
                            BackendSetName = testBackendSet.Name,
                            Name = loadBalancerRoutingPolicyRulesActionsName,
                        },
                    },
                    Condition = loadBalancerRoutingPolicyRulesCondition,
                    Name = loadBalancerRoutingPolicyRulesName,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.LoadBalancer.LoadBalancerRoutingPolicy;
    import com.pulumi.oci.LoadBalancer.LoadBalancerRoutingPolicyArgs;
    import com.pulumi.oci.LoadBalancer.inputs.LoadBalancerRoutingPolicyRuleArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testLoadBalancerRoutingPolicy = new LoadBalancerRoutingPolicy("testLoadBalancerRoutingPolicy", LoadBalancerRoutingPolicyArgs.builder()        
                .conditionLanguageVersion(loadBalancerRoutingPolicyConditionLanguageVersion)
                .loadBalancerId(testLoadBalancer.id())
                .name(loadBalancerRoutingPolicyName)
                .rules(LoadBalancerRoutingPolicyRuleArgs.builder()
                    .actions(LoadBalancerRoutingPolicyRuleActionArgs.builder()
                        .backendSetName(testBackendSet.name())
                        .name(loadBalancerRoutingPolicyRulesActionsName)
                        .build())
                    .condition(loadBalancerRoutingPolicyRulesCondition)
                    .name(loadBalancerRoutingPolicyRulesName)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testLoadBalancerRoutingPolicy:
        type: oci:LoadBalancer:LoadBalancerRoutingPolicy
        name: test_load_balancer_routing_policy
        properties:
          conditionLanguageVersion: ${loadBalancerRoutingPolicyConditionLanguageVersion}
          loadBalancerId: ${testLoadBalancer.id}
          name: ${loadBalancerRoutingPolicyName}
          rules:
            - actions:
                - backendSetName: ${testBackendSet.name}
                  name: ${loadBalancerRoutingPolicyRulesActionsName}
              condition: ${loadBalancerRoutingPolicyRulesCondition}
              name: ${loadBalancerRoutingPolicyRulesName}
    

    Create LoadBalancerRoutingPolicy Resource

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

    Constructor syntax

    new LoadBalancerRoutingPolicy(name: string, args: LoadBalancerRoutingPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def LoadBalancerRoutingPolicy(resource_name: str,
                                  args: LoadBalancerRoutingPolicyArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def LoadBalancerRoutingPolicy(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  condition_language_version: Optional[str] = None,
                                  load_balancer_id: Optional[str] = None,
                                  rules: Optional[Sequence[_loadbalancer.LoadBalancerRoutingPolicyRuleArgs]] = None,
                                  name: Optional[str] = None)
    func NewLoadBalancerRoutingPolicy(ctx *Context, name string, args LoadBalancerRoutingPolicyArgs, opts ...ResourceOption) (*LoadBalancerRoutingPolicy, error)
    public LoadBalancerRoutingPolicy(string name, LoadBalancerRoutingPolicyArgs args, CustomResourceOptions? opts = null)
    public LoadBalancerRoutingPolicy(String name, LoadBalancerRoutingPolicyArgs args)
    public LoadBalancerRoutingPolicy(String name, LoadBalancerRoutingPolicyArgs args, CustomResourceOptions options)
    
    type: oci:LoadBalancer:LoadBalancerRoutingPolicy
    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 LoadBalancerRoutingPolicyArgs
    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 LoadBalancerRoutingPolicyArgs
    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 LoadBalancerRoutingPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadBalancerRoutingPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadBalancerRoutingPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var loadBalancerRoutingPolicyResource = new Oci.LoadBalancer.LoadBalancerRoutingPolicy("loadBalancerRoutingPolicyResource", new()
    {
        ConditionLanguageVersion = "string",
        LoadBalancerId = "string",
        Rules = new[]
        {
            new Oci.LoadBalancer.Inputs.LoadBalancerRoutingPolicyRuleArgs
            {
                Actions = new[]
                {
                    new Oci.LoadBalancer.Inputs.LoadBalancerRoutingPolicyRuleActionArgs
                    {
                        BackendSetName = "string",
                        Name = "string",
                    },
                },
                Condition = "string",
                Name = "string",
            },
        },
        Name = "string",
    });
    
    example, err := LoadBalancer.NewLoadBalancerRoutingPolicy(ctx, "loadBalancerRoutingPolicyResource", &LoadBalancer.LoadBalancerRoutingPolicyArgs{
    	ConditionLanguageVersion: pulumi.String("string"),
    	LoadBalancerId:           pulumi.String("string"),
    	Rules: loadbalancer.LoadBalancerRoutingPolicyRuleArray{
    		&loadbalancer.LoadBalancerRoutingPolicyRuleArgs{
    			Actions: loadbalancer.LoadBalancerRoutingPolicyRuleActionArray{
    				&loadbalancer.LoadBalancerRoutingPolicyRuleActionArgs{
    					BackendSetName: pulumi.String("string"),
    					Name:           pulumi.String("string"),
    				},
    			},
    			Condition: pulumi.String("string"),
    			Name:      pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    })
    
    var loadBalancerRoutingPolicyResource = new LoadBalancerRoutingPolicy("loadBalancerRoutingPolicyResource", LoadBalancerRoutingPolicyArgs.builder()        
        .conditionLanguageVersion("string")
        .loadBalancerId("string")
        .rules(LoadBalancerRoutingPolicyRuleArgs.builder()
            .actions(LoadBalancerRoutingPolicyRuleActionArgs.builder()
                .backendSetName("string")
                .name("string")
                .build())
            .condition("string")
            .name("string")
            .build())
        .name("string")
        .build());
    
    load_balancer_routing_policy_resource = oci.load_balancer.LoadBalancerRoutingPolicy("loadBalancerRoutingPolicyResource",
        condition_language_version="string",
        load_balancer_id="string",
        rules=[oci.load_balancer.LoadBalancerRoutingPolicyRuleArgs(
            actions=[oci.load_balancer.LoadBalancerRoutingPolicyRuleActionArgs(
                backend_set_name="string",
                name="string",
            )],
            condition="string",
            name="string",
        )],
        name="string")
    
    const loadBalancerRoutingPolicyResource = new oci.loadbalancer.LoadBalancerRoutingPolicy("loadBalancerRoutingPolicyResource", {
        conditionLanguageVersion: "string",
        loadBalancerId: "string",
        rules: [{
            actions: [{
                backendSetName: "string",
                name: "string",
            }],
            condition: "string",
            name: "string",
        }],
        name: "string",
    });
    
    type: oci:LoadBalancer:LoadBalancerRoutingPolicy
    properties:
        conditionLanguageVersion: string
        loadBalancerId: string
        name: string
        rules:
            - actions:
                - backendSetName: string
                  name: string
              condition: string
              name: string
    

    LoadBalancerRoutingPolicy Resource Properties

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

    Inputs

    The LoadBalancerRoutingPolicy resource accepts the following input properties:

    ConditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    LoadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    Rules List<LoadBalancerRoutingPolicyRule>
    (Updatable) The list of routing rules.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ConditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    LoadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    Rules []LoadBalancerRoutingPolicyRuleArgs
    (Updatable) The list of routing rules.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    conditionLanguageVersion String
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId String
    The OCID of the load balancer to add the routing policy rule list to.
    rules List<RoutingPolicyRule>
    (Updatable) The list of routing rules.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    conditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    rules LoadBalancerRoutingPolicyRule[]
    (Updatable) The list of routing rules.
    name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    condition_language_version str
    (Updatable) The version of the language in which condition of rules are composed.
    load_balancer_id str
    The OCID of the load balancer to add the routing policy rule list to.
    rules Sequence[loadbalancer.LoadBalancerRoutingPolicyRuleArgs]
    (Updatable) The list of routing rules.
    name str

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    conditionLanguageVersion String
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId String
    The OCID of the load balancer to add the routing policy rule list to.
    rules List<Property Map>
    (Updatable) The list of routing rules.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

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

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

    Look up Existing LoadBalancerRoutingPolicy Resource

    Get an existing LoadBalancerRoutingPolicy 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?: LoadBalancerRoutingPolicyState, opts?: CustomResourceOptions): LoadBalancerRoutingPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            condition_language_version: Optional[str] = None,
            load_balancer_id: Optional[str] = None,
            name: Optional[str] = None,
            rules: Optional[Sequence[_loadbalancer.LoadBalancerRoutingPolicyRuleArgs]] = None,
            state: Optional[str] = None) -> LoadBalancerRoutingPolicy
    func GetLoadBalancerRoutingPolicy(ctx *Context, name string, id IDInput, state *LoadBalancerRoutingPolicyState, opts ...ResourceOption) (*LoadBalancerRoutingPolicy, error)
    public static LoadBalancerRoutingPolicy Get(string name, Input<string> id, LoadBalancerRoutingPolicyState? state, CustomResourceOptions? opts = null)
    public static LoadBalancerRoutingPolicy get(String name, Output<String> id, LoadBalancerRoutingPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    ConditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    LoadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Rules List<LoadBalancerRoutingPolicyRule>
    (Updatable) The list of routing rules.
    State string
    ConditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    LoadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Rules []LoadBalancerRoutingPolicyRuleArgs
    (Updatable) The list of routing rules.
    State string
    conditionLanguageVersion String
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId String
    The OCID of the load balancer to add the routing policy rule list to.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    rules List<RoutingPolicyRule>
    (Updatable) The list of routing rules.
    state String
    conditionLanguageVersion string
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId string
    The OCID of the load balancer to add the routing policy rule list to.
    name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    rules LoadBalancerRoutingPolicyRule[]
    (Updatable) The list of routing rules.
    state string
    condition_language_version str
    (Updatable) The version of the language in which condition of rules are composed.
    load_balancer_id str
    The OCID of the load balancer to add the routing policy rule list to.
    name str

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    rules Sequence[loadbalancer.LoadBalancerRoutingPolicyRuleArgs]
    (Updatable) The list of routing rules.
    state str
    conditionLanguageVersion String
    (Updatable) The version of the language in which condition of rules are composed.
    loadBalancerId String
    The OCID of the load balancer to add the routing policy rule list to.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    rules List<Property Map>
    (Updatable) The list of routing rules.
    state String

    Supporting Types

    LoadBalancerRoutingPolicyRule, LoadBalancerRoutingPolicyRuleArgs

    Actions List<LoadBalancerRoutingPolicyRuleAction>
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    Condition string
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Actions []LoadBalancerRoutingPolicyRuleAction
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    Condition string
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    actions List<RoutingPolicyRuleAction>
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    condition String
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    actions LoadBalancerRoutingPolicyRuleAction[]
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    condition string
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    actions Sequence[loadbalancer.LoadBalancerRoutingPolicyRuleAction]
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    condition str
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    name str

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    actions List<Property Map>
    (Updatable) A list of actions to be applied when conditions of the routing rule are met.
    condition String
    (Updatable) A routing rule to evaluate defined conditions against the incoming HTTP request and perform an action.
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    LoadBalancerRoutingPolicyRuleAction, LoadBalancerRoutingPolicyRuleActionArgs

    BackendSetName string
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    BackendSetName string
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    Name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    backendSetName String
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    backendSetName string
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    name string

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    backend_set_name str
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    name str

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    backendSetName String
    (Updatable) Name of the backend set the listener will forward the traffic to. Example: backendSetForImages
    name String

    (Updatable) A unique name for the routing policy rule. Avoid entering confidential information.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Import

    LoadBalancerRoutingPolicies can be imported using the id, e.g.

    $ pulumi import oci:LoadBalancer/loadBalancerRoutingPolicy:LoadBalancerRoutingPolicy test_load_balancer_routing_policy "loadBalancers/{loadBalancerId}/routingPolicies/{routingPolicyName}"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi