import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Console History resource in Oracle Cloud Infrastructure Core service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/iaas/latest/ConsoleHistory * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/ * * Captures the most recent serial console data (up to a megabyte) for the * specified instance. * * The `CaptureConsoleHistory` operation works with the other console history operations * as described below. * * 1. Use `CaptureConsoleHistory` to request the capture of up to a megabyte of the * most recent console history. This call returns a `ConsoleHistory` * object. The object will have a state of REQUESTED. * 2. Wait for the capture operation to succeed by polling `GetConsoleHistory` with * the identifier of the console history metadata. The state of the * `ConsoleHistory` object will go from REQUESTED to GETTING-HISTORY and * then SUCCEEDED (or FAILED). * 3. Use `GetConsoleHistoryContent` to get the actual console history data (not the * metadata). * 4. Optionally, use `DeleteConsoleHistory` to delete the console history metadata * and the console history data. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConsoleHistory = new oci.core.ConsoleHistory("test_console_history", { * instanceId: testInstance.id, * definedTags: { * "Operations.CostCenter": "42", * }, * displayName: consoleHistoryDisplayName, * freeformTags: { * Department: "Finance", * }, * }); * ``` * * ## Import * * ConsoleHistories can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Core/consoleHistory:ConsoleHistory test_console_history "id" * ``` */ export declare class ConsoleHistory extends pulumi.CustomResource { /** * Get an existing ConsoleHistory resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ConsoleHistoryState, opts?: pulumi.CustomResourceOptions): ConsoleHistory; /** * Returns true if the given object is an instance of ConsoleHistory. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ConsoleHistory; /** * The availability domain of an instance. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain: pulumi.Output; /** * The OCID of the compartment. */ readonly compartmentId: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * The OCID of the instance to get the console history from. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly instanceId: pulumi.Output; /** * The current state of the console history. */ readonly state: pulumi.Output; /** * The date and time the history was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: pulumi.Output; /** * Create a ConsoleHistory resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConsoleHistoryArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ConsoleHistory resources. */ export interface ConsoleHistoryState { /** * The availability domain of an instance. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: pulumi.Input; /** * The OCID of the compartment. */ compartmentId?: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * (Updatable) 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"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The OCID of the instance to get the console history from. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ instanceId?: pulumi.Input; /** * The current state of the console history. */ state?: pulumi.Input; /** * The date and time the history was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a ConsoleHistory resource. */ export interface ConsoleHistoryArgs { /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * (Updatable) 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"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The OCID of the instance to get the console history from. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ instanceId: pulumi.Input; } //# sourceMappingURL=consoleHistory.d.ts.map