1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getByoipRanges
Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi

oci.Core.getByoipRanges

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi

    This data source provides the list of Byoip Ranges in Oracle Cloud Infrastructure Core service.

    Lists the ByoipRange resources in the specified compartment. You can filter the list using query parameters.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testByoipRanges = Oci.Core.GetByoipRanges.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Byoip_range_display_name,
            State = @var.Byoip_range_state,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.GetByoipRanges(ctx, &core.GetByoipRangesArgs{
    			CompartmentId: _var.Compartment_id,
    			DisplayName:   pulumi.StringRef(_var.Byoip_range_display_name),
    			State:         pulumi.StringRef(_var.Byoip_range_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.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetByoipRangesArgs;
    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 testByoipRanges = CoreFunctions.getByoipRanges(GetByoipRangesArgs.builder()
                .compartmentId(var_.compartment_id())
                .displayName(var_.byoip_range_display_name())
                .state(var_.byoip_range_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_byoip_ranges = oci.Core.get_byoip_ranges(compartment_id=var["compartment_id"],
        display_name=var["byoip_range_display_name"],
        state=var["byoip_range_state"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testByoipRanges = oci.Core.getByoipRanges({
        compartmentId: _var.compartment_id,
        displayName: _var.byoip_range_display_name,
        state: _var.byoip_range_state,
    });
    
    variables:
      testByoipRanges:
        fn::invoke:
          Function: oci:Core:getByoipRanges
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.byoip_range_display_name}
            state: ${var.byoip_range_state}
    

    Using getByoipRanges

    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 getByoipRanges(args: GetByoipRangesArgs, opts?: InvokeOptions): Promise<GetByoipRangesResult>
    function getByoipRangesOutput(args: GetByoipRangesOutputArgs, opts?: InvokeOptions): Output<GetByoipRangesResult>
    def get_byoip_ranges(compartment_id: Optional[str] = None,
                         display_name: Optional[str] = None,
                         filters: Optional[Sequence[_core.GetByoipRangesFilter]] = None,
                         state: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetByoipRangesResult
    def get_byoip_ranges_output(compartment_id: Optional[pulumi.Input[str]] = None,
                         display_name: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetByoipRangesFilterArgs]]]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetByoipRangesResult]
    func GetByoipRanges(ctx *Context, args *GetByoipRangesArgs, opts ...InvokeOption) (*GetByoipRangesResult, error)
    func GetByoipRangesOutput(ctx *Context, args *GetByoipRangesOutputArgs, opts ...InvokeOption) GetByoipRangesResultOutput

    > Note: This function is named GetByoipRanges in the Go SDK.

    public static class GetByoipRanges 
    {
        public static Task<GetByoipRangesResult> InvokeAsync(GetByoipRangesArgs args, InvokeOptions? opts = null)
        public static Output<GetByoipRangesResult> Invoke(GetByoipRangesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetByoipRangesResult> getByoipRanges(GetByoipRangesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getByoipRanges:getByoipRanges
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string

    The OCID of the compartment.

    DisplayName string

    A filter to return only resources that match the given display name exactly.

    Filters List<GetByoipRangesFilter>
    State string

    A filter to return only resources that match the given lifecycle state name exactly.

    CompartmentId string

    The OCID of the compartment.

    DisplayName string

    A filter to return only resources that match the given display name exactly.

    Filters []GetByoipRangesFilter
    State string

    A filter to return only resources that match the given lifecycle state name exactly.

    compartmentId String

    The OCID of the compartment.

    displayName String

    A filter to return only resources that match the given display name exactly.

    filters List<GetByoipRangesFilter>
    state String

    A filter to return only resources that match the given lifecycle state name exactly.

    compartmentId string

    The OCID of the compartment.

    displayName string

    A filter to return only resources that match the given display name exactly.

    filters GetByoipRangesFilter[]
    state string

    A filter to return only resources that match the given lifecycle state name exactly.

    compartment_id str

    The OCID of the compartment.

    display_name str

    A filter to return only resources that match the given display name exactly.

    filters GetByoipRangesFilter]
    state str

    A filter to return only resources that match the given lifecycle state name exactly.

    compartmentId String

    The OCID of the compartment.

    displayName String

    A filter to return only resources that match the given display name exactly.

    filters List<Property Map>
    state String

    A filter to return only resources that match the given lifecycle state name exactly.

    getByoipRanges Result

    The following output properties are available:

    ByoipRangeCollections List<GetByoipRangesByoipRangeCollection>

    The list of byoip_range_collection.

    CompartmentId string

    The OCID of the compartment containing the BYOIP CIDR block.

    Id string

    The provider-assigned unique ID for this managed resource.

    DisplayName string

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    Filters List<GetByoipRangesFilter>
    State string

    The ByoipRange resource's current state.

    ByoipRangeCollections []GetByoipRangesByoipRangeCollection

    The list of byoip_range_collection.

    CompartmentId string

    The OCID of the compartment containing the BYOIP CIDR block.

    Id string

    The provider-assigned unique ID for this managed resource.

    DisplayName string

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    Filters []GetByoipRangesFilter
    State string

    The ByoipRange resource's current state.

    byoipRangeCollections List<GetByoipRangesByoipRangeCollection>

    The list of byoip_range_collection.

    compartmentId String

    The OCID of the compartment containing the BYOIP CIDR block.

    id String

    The provider-assigned unique ID for this managed resource.

    displayName String

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    filters List<GetByoipRangesFilter>
    state String

    The ByoipRange resource's current state.

    byoipRangeCollections GetByoipRangesByoipRangeCollection[]

    The list of byoip_range_collection.

    compartmentId string

    The OCID of the compartment containing the BYOIP CIDR block.

    id string

    The provider-assigned unique ID for this managed resource.

    displayName string

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    filters GetByoipRangesFilter[]
    state string

    The ByoipRange resource's current state.

    byoip_range_collections GetByoipRangesByoipRangeCollection]

    The list of byoip_range_collection.

    compartment_id str

    The OCID of the compartment containing the BYOIP CIDR block.

    id str

    The provider-assigned unique ID for this managed resource.

    display_name str

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    filters GetByoipRangesFilter]
    state str

    The ByoipRange resource's current state.

    byoipRangeCollections List<Property Map>

    The list of byoip_range_collection.

    compartmentId String

    The OCID of the compartment containing the BYOIP CIDR block.

    id String

    The provider-assigned unique ID for this managed resource.

    displayName String

    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    filters List<Property Map>
    state String

    The ByoipRange resource's current state.

    Supporting Types

    GetByoipRangesByoipRangeCollection

    GetByoipRangesByoipRangeCollectionItem

    ByoipRangeVcnIpv6allocations List<GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation>

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    DefinedTags 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"}

    DisplayName string

    A filter to return only resources that match the given display name exactly.

    FreeformTags 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

    The OCID of the ByoipRange resource.

    Ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    LifecycleDetails string

    The ByoipRange resource's current status.

    State string

    A filter to return only resources that match the given lifecycle state name exactly.

    TimeAdvertised string

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeCreated string

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

    TimeValidated string

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeWithdrawn string

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    ValidationToken string

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    CidrBlock string

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    CompartmentId string

    The OCID of the compartment.

    ByoipRangeVcnIpv6allocations []GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    DefinedTags 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"}

    DisplayName string

    A filter to return only resources that match the given display name exactly.

    FreeformTags 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

    The OCID of the ByoipRange resource.

    Ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    LifecycleDetails string

    The ByoipRange resource's current status.

    State string

    A filter to return only resources that match the given lifecycle state name exactly.

    TimeAdvertised string

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeCreated string

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

    TimeValidated string

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    TimeWithdrawn string

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    ValidationToken string

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    CidrBlock string

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    CompartmentId string

    The OCID of the compartment.

    byoipRangeVcnIpv6allocations List<GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation>

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    definedTags 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"}

    displayName String

    A filter to return only resources that match the given display name exactly.

    freeformTags 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

    The OCID of the ByoipRange resource.

    ipv6cidrBlock String

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    lifecycleDetails String

    The ByoipRange resource's current status.

    state String

    A filter to return only resources that match the given lifecycle state name exactly.

    timeAdvertised String

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeCreated String

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

    timeValidated String

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeWithdrawn String

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    validationToken String

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    cidrBlock String

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    compartmentId String

    The OCID of the compartment.

    byoipRangeVcnIpv6allocations GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation[]

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    definedTags {[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"}

    displayName string

    A filter to return only resources that match the given display name exactly.

    freeformTags {[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

    The OCID of the ByoipRange resource.

    ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    lifecycleDetails string

    The ByoipRange resource's current status.

    state string

    A filter to return only resources that match the given lifecycle state name exactly.

    timeAdvertised string

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeCreated string

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

    timeValidated string

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeWithdrawn string

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    validationToken string

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    cidrBlock string

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    compartmentId string

    The OCID of the compartment.

    byoip_range_vcn_ipv6allocations GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation]

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    defined_tags 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.

    freeform_tags 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

    The OCID of the ByoipRange resource.

    ipv6cidr_block str

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    lifecycle_details str

    The ByoipRange resource's current status.

    state str

    A filter to return only resources that match the given lifecycle state name exactly.

    time_advertised str

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    time_created str

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

    time_validated str

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    time_withdrawn str

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    validation_token str

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    cidr_block str

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    compartment_id str

    The OCID of the compartment.

    byoipRangeVcnIpv6allocations List<Property Map>

    A list of ByoipRangeVcnIpv6AllocationSummary objects.

    definedTags 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"}

    displayName String

    A filter to return only resources that match the given display name exactly.

    freeformTags 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

    The OCID of the ByoipRange resource.

    ipv6cidrBlock String

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    lifecycleDetails String

    The ByoipRange resource's current status.

    state String

    A filter to return only resources that match the given lifecycle state name exactly.

    timeAdvertised String

    The date and time the ByoipRange resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeCreated String

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

    timeValidated String

    The date and time the ByoipRange resource was validated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    timeWithdrawn String

    The date and time the ByoipRange resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    validationToken String

    The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.

    cidrBlock String

    The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.

    compartmentId String

    The OCID of the compartment.

    GetByoipRangesByoipRangeCollectionItemByoipRangeVcnIpv6allocation

    ByoipRangeId string

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    CompartmentId string

    The OCID of the compartment.

    Ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    VcnId string

    The OCID of the Vcn resource to which the ByoipRange belongs.

    ByoipRangeId string

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    CompartmentId string

    The OCID of the compartment.

    Ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    VcnId string

    The OCID of the Vcn resource to which the ByoipRange belongs.

    byoipRangeId String

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    compartmentId String

    The OCID of the compartment.

    ipv6cidrBlock String

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    vcnId String

    The OCID of the Vcn resource to which the ByoipRange belongs.

    byoipRangeId string

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    compartmentId string

    The OCID of the compartment.

    ipv6cidrBlock string

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    vcnId string

    The OCID of the Vcn resource to which the ByoipRange belongs.

    byoip_range_id str

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    compartment_id str

    The OCID of the compartment.

    ipv6cidr_block str

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    vcn_id str

    The OCID of the Vcn resource to which the ByoipRange belongs.

    byoipRangeId String

    The OCID of the ByoipRange resource to which the CIDR block belongs.

    compartmentId String

    The OCID of the compartment.

    ipv6cidrBlock String

    The IPv6 prefix being imported to the Oracle cloud. This prefix must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.

    vcnId String

    The OCID of the Vcn resource to which the ByoipRange belongs.

    GetByoipRangesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

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

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi