import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPluggableDatabaseSnapshot = oci.database.getPluggableDatabaseSnapshot({ * pluggableDatabaseSnapshotId: testPluggableDatabaseSnapshotOciDatabasePluggableDatabaseSnapshot.id, * }); * ``` */ export declare function getPluggableDatabaseSnapshot(args: GetPluggableDatabaseSnapshotArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPluggableDatabaseSnapshot. */ export interface GetPluggableDatabaseSnapshotArgs { /** * The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ pluggableDatabaseSnapshotId: string; } /** * A collection of values returned by getPluggableDatabaseSnapshot. */ export interface GetPluggableDatabaseSnapshotResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster. */ readonly clusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ 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). */ readonly definedTags: { [key: string]: 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 Exadata Pluggable Database Snapshot. */ readonly id: string; /** * Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot. */ readonly lifecycleDetails: string; /** * The user-friendly name for the Database Snapshot. The name should be unique. */ readonly name: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database. */ readonly pluggableDatabaseId: string; readonly pluggableDatabaseSnapshotId: string; /** * The current state of the Exadata Pluggable Database Snapshot. */ readonly state: string; /** * System 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). */ readonly systemTags: { [key: string]: string; }; /** * The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z */ readonly timeCreated: string; } /** * This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPluggableDatabaseSnapshot = oci.database.getPluggableDatabaseSnapshot({ * pluggableDatabaseSnapshotId: testPluggableDatabaseSnapshotOciDatabasePluggableDatabaseSnapshot.id, * }); * ``` */ export declare function getPluggableDatabaseSnapshotOutput(args: GetPluggableDatabaseSnapshotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPluggableDatabaseSnapshot. */ export interface GetPluggableDatabaseSnapshotOutputArgs { /** * The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ pluggableDatabaseSnapshotId: pulumi.Input; } //# sourceMappingURL=getPluggableDatabaseSnapshot.d.ts.map