import * as pulumi from "@pulumi/pulumi"; /** * Manages a Databricks Workspace * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleWorkspace = new azure.databricks.Workspace("example", { * name: "databricks-test", * resourceGroupName: example.name, * location: example.location, * sku: "standard", * tags: { * Environment: "Production", * }, * }); * ``` * * > **Note:** You can use the Databricks Terraform Provider to manage resources within the Databricks Workspace. * * ## Example HCL Configurations * * * Databricks Workspace Secure Connectivity Cluster with Load Balancer * * Databricks Workspace Secure Connectivity Cluster without Load Balancer * * Databricks Workspace with Private Endpoint * * Databricks Workspace with Private Endpoint, Customer Managed Keys for Managed Services and Databricks File System Customer Managed Keys * * Databricks Workspace with Root Databricks File System Customer Managed Keys * * Databricks Workspace with Root Databricks File System Customer Managed Keys in a Different Subscription * * Databricks Workspace with Customer Managed Keys for Managed Services * * Databricks Workspace with Customer Managed Keys for Managed Services with Key Vault and Key in a Different Subscription * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Databricks` - 2026-01-01 * * * `Microsoft.Network` - 2025-01-01, 2023-09-01 * * ## Import * * Databrick Workspaces can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:databricks/workspaceCustomerManagedKey:WorkspaceCustomerManagedKey workspace1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Databricks/workspaces/workspace1 * ``` */ export declare class WorkspaceCustomerManagedKey extends pulumi.CustomResource { /** * Get an existing WorkspaceCustomerManagedKey resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: WorkspaceCustomerManagedKeyState, opts?: pulumi.CustomResourceOptions): WorkspaceCustomerManagedKey; /** * Returns true if the given object is an instance of WorkspaceCustomerManagedKey. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is WorkspaceCustomerManagedKey; readonly keyVaultKeyId: pulumi.Output; /** * The unique identifier of the databricks workspace in Databricks control plane. */ readonly workspaceId: pulumi.Output; /** * Create a WorkspaceCustomerManagedKey resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: WorkspaceCustomerManagedKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering WorkspaceCustomerManagedKey resources. */ export interface WorkspaceCustomerManagedKeyState { keyVaultKeyId?: pulumi.Input; /** * The unique identifier of the databricks workspace in Databricks control plane. */ workspaceId?: pulumi.Input; } /** * The set of arguments for constructing a WorkspaceCustomerManagedKey resource. */ export interface WorkspaceCustomerManagedKeyArgs { keyVaultKeyId: pulumi.Input; /** * The unique identifier of the databricks workspace in Databricks control plane. */ workspaceId: pulumi.Input; }