@pulumi/databricks
Version:
A Pulumi package for creating and managing databricks cloud resources.
48 lines • 2.39 kB
JavaScript
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** 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");
/**
* > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
*
* Retrieves the settings of databricks.MlflowExperiment by id or name.
*/
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;
/**
* > **Note** If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add dependsOn attribute in order to prevent _default auth: cannot configure default credentials_ errors.
*
* Retrieves the settings of databricks.MlflowExperiment by id or name.
*/
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
;