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 Public Ip Pools in Oracle Cloud Infrastructure Core service. * * Lists the public IP pools in the specified compartment. * You can filter the list using query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicIpPools = oci.core.getPublicIpPools({ * compartmentId: compartmentId, * byoipRangeId: testByoipRange.id, * displayName: publicIpPoolDisplayName, * }); * ``` */ export declare function getPublicIpPools(args: GetPublicIpPoolsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPublicIpPools. */ export interface GetPublicIpPoolsArgs { /** * A filter to return only resources that match the given BYOIP CIDR block. */ byoipRangeId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetPublicIpPoolsFilter[]; } /** * A collection of values returned by getPublicIpPools. */ export interface GetPublicIpPoolsResult { readonly byoipRangeId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing this pool. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetPublicIpPoolsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of public_ip_pool_collection. */ readonly publicIpPoolCollections: outputs.Core.GetPublicIpPoolsPublicIpPoolCollection[]; } /** * This data source provides the list of Public Ip Pools in Oracle Cloud Infrastructure Core service. * * Lists the public IP pools in the specified compartment. * You can filter the list using query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicIpPools = oci.core.getPublicIpPools({ * compartmentId: compartmentId, * byoipRangeId: testByoipRange.id, * displayName: publicIpPoolDisplayName, * }); * ``` */ export declare function getPublicIpPoolsOutput(args: GetPublicIpPoolsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPublicIpPools. */ export interface GetPublicIpPoolsOutputArgs { /** * A filter to return only resources that match the given BYOIP CIDR block. */ byoipRangeId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getPublicIpPools.d.ts.map