UNPKG

@pulumi/databricks

Version:

A Pulumi package for creating and managing databricks cloud resources.

48 lines 2 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.getMlflowExperimentOutput = exports.getMlflowExperiment = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Retrieves the settings of databricks.MlflowExperiment by id or name. * * > This data source can only be used with a workspace-level provider! */ function getMlflowExperiment(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("databricks:index/getMlflowExperiment:getMlflowExperiment", { "artifactLocation": args.artifactLocation, "creationTime": args.creationTime, "experimentId": args.experimentId, "id": args.id, "lastUpdateTime": args.lastUpdateTime, "lifecycleStage": args.lifecycleStage, "name": args.name, "tags": args.tags, }, opts); } exports.getMlflowExperiment = getMlflowExperiment; /** * Retrieves the settings of databricks.MlflowExperiment by id or name. * * > This data source can only be used with a workspace-level provider! */ function getMlflowExperimentOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("databricks:index/getMlflowExperiment:getMlflowExperiment", { "artifactLocation": args.artifactLocation, "creationTime": args.creationTime, "experimentId": args.experimentId, "id": args.id, "lastUpdateTime": args.lastUpdateTime, "lifecycleStage": args.lifecycleStage, "name": args.name, "tags": args.tags, }, opts); } exports.getMlflowExperimentOutput = getMlflowExperimentOutput; //# sourceMappingURL=getMlflowExperiment.js.map