Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.NetworkLoadBalancer.getNetworkLoadBalancers
Explore with Pulumi AI
This data source provides the list of Network Load Balancers in Oracle Cloud Infrastructure Network Load Balancer service.
Returns a list of network load balancers.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNetworkLoadBalancers = oci.NetworkLoadBalancer.getNetworkLoadBalancers({
compartmentId: compartmentId,
displayName: networkLoadBalancerDisplayName,
state: networkLoadBalancerState,
});
import pulumi
import pulumi_oci as oci
test_network_load_balancers = oci.NetworkLoadBalancer.get_network_load_balancers(compartment_id=compartment_id,
display_name=network_load_balancer_display_name,
state=network_load_balancer_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/NetworkLoadBalancer"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := NetworkLoadBalancer.GetNetworkLoadBalancers(ctx, &networkloadbalancer.GetNetworkLoadBalancersArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(networkLoadBalancerDisplayName),
State: pulumi.StringRef(networkLoadBalancerState),
}, nil)
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 testNetworkLoadBalancers = Oci.NetworkLoadBalancer.GetNetworkLoadBalancers.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = networkLoadBalancerDisplayName,
State = networkLoadBalancerState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.NetworkLoadBalancer.NetworkLoadBalancerFunctions;
import com.pulumi.oci.NetworkLoadBalancer.inputs.GetNetworkLoadBalancersArgs;
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 testNetworkLoadBalancers = NetworkLoadBalancerFunctions.getNetworkLoadBalancers(GetNetworkLoadBalancersArgs.builder()
.compartmentId(compartmentId)
.displayName(networkLoadBalancerDisplayName)
.state(networkLoadBalancerState)
.build());
}
}
variables:
testNetworkLoadBalancers:
fn::invoke:
Function: oci:NetworkLoadBalancer:getNetworkLoadBalancers
Arguments:
compartmentId: ${compartmentId}
displayName: ${networkLoadBalancerDisplayName}
state: ${networkLoadBalancerState}
Using getNetworkLoadBalancers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getNetworkLoadBalancers(args: GetNetworkLoadBalancersArgs, opts?: InvokeOptions): Promise<GetNetworkLoadBalancersResult>
function getNetworkLoadBalancersOutput(args: GetNetworkLoadBalancersOutputArgs, opts?: InvokeOptions): Output<GetNetworkLoadBalancersResult>
def get_network_load_balancers(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_networkloadbalancer.GetNetworkLoadBalancersFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNetworkLoadBalancersResult
def get_network_load_balancers_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_networkloadbalancer.GetNetworkLoadBalancersFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNetworkLoadBalancersResult]
func GetNetworkLoadBalancers(ctx *Context, args *GetNetworkLoadBalancersArgs, opts ...InvokeOption) (*GetNetworkLoadBalancersResult, error)
func GetNetworkLoadBalancersOutput(ctx *Context, args *GetNetworkLoadBalancersOutputArgs, opts ...InvokeOption) GetNetworkLoadBalancersResultOutput
> Note: This function is named GetNetworkLoadBalancers
in the Go SDK.
public static class GetNetworkLoadBalancers
{
public static Task<GetNetworkLoadBalancersResult> InvokeAsync(GetNetworkLoadBalancersArgs args, InvokeOptions? opts = null)
public static Output<GetNetworkLoadBalancersResult> Invoke(GetNetworkLoadBalancersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNetworkLoadBalancersResult> getNetworkLoadBalancers(GetNetworkLoadBalancersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:NetworkLoadBalancer/getNetworkLoadBalancers:getNetworkLoadBalancers
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Network Load Balancers Filter> - State string
- A filter to return only resources that match the given lifecycle state.
- Compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Network Load Balancers Filter - State string
- A filter to return only resources that match the given lifecycle state.
- compartment
Id String - The OCID of the compartment containing the network load balancers to list.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Gets
Filter> - state String
- A filter to return only resources that match the given lifecycle state.
- compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Network Load Balancers Filter[] - state string
- A filter to return only resources that match the given lifecycle state.
- compartment_
id str - The OCID of the compartment containing the network load balancers to list.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[networkloadbalancer.
Get Network Load Balancers Filter] - state str
- A filter to return only resources that match the given lifecycle state.
- compartment
Id String - The OCID of the compartment containing the network load balancers to list.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- state String
- A filter to return only resources that match the given lifecycle state.
getNetworkLoadBalancers Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment containing the network load balancer.
- Id string
- The provider-assigned unique ID for this managed resource.
- Network
Load List<GetBalancer Collections Network Load Balancers Network Load Balancer Collection> - The list of network_load_balancer_collection.
- Display
Name string - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- Filters
List<Get
Network Load Balancers Filter> - State string
- The current state of the network load balancer.
- Compartment
Id string - The OCID of the compartment containing the network load balancer.
- Id string
- The provider-assigned unique ID for this managed resource.
- Network
Load []GetBalancer Collections Network Load Balancers Network Load Balancer Collection - The list of network_load_balancer_collection.
- Display
Name string - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- Filters
[]Get
Network Load Balancers Filter - State string
- The current state of the network load balancer.
- compartment
Id String - The OCID of the compartment containing the network load balancer.
- id String
- The provider-assigned unique ID for this managed resource.
- network
Load List<GetsBalancer Collections Collection> - The list of network_load_balancer_collection.
- display
Name String - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- filters
List<Gets
Filter> - state String
- The current state of the network load balancer.
- compartment
Id string - The OCID of the compartment containing the network load balancer.
- id string
- The provider-assigned unique ID for this managed resource.
- network
Load GetBalancer Collections Network Load Balancers Network Load Balancer Collection[] - The list of network_load_balancer_collection.
- display
Name string - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- filters
Get
Network Load Balancers Filter[] - state string
- The current state of the network load balancer.
- compartment_
id str - The OCID of the compartment containing the network load balancer.
- id str
- The provider-assigned unique ID for this managed resource.
- network_
load_ Sequence[networkloadbalancer.balancer_ collections Get Network Load Balancers Network Load Balancer Collection] - The list of network_load_balancer_collection.
- display_
name str - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- filters
Sequence[networkloadbalancer.
Get Network Load Balancers Filter] - state str
- The current state of the network load balancer.
- compartment
Id String - The OCID of the compartment containing the network load balancer.
- id String
- The provider-assigned unique ID for this managed resource.
- network
Load List<Property Map>Balancer Collections - The list of network_load_balancer_collection.
- display
Name String - A user-friendly name, which does not have to be unique, and can be changed. Example:
example_load_balancer
- filters List<Property Map>
- state String
- The current state of the network load balancer.
Supporting Types
GetNetworkLoadBalancersFilter
GetNetworkLoadBalancersNetworkLoadBalancerCollection
GetNetworkLoadBalancersNetworkLoadBalancerCollectionItem
- Assigned
Ipv6 string - Assigned
Private stringIpv4 - Compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- Dictionary<string, string>
- 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 string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- 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"}
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- Ip
Addresses List<GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address> - An array of IP addresses.
- Is
Preserve boolSource Destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- Is
Private bool - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- Is
Symmetric boolHash Enabled - Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Network
Security List<string>Group Ids - An array of network security groups OCIDs associated with the network load balancer.
- Nlb
Ip stringVersion - IP version associated with the NLB.
- Reserved
Ips List<GetNetwork Load Balancers Network Load Balancer Collection Item Reserved Ip> - State string
- A filter to return only resources that match the given lifecycle state.
- Subnet
Id string - The subnet in which the network load balancer is spawned OCIDs."
- Subnet
Ipv6cidr string - Dictionary<string, string>
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- Time
Created string - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- Time
Updated string - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
- Assigned
Ipv6 string - Assigned
Private stringIpv4 - Compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- map[string]string
- 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 string - A filter to return only resources that match the entire display name given.
- map[string]string
- 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"}
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- Ip
Addresses []GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address - An array of IP addresses.
- Is
Preserve boolSource Destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- Is
Private bool - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- Is
Symmetric boolHash Enabled - Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Network
Security []stringGroup Ids - An array of network security groups OCIDs associated with the network load balancer.
- Nlb
Ip stringVersion - IP version associated with the NLB.
- Reserved
Ips []GetNetwork Load Balancers Network Load Balancer Collection Item Reserved Ip - State string
- A filter to return only resources that match the given lifecycle state.
- Subnet
Id string - The subnet in which the network load balancer is spawned OCIDs."
- Subnet
Ipv6cidr string - map[string]string
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- Time
Created string - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- Time
Updated string - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
- assigned
Ipv6 String - assigned
Private StringIpv4 - compartment
Id String - The OCID of the compartment containing the network load balancers to list.
- Map<String,String>
- 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 String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- 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"}
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
- ip
Addresses List<GetsCollection Item Ip Address> - An array of IP addresses.
- is
Preserve BooleanSource Destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- is
Private Boolean - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- is
Symmetric BooleanHash Enabled - lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- network
Security List<String>Group Ids - An array of network security groups OCIDs associated with the network load balancer.
- nlb
Ip StringVersion - IP version associated with the NLB.
- reserved
Ips List<GetsCollection Item Reserved Ip> - state String
- A filter to return only resources that match the given lifecycle state.
- subnet
Id String - The subnet in which the network load balancer is spawned OCIDs."
- subnet
Ipv6cidr String - Map<String,String>
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- time
Created String - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- time
Updated String - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
- assigned
Ipv6 string - assigned
Private stringIpv4 - compartment
Id string - The OCID of the compartment containing the network load balancers to list.
- {[key: string]: string}
- 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 string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- 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"}
- id string
- OCID of the reserved public IP address created with the virtual cloud network.
- ip
Addresses GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address[] - An array of IP addresses.
- is
Preserve booleanSource Destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- is
Private boolean - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- is
Symmetric booleanHash Enabled - lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- network
Security string[]Group Ids - An array of network security groups OCIDs associated with the network load balancer.
- nlb
Ip stringVersion - IP version associated with the NLB.
- reserved
Ips GetNetwork Load Balancers Network Load Balancer Collection Item Reserved Ip[] - state string
- A filter to return only resources that match the given lifecycle state.
- subnet
Id string - The subnet in which the network load balancer is spawned OCIDs."
- subnet
Ipv6cidr string - {[key: string]: string}
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- time
Created string - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- time
Updated string - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
- assigned_
ipv6 str - assigned_
private_ stripv4 - compartment_
id str - The OCID of the compartment containing the network load balancers to list.
- Mapping[str, str]
- 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 - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- 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"}
- id str
- OCID of the reserved public IP address created with the virtual cloud network.
- ip_
addresses Sequence[networkloadbalancer.Get Network Load Balancers Network Load Balancer Collection Item Ip Address] - An array of IP addresses.
- is_
preserve_ boolsource_ destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- is_
private bool - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- is_
symmetric_ boolhash_ enabled - lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- network_
security_ Sequence[str]group_ ids - An array of network security groups OCIDs associated with the network load balancer.
- nlb_
ip_ strversion - IP version associated with the NLB.
- reserved_
ips Sequence[networkloadbalancer.Get Network Load Balancers Network Load Balancer Collection Item Reserved Ip] - state str
- A filter to return only resources that match the given lifecycle state.
- subnet_
id str - The subnet in which the network load balancer is spawned OCIDs."
- subnet_
ipv6cidr str - Mapping[str, str]
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- time_
created str - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- time_
updated str - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
- assigned
Ipv6 String - assigned
Private StringIpv4 - compartment
Id String - The OCID of the compartment containing the network load balancers to list.
- Map<String>
- 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 String - A filter to return only resources that match the entire display name given.
- Map<String>
- 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"}
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
- ip
Addresses List<Property Map> - An array of IP addresses.
- is
Preserve BooleanSource Destination - When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.
- is
Private Boolean - Whether the network load balancer has a virtual cloud network-local (private) IP address.
- is
Symmetric BooleanHash Enabled - lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- network
Security List<String>Group Ids - An array of network security groups OCIDs associated with the network load balancer.
- nlb
Ip StringVersion - IP version associated with the NLB.
- reserved
Ips List<Property Map> - state String
- A filter to return only resources that match the given lifecycle state.
- subnet
Id String - The subnet in which the network load balancer is spawned OCIDs."
- subnet
Ipv6cidr String - Map<String>
- Key-value pair representing system tags' keys and values scoped to a namespace. Example:
{"bar-key": "value"}
- time
Created String - The date and time the network load balancer was created, in the format defined by RFC3339. Example:
2020-05-01T21:10:29.600Z
- time
Updated String - The time the network load balancer was updated. An RFC3339 formatted date-time string. Example:
2020-05-01T22:10:29.600Z
GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddress
- Ip
Address string - An IP address. Example:
192.168.0.3
- Ip
Version string - IP version associated with the listener.
- Is
Public bool - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- Reserved
Ips List<GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address Reserved Ip> - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
- Ip
Address string - An IP address. Example:
192.168.0.3
- Ip
Version string - IP version associated with the listener.
- Is
Public bool - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- Reserved
Ips []GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address Reserved Ip - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
- ip
Address String - An IP address. Example:
192.168.0.3
- ip
Version String - IP version associated with the listener.
- is
Public Boolean - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- reserved
Ips List<GetsCollection Item Ip Address Reserved Ip> - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
- ip
Address string - An IP address. Example:
192.168.0.3
- ip
Version string - IP version associated with the listener.
- is
Public boolean - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- reserved
Ips GetNetwork Load Balancers Network Load Balancer Collection Item Ip Address Reserved Ip[] - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
- ip_
address str - An IP address. Example:
192.168.0.3
- ip_
version str - IP version associated with the listener.
- is_
public bool - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- reserved_
ips Sequence[networkloadbalancer.Get Network Load Balancers Network Load Balancer Collection Item Ip Address Reserved Ip] - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
- ip
Address String - An IP address. Example:
192.168.0.3
- ip
Version String - IP version associated with the listener.
- is
Public Boolean - Whether the IP address is public or private. If "true", then the IP address is public and accessible from the internet.
- reserved
Ips List<Property Map> - An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemIpAddressReservedIp
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
- id string
- OCID of the reserved public IP address created with the virtual cloud network.
- id str
- OCID of the reserved public IP address created with the virtual cloud network.
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemReservedIp
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- Id string
- OCID of the reserved public IP address created with the virtual cloud network.
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
- id string
- OCID of the reserved public IP address created with the virtual cloud network.
- id str
- OCID of the reserved public IP address created with the virtual cloud network.
- id String
- OCID of the reserved public IP address created with the virtual cloud network.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.