Show / Hide Table of Contents

Namespace Pulumi.Azure.DataBricks

Classes

Workspace

Manages a Databricks Workspace

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
    {
        Location = "West US",
    });
    var exampleWorkspace = new Azure.DataBricks.Workspace("exampleWorkspace", new Azure.DataBricks.WorkspaceArgs
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        Sku = "standard",
        Tags = 
        {
            { "Environment", "Production" },
        },
    });
}

}

WorkspaceArgs

WorkspaceState

Back to top Copyright 2016-2020, Pulumi Corporation.