oci logo
Oracle Cloud Infrastructure v0.12.0, Mar 17 23

oci.LoadBalancer.LoadBalancer

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

Creates a new load balancer in the specified compartment. For general information about load balancers, see Overview of the Load Balancing Service.

For the purposes of access control, you must provide the OCID of the compartment where you want the load balancer to reside. Notice that the load balancer doesn’t have to be in the same compartment as the VCN or backend set. If you’re not sure which compartment to use, put the load balancer in the same compartment as the VCN. For information about access control and compartments, see Overview of the IAM Service.

You must specify a display name for the load balancer. It does not have to be unique, and you can change it.

For information about Availability Domains, see Regions and Availability Domains. To get a list of Availability Domains, use the ListAvailabilityDomains operation in the Identity and Access Management Service API.

All Oracle Cloud Infrastructure resources, including load balancers, get an Oracle-assigned, unique ID called an Oracle Cloud Identifier (OCID). When you create a resource, you can find its OCID in the response. You can also retrieve a resource’s OCID by using a List API operation on that resource type, or by viewing the resource in the Console. Fore more information, see Resource Identifiers.

When you create a load balancer, the system assigns an IP address. To get the IP address, use the GetLoadBalancer operation.

Supported Aliases

  • oci_load_balancer

Example Usage

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testLoadBalancer = new Oci.LoadBalancer.LoadBalancer("testLoadBalancer", new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.Load_balancer_display_name,
        Shape = @var.Load_balancer_shape,
        SubnetIds = @var.Load_balancer_subnet_ids,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IpMode = @var.Load_balancer_ip_mode,
        IsPrivate = @var.Load_balancer_is_private,
        NetworkSecurityGroupIds = @var.Load_balancer_network_security_group_ids,
        ReservedIps = new[]
        {
            new Oci.LoadBalancer.Inputs.LoadBalancerReservedIpArgs
            {
                Id = @var.Load_balancer_reserved_ips_id,
            },
        },
        ShapeDetails = new Oci.LoadBalancer.Inputs.LoadBalancerShapeDetailsArgs
        {
            MaximumBandwidthInMbps = @var.Load_balancer_shape_details_maximum_bandwidth_in_mbps,
            MinimumBandwidthInMbps = @var.Load_balancer_shape_details_minimum_bandwidth_in_mbps,
        },
    });

});
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.NewLoadBalancer(ctx, "testLoadBalancer", &LoadBalancer.LoadBalancerArgs{
			CompartmentId: pulumi.Any(_var.Compartment_id),
			DisplayName:   pulumi.Any(_var.Load_balancer_display_name),
			Shape:         pulumi.Any(_var.Load_balancer_shape),
			SubnetIds:     pulumi.Any(_var.Load_balancer_subnet_ids),
			DefinedTags: pulumi.AnyMap{
				"Operations.CostCenter": pulumi.Any("42"),
			},
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
			IpMode:                  pulumi.Any(_var.Load_balancer_ip_mode),
			IsPrivate:               pulumi.Any(_var.Load_balancer_is_private),
			NetworkSecurityGroupIds: pulumi.Any(_var.Load_balancer_network_security_group_ids),
			ReservedIps: loadbalancer.LoadBalancerReservedIpArray{
				&loadbalancer.LoadBalancerReservedIpArgs{
					Id: pulumi.Any(_var.Load_balancer_reserved_ips_id),
				},
			},
			ShapeDetails: &loadbalancer.LoadBalancerShapeDetailsArgs{
				MaximumBandwidthInMbps: pulumi.Any(_var.Load_balancer_shape_details_maximum_bandwidth_in_mbps),
				MinimumBandwidthInMbps: pulumi.Any(_var.Load_balancer_shape_details_minimum_bandwidth_in_mbps),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LoadBalancer.LoadBalancer;
import com.pulumi.oci.LoadBalancer.LoadBalancerArgs;
import com.pulumi.oci.LoadBalancer.inputs.LoadBalancerReservedIpArgs;
import com.pulumi.oci.LoadBalancer.inputs.LoadBalancerShapeDetailsArgs;
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 testLoadBalancer = new LoadBalancer("testLoadBalancer", LoadBalancerArgs.builder()        
            .compartmentId(var_.compartment_id())
            .displayName(var_.load_balancer_display_name())
            .shape(var_.load_balancer_shape())
            .subnetIds(var_.load_balancer_subnet_ids())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .freeformTags(Map.of("Department", "Finance"))
            .ipMode(var_.load_balancer_ip_mode())
            .isPrivate(var_.load_balancer_is_private())
            .networkSecurityGroupIds(var_.load_balancer_network_security_group_ids())
            .reservedIps(LoadBalancerReservedIpArgs.builder()
                .id(var_.load_balancer_reserved_ips_id())
                .build())
            .shapeDetails(LoadBalancerShapeDetailsArgs.builder()
                .maximumBandwidthInMbps(var_.load_balancer_shape_details_maximum_bandwidth_in_mbps())
                .minimumBandwidthInMbps(var_.load_balancer_shape_details_minimum_bandwidth_in_mbps())
                .build())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_load_balancer = oci.load_balancer.LoadBalancer("testLoadBalancer",
    compartment_id=var["compartment_id"],
    display_name=var["load_balancer_display_name"],
    shape=var["load_balancer_shape"],
    subnet_ids=var["load_balancer_subnet_ids"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    freeform_tags={
        "Department": "Finance",
    },
    ip_mode=var["load_balancer_ip_mode"],
    is_private=var["load_balancer_is_private"],
    network_security_group_ids=var["load_balancer_network_security_group_ids"],
    reserved_ips=[oci.load_balancer.LoadBalancerReservedIpArgs(
        id=var["load_balancer_reserved_ips_id"],
    )],
    shape_details=oci.load_balancer.LoadBalancerShapeDetailsArgs(
        maximum_bandwidth_in_mbps=var["load_balancer_shape_details_maximum_bandwidth_in_mbps"],
        minimum_bandwidth_in_mbps=var["load_balancer_shape_details_minimum_bandwidth_in_mbps"],
    ))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testLoadBalancer = new oci.loadbalancer.LoadBalancer("testLoadBalancer", {
    compartmentId: _var.compartment_id,
    displayName: _var.load_balancer_display_name,
    shape: _var.load_balancer_shape,
    subnetIds: _var.load_balancer_subnet_ids,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    freeformTags: {
        Department: "Finance",
    },
    ipMode: _var.load_balancer_ip_mode,
    isPrivate: _var.load_balancer_is_private,
    networkSecurityGroupIds: _var.load_balancer_network_security_group_ids,
    reservedIps: [{
        id: _var.load_balancer_reserved_ips_id,
    }],
    shapeDetails: {
        maximumBandwidthInMbps: _var.load_balancer_shape_details_maximum_bandwidth_in_mbps,
        minimumBandwidthInMbps: _var.load_balancer_shape_details_minimum_bandwidth_in_mbps,
    },
});
resources:
  testLoadBalancer:
    type: oci:LoadBalancer:LoadBalancer
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      displayName: ${var.load_balancer_display_name}
      shape: ${var.load_balancer_shape}
      subnetIds: ${var.load_balancer_subnet_ids}
      #Optional
      definedTags:
        Operations.CostCenter: '42'
      freeformTags:
        Department: Finance
      ipMode: ${var.load_balancer_ip_mode}
      isPrivate: ${var.load_balancer_is_private}
      networkSecurityGroupIds: ${var.load_balancer_network_security_group_ids}
      reservedIps:
        - id: ${var.load_balancer_reserved_ips_id}
      shapeDetails:
        maximumBandwidthInMbps: ${var.load_balancer_shape_details_maximum_bandwidth_in_mbps}
        minimumBandwidthInMbps: ${var.load_balancer_shape_details_minimum_bandwidth_in_mbps}

Create LoadBalancer Resource

new LoadBalancer(name: string, args: LoadBalancerArgs, opts?: CustomResourceOptions);
@overload
def LoadBalancer(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 compartment_id: Optional[str] = None,
                 defined_tags: Optional[Mapping[str, Any]] = None,
                 display_name: Optional[str] = None,
                 freeform_tags: Optional[Mapping[str, Any]] = None,
                 ip_mode: Optional[str] = None,
                 is_private: Optional[bool] = None,
                 network_security_group_ids: Optional[Sequence[str]] = None,
                 reserved_ips: Optional[Sequence[_loadbalancer.LoadBalancerReservedIpArgs]] = None,
                 shape: Optional[str] = None,
                 shape_details: Optional[_loadbalancer.LoadBalancerShapeDetailsArgs] = None,
                 subnet_ids: Optional[Sequence[str]] = None)
@overload
def LoadBalancer(resource_name: str,
                 args: LoadBalancerArgs,
                 opts: Optional[ResourceOptions] = None)
func NewLoadBalancer(ctx *Context, name string, args LoadBalancerArgs, opts ...ResourceOption) (*LoadBalancer, error)
public LoadBalancer(string name, LoadBalancerArgs args, CustomResourceOptions? opts = null)
public LoadBalancer(String name, LoadBalancerArgs args)
public LoadBalancer(String name, LoadBalancerArgs args, CustomResourceOptions options)
type: oci:LoadBalancer:LoadBalancer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args LoadBalancerArgs
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 LoadBalancerArgs
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 LoadBalancerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args LoadBalancerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args LoadBalancerArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

CompartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

DisplayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

Shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

SubnetIds List<string>

An array of subnet OCIDs.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IpMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

IsPrivate bool

Whether the load balancer has a VCN-local (private) IP address.

NetworkSecurityGroupIds List<string>

(Updatable) An array of NSG OCIDs associated with this load balancer.

ReservedIps List<LoadBalancerReservedIpArgs>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ShapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

CompartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

DisplayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

Shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

SubnetIds []string

An array of subnet OCIDs.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IpMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

IsPrivate bool

Whether the load balancer has a VCN-local (private) IP address.

NetworkSecurityGroupIds []string

(Updatable) An array of NSG OCIDs associated with this load balancer.

ReservedIps []LoadBalancerReservedIpArgs

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ShapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

compartmentId String

(Updatable) The OCID of the compartment in which to create the load balancer.

displayName String

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

shape String

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

subnetIds List<String>

An array of subnet OCIDs.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipMode String

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate Boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds List<String>

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps List<ReservedIpArgs>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shapeDetails ShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

compartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

displayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

subnetIds string[]

An array of subnet OCIDs.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds string[]

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps LoadBalancerReservedIpArgs[]

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

compartment_id str

(Updatable) The OCID of the compartment in which to create the load balancer.

display_name str

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

shape str

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

subnet_ids Sequence[str]

An array of subnet OCIDs.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ip_mode str

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

is_private bool

Whether the load balancer has a VCN-local (private) IP address.

network_security_group_ids Sequence[str]

(Updatable) An array of NSG OCIDs associated with this load balancer.

reserved_ips LoadBalancerReservedIpArgs]

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shape_details LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

compartmentId String

(Updatable) The OCID of the compartment in which to create the load balancer.

displayName String

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

shape String

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

subnetIds List<String>

An array of subnet OCIDs.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipMode String

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate Boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds List<String>

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps List<Property Map>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shapeDetails Property Map

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

IpAddressDetails List<LoadBalancerIpAddressDetail>

An array of IP addresses.

IpAddresses List<string>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

State string

The current state of the load balancer.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Id string

The provider-assigned unique ID for this managed resource.

IpAddressDetails []LoadBalancerIpAddressDetail

An array of IP addresses.

IpAddresses []string

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

State string

The current state of the load balancer.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

id String

The provider-assigned unique ID for this managed resource.

ipAddressDetails List<IpAddressDetail>

An array of IP addresses.

ipAddresses List<String>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

state String

The current state of the load balancer.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

id string

The provider-assigned unique ID for this managed resource.

ipAddressDetails LoadBalancerIpAddressDetail[]

An array of IP addresses.

ipAddresses string[]

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

state string

The current state of the load balancer.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

id str

The provider-assigned unique ID for this managed resource.

ip_address_details LoadBalancerIpAddressDetail]

An array of IP addresses.

ip_addresses Sequence[str]

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

state str

The current state of the load balancer.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

time_created str

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

id String

The provider-assigned unique ID for this managed resource.

ipAddressDetails List<Property Map>

An array of IP addresses.

ipAddresses List<String>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

state String

The current state of the load balancer.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Look up Existing LoadBalancer Resource

Get an existing LoadBalancer 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?: LoadBalancerState, opts?: CustomResourceOptions): LoadBalancer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        ip_address_details: Optional[Sequence[_loadbalancer.LoadBalancerIpAddressDetailArgs]] = None,
        ip_addresses: Optional[Sequence[str]] = None,
        ip_mode: Optional[str] = None,
        is_private: Optional[bool] = None,
        network_security_group_ids: Optional[Sequence[str]] = None,
        reserved_ips: Optional[Sequence[_loadbalancer.LoadBalancerReservedIpArgs]] = None,
        shape: Optional[str] = None,
        shape_details: Optional[_loadbalancer.LoadBalancerShapeDetailsArgs] = None,
        state: Optional[str] = None,
        subnet_ids: Optional[Sequence[str]] = None,
        system_tags: Optional[Mapping[str, Any]] = None,
        time_created: Optional[str] = None) -> LoadBalancer
func GetLoadBalancer(ctx *Context, name string, id IDInput, state *LoadBalancerState, opts ...ResourceOption) (*LoadBalancer, error)
public static LoadBalancer Get(string name, Input<string> id, LoadBalancerState? state, CustomResourceOptions? opts = null)
public static LoadBalancer get(String name, Output<String> id, LoadBalancerState 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:
CompartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IpAddressDetails List<LoadBalancerIpAddressDetailArgs>

An array of IP addresses.

IpAddresses List<string>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

IpMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

IsPrivate bool

Whether the load balancer has a VCN-local (private) IP address.

NetworkSecurityGroupIds List<string>

(Updatable) An array of NSG OCIDs associated with this load balancer.

ReservedIps List<LoadBalancerReservedIpArgs>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

Shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

ShapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

State string

The current state of the load balancer.

SubnetIds List<string>

An array of subnet OCIDs.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

CompartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

DisplayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IpAddressDetails []LoadBalancerIpAddressDetailArgs

An array of IP addresses.

IpAddresses []string

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

IpMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

IsPrivate bool

Whether the load balancer has a VCN-local (private) IP address.

NetworkSecurityGroupIds []string

(Updatable) An array of NSG OCIDs associated with this load balancer.

ReservedIps []LoadBalancerReservedIpArgs

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

Shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

ShapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

State string

The current state of the load balancer.

SubnetIds []string

An array of subnet OCIDs.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

(Updatable) The OCID of the compartment in which to create the load balancer.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipAddressDetails List<IpAddressDetailArgs>

An array of IP addresses.

ipAddresses List<String>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

ipMode String

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate Boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds List<String>

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps List<ReservedIpArgs>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shape String

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

shapeDetails ShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

state String

The current state of the load balancer.

subnetIds List<String>

An array of subnet OCIDs.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId string

(Updatable) The OCID of the compartment in which to create the load balancer.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName string

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipAddressDetails LoadBalancerIpAddressDetailArgs[]

An array of IP addresses.

ipAddresses string[]

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

ipMode string

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds string[]

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps LoadBalancerReservedIpArgs[]

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shape string

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

shapeDetails LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

state string

The current state of the load balancer.

subnetIds string[]

An array of subnet OCIDs.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated string

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartment_id str

(Updatable) The OCID of the compartment in which to create the load balancer.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

display_name str

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ip_address_details LoadBalancerIpAddressDetailArgs]

An array of IP addresses.

ip_addresses Sequence[str]

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

ip_mode str

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

is_private bool

Whether the load balancer has a VCN-local (private) IP address.

network_security_group_ids Sequence[str]

(Updatable) An array of NSG OCIDs associated with this load balancer.

reserved_ips LoadBalancerReservedIpArgs]

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shape str

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

shape_details LoadBalancerShapeDetailsArgs

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

state str

The current state of the load balancer.

subnet_ids Sequence[str]

An array of subnet OCIDs.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

time_created str

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

compartmentId String

(Updatable) The OCID of the compartment in which to create the load balancer.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

displayName String

(Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: example_load_balancer

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ipAddressDetails List<Property Map>

An array of IP addresses.

ipAddresses List<String>

An array of IP addresses. Deprecated: use ip_address_details instead

Deprecated:

The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.

ipMode String

IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.

isPrivate Boolean

Whether the load balancer has a VCN-local (private) IP address.

networkSecurityGroupIds List<String>

(Updatable) An array of NSG OCIDs associated with this load balancer.

reservedIps List<Property Map>

An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

shape String

(Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the ListShapes operation. Example: 100Mbps *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also 10Mbps-Micro shape cannot be updated to any other shape nor can any other shape be updated to 10Mbps-Micro.

shapeDetails Property Map

(Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is Flexible.

state String

The current state of the load balancer.

subnetIds List<String>

An array of subnet OCIDs.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the load balancer was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Supporting Types

LoadBalancerIpAddressDetail

IpAddress string

An IP address. Example: 192.168.0.3

IsPublic bool

Whether the IP address is public or private.

ReservedIps List<LoadBalancerIpAddressDetailReservedIp>

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

IpAddress string

An IP address. Example: 192.168.0.3

IsPublic bool

Whether the IP address is public or private.

ReservedIps []LoadBalancerIpAddressDetailReservedIp

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ipAddress String

An IP address. Example: 192.168.0.3

isPublic Boolean

Whether the IP address is public or private.

reservedIps List<IpAddressDetailReservedIp>

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ipAddress string

An IP address. Example: 192.168.0.3

isPublic boolean

Whether the IP address is public or private.

reservedIps LoadBalancerIpAddressDetailReservedIp[]

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ip_address str

An IP address. Example: 192.168.0.3

is_public bool

Whether the IP address is public or private.

reserved_ips LoadBalancerIpAddressDetailReservedIp]

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

ipAddress String

An IP address. Example: 192.168.0.3

isPublic Boolean

Whether the IP address is public or private.

reservedIps List<Property Map>

Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.

LoadBalancerIpAddressDetailReservedIp

Id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

Id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id String

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id str

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id String

Ocid of the pre-created public IP. That should be attahed to this load balancer.

LoadBalancerReservedIp

Id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

Id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id String

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id string

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id str

Ocid of the pre-created public IP. That should be attahed to this load balancer.

id String

Ocid of the pre-created public IP. That should be attahed to this load balancer.

LoadBalancerShapeDetails

MaximumBandwidthInMbps int

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

MinimumBandwidthInMbps int

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

MaximumBandwidthInMbps int

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

MinimumBandwidthInMbps int

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

maximumBandwidthInMbps Integer

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

minimumBandwidthInMbps Integer

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

maximumBandwidthInMbps number

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

minimumBandwidthInMbps number

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

maximum_bandwidth_in_mbps int

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

minimum_bandwidth_in_mbps int

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

maximumBandwidthInMbps Number

(Updatable) Bandwidth in Mbps that determines the maximum bandwidth (ingress plus egress) that the load balancer can achieve. This bandwidth cannot be always guaranteed. For a guaranteed bandwidth use the minimumBandwidthInMbps parameter.

minimumBandwidthInMbps Number

(Updatable) Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 10 and the maximumBandwidthInMbps. Example: 150

Import

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

 $ pulumi import oci:LoadBalancer/loadBalancer:LoadBalancer test_load_balancer "id"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.