UNPKG

@pulumi/databricks

Version:

A Pulumi package for creating and managing databricks cloud resources.

62 lines (61 loc) 1.83 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can be used to fetch the list of clean rooms. * * ## Example Usage * * # Example: Clean Room Datasource (Plural) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const all = databricks.getCleanRoomsCleanRoom({}); * ``` */ export declare function getCleanRoomsCleanRooms(args?: GetCleanRoomsCleanRoomsArgs, opts?: pulumi.InvokeOptions): Promise<GetCleanRoomsCleanRoomsResult>; /** * A collection of arguments for invoking getCleanRoomsCleanRooms. */ export interface GetCleanRoomsCleanRoomsArgs { /** * Workspace ID of the resource */ workspaceId?: string; } /** * A collection of values returned by getCleanRoomsCleanRooms. */ export interface GetCleanRoomsCleanRoomsResult { readonly cleanRooms: outputs.GetCleanRoomsCleanRoomsCleanRoom[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly workspaceId?: string; } /** * This data source can be used to fetch the list of clean rooms. * * ## Example Usage * * # Example: Clean Room Datasource (Plural) * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const all = databricks.getCleanRoomsCleanRoom({}); * ``` */ export declare function getCleanRoomsCleanRoomsOutput(args?: GetCleanRoomsCleanRoomsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCleanRoomsCleanRoomsResult>; /** * A collection of arguments for invoking getCleanRoomsCleanRooms. */ export interface GetCleanRoomsCleanRoomsOutputArgs { /** * Workspace ID of the resource */ workspaceId?: pulumi.Input<string>; }