import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Db Node Console History resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified database node console history. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbNodeConsoleHistory = oci.database.getDbNodeConsoleHistory({ * consoleHistoryId: testConsoleHistory.id, * dbNodeId: testDbNode.id, * }); * ``` */ export declare function getDbNodeConsoleHistory(args: GetDbNodeConsoleHistoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbNodeConsoleHistory. */ export interface GetDbNodeConsoleHistoryArgs { /** * The OCID of the console history. */ consoleHistoryId: string; /** * The database node [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbNodeId: string; } /** * A collection of values returned by getDbNodeConsoleHistory. */ export interface GetDbNodeConsoleHistoryResult { /** * The OCID of the compartment containing the console history. */ readonly compartmentId: string; readonly consoleHistoryId: string; /** * The OCID of the database node. */ readonly dbNodeId: 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; }; /** * The user-friendly name for the console history. The name does not need to be unique. */ 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 of the console history. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The current state of the console history. */ readonly state: string; /** * The date and time the console history was created. */ readonly timeCreated: string; } /** * This data source provides details about a specific Db Node Console History resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified database node console history. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDbNodeConsoleHistory = oci.database.getDbNodeConsoleHistory({ * consoleHistoryId: testConsoleHistory.id, * dbNodeId: testDbNode.id, * }); * ``` */ export declare function getDbNodeConsoleHistoryOutput(args: GetDbNodeConsoleHistoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbNodeConsoleHistory. */ export interface GetDbNodeConsoleHistoryOutputArgs { /** * The OCID of the console history. */ consoleHistoryId: pulumi.Input; /** * The database node [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ dbNodeId: pulumi.Input; } //# sourceMappingURL=getDbNodeConsoleHistory.d.ts.map