UNPKG

@pulumi/databricks

Version:

A Pulumi package for creating and managing databricks cloud resources.

64 lines 2.21 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getCleanRoomsCleanRoomOutput = exports.getCleanRoomsCleanRoom = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * This data source can be used to get a single clean room. * * ## Example Usage * * # Example: Datasource (Singular) Artifact * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const example = databricks.getCleanRoomsCleanRoom({ * name: "example-clean-room", * }); * ``` */ function getCleanRoomsCleanRoom(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("databricks:index/getCleanRoomsCleanRoom:getCleanRoomsCleanRoom", { "comment": args.comment, "name": args.name, "owner": args.owner, "remoteDetailedInfo": args.remoteDetailedInfo, "workspaceId": args.workspaceId, }, opts); } exports.getCleanRoomsCleanRoom = getCleanRoomsCleanRoom; /** * This data source can be used to get a single clean room. * * ## Example Usage * * # Example: Datasource (Singular) Artifact * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as databricks from "@pulumi/databricks"; * * const example = databricks.getCleanRoomsCleanRoom({ * name: "example-clean-room", * }); * ``` */ function getCleanRoomsCleanRoomOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("databricks:index/getCleanRoomsCleanRoom:getCleanRoomsCleanRoom", { "comment": args.comment, "name": args.name, "owner": args.owner, "remoteDetailedInfo": args.remoteDetailedInfo, "workspaceId": args.workspaceId, }, opts); } exports.getCleanRoomsCleanRoomOutput = getCleanRoomsCleanRoomOutput; //# sourceMappingURL=getCleanRoomsCleanRoom.js.map