import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Public Ip Pool resource in Oracle Cloud Infrastructure Core service. * * Gets the specified `PublicIpPool` object. You must specify the object's [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicIpPool = oci.core.getPublicIpPool({ * publicIpPoolId: testPublicIpPoolOciCorePublicIpPool.id, * }); * ``` */ export declare function getPublicIpPool(args: GetPublicIpPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPublicIpPool. */ export interface GetPublicIpPoolArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the public IP pool. */ publicIpPoolId: string; } /** * A collection of values returned by getPublicIpPool. */ export interface GetPublicIpPoolResult { /** * The CIDR blocks added to this pool. This could be all or a portion of a BYOIP CIDR block. */ readonly cidrBlocks: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing this pool. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the public IP pool. */ readonly id: string; readonly publicIpPoolId: string; /** * The public IP pool's current state. */ readonly state: string; /** * The date and time the public IP pool was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Public Ip Pool resource in Oracle Cloud Infrastructure Core service. * * Gets the specified `PublicIpPool` object. You must specify the object's [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicIpPool = oci.core.getPublicIpPool({ * publicIpPoolId: testPublicIpPoolOciCorePublicIpPool.id, * }); * ``` */ export declare function getPublicIpPoolOutput(args: GetPublicIpPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPublicIpPool. */ export interface GetPublicIpPoolOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the public IP pool. */ publicIpPoolId: pulumi.Input; } //# sourceMappingURL=getPublicIpPool.d.ts.map