import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Notebook Session Shapes in Oracle Cloud Infrastructure Data Science service. * * Lists the valid notebook session shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNotebookSessionShapes = oci.datascience.getNotebookSessionShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getNotebookSessionShapes(args: GetNotebookSessionShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNotebookSessionShapes. */ export interface GetNotebookSessionShapesArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DataScience.GetNotebookSessionShapesFilter[]; } /** * A collection of values returned by getNotebookSessionShapes. */ export interface GetNotebookSessionShapesResult { readonly compartmentId: string; readonly filters?: outputs.DataScience.GetNotebookSessionShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of notebook_session_shapes. */ readonly notebookSessionShapes: outputs.DataScience.GetNotebookSessionShapesNotebookSessionShape[]; } /** * This data source provides the list of Notebook Session Shapes in Oracle Cloud Infrastructure Data Science service. * * Lists the valid notebook session shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNotebookSessionShapes = oci.datascience.getNotebookSessionShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getNotebookSessionShapesOutput(args: GetNotebookSessionShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNotebookSessionShapes. */ export interface GetNotebookSessionShapesOutputArgs { /** * Filter results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getNotebookSessionShapes.d.ts.map