oci.LoadBalancer.getLoadBalancers
Explore with Pulumi AI
This data source provides the list of Load Balancers in Oracle Cloud Infrastructure Load Balancer service.
Lists all load balancers in the specified compartment.
Supported Aliases
oci_load_balancers
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testLoadBalancers = Oci.LoadBalancer.GetLoadBalancers.Invoke(new()
{
CompartmentId = @var.Compartment_id,
Detail = @var.Load_balancer_detail,
DisplayName = @var.Load_balancer_display_name,
State = @var.Load_balancer_state,
});
});
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.GetLoadBalancers(ctx, &loadbalancer.GetLoadBalancersArgs{
CompartmentId: _var.Compartment_id,
Detail: pulumi.StringRef(_var.Load_balancer_detail),
DisplayName: pulumi.StringRef(_var.Load_balancer_display_name),
State: pulumi.StringRef(_var.Load_balancer_state),
}, nil)
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.LoadBalancerFunctions;
import com.pulumi.oci.LoadBalancer.inputs.GetLoadBalancersArgs;
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 testLoadBalancers = LoadBalancerFunctions.getLoadBalancers(GetLoadBalancersArgs.builder()
.compartmentId(var_.compartment_id())
.detail(var_.load_balancer_detail())
.displayName(var_.load_balancer_display_name())
.state(var_.load_balancer_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_load_balancers = oci.LoadBalancer.get_load_balancers(compartment_id=var["compartment_id"],
detail=var["load_balancer_detail"],
display_name=var["load_balancer_display_name"],
state=var["load_balancer_state"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testLoadBalancers = oci.LoadBalancer.getLoadBalancers({
compartmentId: _var.compartment_id,
detail: _var.load_balancer_detail,
displayName: _var.load_balancer_display_name,
state: _var.load_balancer_state,
});
variables:
testLoadBalancers:
fn::invoke:
Function: oci:LoadBalancer:getLoadBalancers
Arguments:
compartmentId: ${var.compartment_id}
detail: ${var.load_balancer_detail}
displayName: ${var.load_balancer_display_name}
state: ${var.load_balancer_state}
Using getLoadBalancers
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 getLoadBalancers(args: GetLoadBalancersArgs, opts?: InvokeOptions): Promise<GetLoadBalancersResult>
function getLoadBalancersOutput(args: GetLoadBalancersOutputArgs, opts?: InvokeOptions): Output<GetLoadBalancersResult>
def get_load_balancers(compartment_id: Optional[str] = None,
detail: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_loadbalancer.GetLoadBalancersFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLoadBalancersResult
def get_load_balancers_output(compartment_id: Optional[pulumi.Input[str]] = None,
detail: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_loadbalancer.GetLoadBalancersFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLoadBalancersResult]
func GetLoadBalancers(ctx *Context, args *GetLoadBalancersArgs, opts ...InvokeOption) (*GetLoadBalancersResult, error)
func GetLoadBalancersOutput(ctx *Context, args *GetLoadBalancersOutputArgs, opts ...InvokeOption) GetLoadBalancersResultOutput
> Note: This function is named GetLoadBalancers
in the Go SDK.
public static class GetLoadBalancers
{
public static Task<GetLoadBalancersResult> InvokeAsync(GetLoadBalancersArgs args, InvokeOptions? opts = null)
public static Output<GetLoadBalancersResult> Invoke(GetLoadBalancersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLoadBalancersResult> getLoadBalancers(GetLoadBalancersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:LoadBalancer/getLoadBalancers:getLoadBalancers
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string The OCID of the compartment containing the load balancers to list.
- Detail string
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- Display
Name string A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- Filters
List<Get
Load Balancers Filter> - State string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- Compartment
Id string The OCID of the compartment containing the load balancers to list.
- Detail string
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- Display
Name string A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- Filters
[]Get
Load Balancers Filter - State string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- compartment
Id String The OCID of the compartment containing the load balancers to list.
- detail String
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- display
Name String A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- filters
List<Gets
Filter> - state String
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- compartment
Id string The OCID of the compartment containing the load balancers to list.
- detail string
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- display
Name string A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- filters
Get
Load Balancers Filter[] - state string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- compartment_
id str The OCID of the compartment containing the load balancers to list.
- detail str
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- display_
name str A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- filters
Get
Load Balancers Filter] - state str
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- compartment
Id String The OCID of the compartment containing the load balancers to list.
- detail String
The level of detail to return for each result. Can be
full
orsimple
. Example:full
- display
Name String A filter to return only resources that match the given display name exactly. Example:
example_load_balancer
- filters List<Property Map>
- state String
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
getLoadBalancers Result
The following output properties are available:
- Compartment
Id string The OCID of the compartment containing the load balancer.
- Id string
The provider-assigned unique ID for this managed resource.
- Load
Balancers List<GetLoad Balancers Load Balancer> The list of load_balancers.
- Detail string
- Display
Name string A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- Filters
List<Get
Load Balancers Filter> - State string
The current state of the load balancer.
- Compartment
Id string The OCID of the compartment containing the load balancer.
- Id string
The provider-assigned unique ID for this managed resource.
- Load
Balancers []GetLoad Balancers Load Balancer The list of load_balancers.
- Detail string
- Display
Name string A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- Filters
[]Get
Load Balancers Filter - State string
The current state of the load balancer.
- compartment
Id String The OCID of the compartment containing the load balancer.
- id String
The provider-assigned unique ID for this managed resource.
- load
Balancers List<Gets> The list of load_balancers.
- detail String
- display
Name String A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- filters
List<Gets
Filter> - state String
The current state of the load balancer.
- compartment
Id string The OCID of the compartment containing the load balancer.
- id string
The provider-assigned unique ID for this managed resource.
- load
Balancers GetLoad Balancers Load Balancer[] The list of load_balancers.
- detail string
- display
Name string A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- filters
Get
Load Balancers Filter[] - state string
The current state of the load balancer.
- compartment_
id str The OCID of the compartment containing the load balancer.
- id str
The provider-assigned unique ID for this managed resource.
- load_
balancers GetLoad Balancers Load Balancer] The list of load_balancers.
- detail str
- display_
name str A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- filters
Get
Load Balancers Filter] - state str
The current state of the load balancer.
- compartment
Id String The OCID of the compartment containing the load balancer.
- id String
The provider-assigned unique ID for this managed resource.
- load
Balancers List<Property Map> The list of load_balancers.
- detail String
- display
Name String A user-friendly name. It does not have to be unique, and it is changeable. Example:
example_load_balancer
- filters List<Property Map>
- state String
The current state of the load balancer.
Supporting Types
GetLoadBalancersFilter
GetLoadBalancersLoadBalancer
- Compartment
Id string The OCID of the compartment containing the load balancers to list.
- Dictionary<string, object>
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 given display name exactly. Example:
example_load_balancer
- Dictionary<string, object>
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 pre-created public IP. That should be attahed to this load balancer.
- Ip
Address List<GetDetails Load Balancers Load Balancer Ip Address Detail> An array of IP addresses.
- Ip
Addresses List<string> An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- Ip
Mode string - Is
Private bool Whether the load balancer has a VCN-local (private) IP address.
- Network
Security List<string>Group Ids An array of NSG OCIDs associated with the load balancer.
- Reserved
Ips List<GetLoad Balancers Load Balancer Reserved Ip> - Shape string
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
- Shape
Details List<GetLoad Balancers Load Balancer Shape Detail> The configuration details to update load balancer to a different shape.
- State string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- Subnet
Ids List<string> An array of subnet OCIDs.
- 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"}
- Time
Created 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 string The OCID of the compartment containing the load balancers to list.
- map[string]interface{}
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 given display name exactly. Example:
example_load_balancer
- map[string]interface{}
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 pre-created public IP. That should be attahed to this load balancer.
- Ip
Address []GetDetails Load Balancers Load Balancer Ip Address Detail An array of IP addresses.
- Ip
Addresses []string An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- Ip
Mode string - Is
Private bool Whether the load balancer has a VCN-local (private) IP address.
- Network
Security []stringGroup Ids An array of NSG OCIDs associated with the load balancer.
- Reserved
Ips []GetLoad Balancers Load Balancer Reserved Ip - Shape string
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
- Shape
Details []GetLoad Balancers Load Balancer Shape Detail The configuration details to update load balancer to a different shape.
- State string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- Subnet
Ids []string An array of subnet OCIDs.
- 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"}
- Time
Created 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 String The OCID of the compartment containing the load balancers to list.
- Map<String,Object>
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 given display name exactly. Example:
example_load_balancer
- Map<String,Object>
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 pre-created public IP. That should be attahed to this load balancer.
- ip
Address List<GetsDetails Ip Address Detail> An array of IP addresses.
- ip
Addresses List<String> An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- ip
Mode String - is
Private Boolean Whether the load balancer has a VCN-local (private) IP address.
- network
Security List<String>Group Ids An array of NSG OCIDs associated with the load balancer.
- reserved
Ips List<GetsReserved Ip> - shape String
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
- shape
Details List<GetsShape Detail> The configuration details to update load balancer to a different shape.
- state String
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- subnet
Ids List<String> An array of subnet OCIDs.
- 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"}
- time
Created 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 string The OCID of the compartment containing the load balancers to list.
- {[key: string]: any}
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 given display name exactly. Example:
example_load_balancer
- {[key: string]: any}
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 pre-created public IP. That should be attahed to this load balancer.
- ip
Address GetDetails Load Balancers Load Balancer Ip Address Detail[] An array of IP addresses.
- ip
Addresses string[] An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- ip
Mode string - is
Private boolean Whether the load balancer has a VCN-local (private) IP address.
- network
Security string[]Group Ids An array of NSG OCIDs associated with the load balancer.
- reserved
Ips GetLoad Balancers Load Balancer Reserved Ip[] - shape string
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
- shape
Details GetLoad Balancers Load Balancer Shape Detail[] The configuration details to update load balancer to a different shape.
- state string
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- subnet
Ids string[] An array of subnet OCIDs.
- {[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"}
- time
Created 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 The OCID of the compartment containing the load balancers to list.
- Mapping[str, Any]
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 given display name exactly. Example:
example_load_balancer
- Mapping[str, Any]
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 pre-created public IP. That should be attahed to this load balancer.
- ip_
address_ Getdetails Load Balancers Load Balancer Ip Address Detail] An array of IP addresses.
- ip_
addresses Sequence[str] An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- ip_
mode str - is_
private bool Whether the load balancer has a VCN-local (private) IP address.
- network_
security_ Sequence[str]group_ ids An array of NSG OCIDs associated with the load balancer.
- reserved_
ips GetLoad Balancers Load Balancer Reserved Ip] - shape str
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
- shape_
details GetLoad Balancers Load Balancer Shape Detail] The configuration details to update load balancer to a different shape.
- state str
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- subnet_
ids Sequence[str] An array of subnet OCIDs.
- 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
- compartment
Id String The OCID of the compartment containing the load balancers to list.
- Map<Any>
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 given display name exactly. Example:
example_load_balancer
- Map<Any>
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 pre-created public IP. That should be attahed to this load balancer.
- ip
Address List<Property Map>Details An array of IP addresses.
- ip
Addresses List<String> An array of IP addresses. Deprecated: use ip_address_details instead.
The 'ip_addresses' field has been deprecated. Please use 'ip_address_details' instead.
- ip
Mode String - is
Private Boolean Whether the load balancer has a VCN-local (private) IP address.
- network
Security List<String>Group Ids An array of NSG OCIDs associated with the load balancer.
- reserved
Ips List<Property Map> - shape String
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
- shape
Details List<Property Map> The configuration details to update load balancer to a different shape.
- state String
A filter to return only resources that match the given lifecycle state. Example:
SUCCEEDED
- subnet
Ids List<String> An array of subnet OCIDs.
- 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"}
- time
Created String The date and time the load balancer was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
GetLoadBalancersLoadBalancerIpAddressDetail
- Ip
Address string An IP address. Example:
192.168.0.3
- Is
Public bool Whether the IP address is public or private.
- Reserved
Ips List<GetLoad Balancers Load Balancer Ip Address Detail Reserved Ip> 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 string An IP address. Example:
192.168.0.3
- Is
Public bool Whether the IP address is public or private.
- Reserved
Ips []GetLoad Balancers Load Balancer Ip Address Detail Reserved Ip 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 String An IP address. Example:
192.168.0.3
- is
Public Boolean Whether the IP address is public or private.
- reserved
Ips List<GetsIp Address Detail Reserved Ip> 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 string An IP address. Example:
192.168.0.3
- is
Public boolean Whether the IP address is public or private.
- reserved
Ips GetLoad Balancers Load Balancer Ip Address Detail Reserved Ip[] 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 GetLoad Balancers Load Balancer Ip Address Detail Reserved Ip] 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 String An IP address. Example:
192.168.0.3
- is
Public Boolean Whether the IP address is public or private.
- reserved
Ips 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.
GetLoadBalancersLoadBalancerIpAddressDetailReservedIp
- 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.
GetLoadBalancersLoadBalancerReservedIp
- 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.
GetLoadBalancersLoadBalancerShapeDetail
- Maximum
Bandwidth intIn Mbps 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 intIn Mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
- Maximum
Bandwidth intIn Mbps 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 intIn Mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
- maximum
Bandwidth IntegerIn Mbps 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 IntegerIn Mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
- maximum
Bandwidth numberIn Mbps 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 numberIn Mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
- maximum_
bandwidth_ intin_ mbps 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_ intin_ mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
- maximum
Bandwidth NumberIn Mbps 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 NumberIn Mbps Bandwidth in Mbps that determines the total pre-provisioned bandwidth (ingress plus egress). The values must be between 0 and the maximumBandwidthInMbps in multiples of 10. The current allowed maximum value is defined in Service Limits. Example:
150
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.