import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Notebook Session resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified notebook session's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNotebookSession = oci.datascience.getNotebookSession({ * notebookSessionId: testNotebookSessionOciDatascienceNotebookSession.id, * }); * ``` */ export declare function getNotebookSession(args: GetNotebookSessionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNotebookSession. */ export interface GetNotebookSessionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the notebook session. */ notebookSessionId: string; } /** * A collection of values returned by getNotebookSession. */ export interface GetNotebookSessionResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the notebook session's compartment. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the notebook session. */ readonly createdBy: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. 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 display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My NotebookSession` */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. 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 notebook session. */ readonly id: string; /** * Details about the state of the notebook session. */ readonly lifecycleDetails: string; /** * Details for the notebook session configuration. */ readonly notebookSessionConfigDetails: outputs.DataScience.GetNotebookSessionNotebookSessionConfigDetail[]; /** * Details for the notebook session configuration. */ readonly notebookSessionConfigurationDetails: outputs.DataScience.GetNotebookSessionNotebookSessionConfigurationDetail[]; readonly notebookSessionId: string; /** * Notebook Session runtime configuration details. */ readonly notebookSessionRuntimeConfigDetails: outputs.DataScience.GetNotebookSessionNotebookSessionRuntimeConfigDetail[]; /** * Collection of NotebookSessionStorageMountConfigurationDetails. */ readonly notebookSessionStorageMountConfigurationDetailsLists: outputs.DataScience.GetNotebookSessionNotebookSessionStorageMountConfigurationDetailsList[]; /** * The URL to interact with the notebook session. */ readonly notebookSessionUrl: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project associated with the notebook session. */ readonly projectId: string; /** * The state of the notebook session. */ readonly state: string; /** * The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z */ readonly timeCreated: string; } /** * This data source provides details about a specific Notebook Session resource in Oracle Cloud Infrastructure Data Science service. * * Gets the specified notebook session's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNotebookSession = oci.datascience.getNotebookSession({ * notebookSessionId: testNotebookSessionOciDatascienceNotebookSession.id, * }); * ``` */ export declare function getNotebookSessionOutput(args: GetNotebookSessionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNotebookSession. */ export interface GetNotebookSessionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the notebook session. */ notebookSessionId: pulumi.Input; } //# sourceMappingURL=getNotebookSession.d.ts.map