import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Byoip Allocated Ranges in Oracle Cloud Infrastructure Core service. * * Lists the subranges of a BYOIP CIDR block currently allocated to an IP pool. * Each `ByoipAllocatedRange` object also lists the IP pool where it is allocated. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByoipAllocatedRanges = oci.core.getByoipAllocatedRanges({ * byoipRangeId: testByoipRange.id, * }); * ``` */ export declare function getByoipAllocatedRanges(args: GetByoipAllocatedRangesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getByoipAllocatedRanges. */ export interface GetByoipAllocatedRangesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource containing the BYOIP CIDR block. */ byoipRangeId: string; filters?: inputs.Core.GetByoipAllocatedRangesFilter[]; } /** * A collection of values returned by getByoipAllocatedRanges. */ export interface GetByoipAllocatedRangesResult { /** * The list of byoip_allocated_range_collection. */ readonly byoipAllocatedRangeCollections: outputs.Core.GetByoipAllocatedRangesByoipAllocatedRangeCollection[]; readonly byoipRangeId: string; readonly filters?: outputs.Core.GetByoipAllocatedRangesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Byoip Allocated Ranges in Oracle Cloud Infrastructure Core service. * * Lists the subranges of a BYOIP CIDR block currently allocated to an IP pool. * Each `ByoipAllocatedRange` object also lists the IP pool where it is allocated. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testByoipAllocatedRanges = oci.core.getByoipAllocatedRanges({ * byoipRangeId: testByoipRange.id, * }); * ``` */ export declare function getByoipAllocatedRangesOutput(args: GetByoipAllocatedRangesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getByoipAllocatedRanges. */ export interface GetByoipAllocatedRangesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource containing the BYOIP CIDR block. */ byoipRangeId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getByoipAllocatedRanges.d.ts.map