import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Db Node Snapshot resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Exadata Database Node Snapshot in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbNodeSnapshot = oci.database.getDbNodeSnapshot({ * dbnodeSnapshotId: testSnapshot.id, * }); * ``` */ export declare function getDbNodeSnapshot(args: GetDbNodeSnapshotArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbNodeSnapshot. */ export interface GetDbNodeSnapshotArgs { /** * The Exadata Database Node Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbnodeSnapshotId: string; } /** * A collection of values returned by getDbNodeSnapshot. */ export interface GetDbNodeSnapshotResult { /** * 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; readonly dbnodeSnapshotId: 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 Database Node Snapshot. */ readonly id: string; /** * Additional information about the current lifecycle state of the Exadata Database Node Snapshot. */ readonly lifecycleDetails: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of `mountDbnodeId` will be `"null"`. */ readonly mountDbnodeId: string; /** * Details of the mount points */ readonly mountPoints: outputs.Database.GetDbNodeSnapshotMountPoint[]; /** * Volume Name */ readonly name: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Node. */ readonly sourceDbnodeId: string; /** * The current state of the Exadata Database Node 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 Database Node Snapshot was created. */ readonly timeCreated: string; /** * Details of the volumes */ readonly volumes: outputs.Database.GetDbNodeSnapshotVolume[]; } /** * This data source provides details about a specific Db Node Snapshot resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified Exadata Database Node Snapshot in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbNodeSnapshot = oci.database.getDbNodeSnapshot({ * dbnodeSnapshotId: testSnapshot.id, * }); * ``` */ export declare function getDbNodeSnapshotOutput(args: GetDbNodeSnapshotOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbNodeSnapshot. */ export interface GetDbNodeSnapshotOutputArgs { /** * The Exadata Database Node Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbnodeSnapshotId: pulumi.Input; } //# sourceMappingURL=getDbNodeSnapshot.d.ts.map