1. Packages
  2. Packages
  3. Databricks Provider
  4. API Docs
  5. AzureBlobMount
Viewing docs for Databricks v0.4.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v0.4.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Create AzureBlobMount Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AzureBlobMount(name: string, args: AzureBlobMountArgs, opts?: CustomResourceOptions);
    @overload
    def AzureBlobMount(resource_name: str,
                       args: AzureBlobMountArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def AzureBlobMount(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       auth_type: Optional[str] = None,
                       container_name: Optional[str] = None,
                       mount_name: Optional[str] = None,
                       storage_account_name: Optional[str] = None,
                       token_secret_key: Optional[str] = None,
                       token_secret_scope: Optional[str] = None,
                       cluster_id: Optional[str] = None,
                       directory: Optional[str] = None)
    func NewAzureBlobMount(ctx *Context, name string, args AzureBlobMountArgs, opts ...ResourceOption) (*AzureBlobMount, error)
    public AzureBlobMount(string name, AzureBlobMountArgs args, CustomResourceOptions? opts = null)
    public AzureBlobMount(String name, AzureBlobMountArgs args)
    public AzureBlobMount(String name, AzureBlobMountArgs args, CustomResourceOptions options)
    
    type: databricks:AzureBlobMount
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AzureBlobMountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AzureBlobMountArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AzureBlobMountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AzureBlobMountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AzureBlobMountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var azureBlobMountResource = new Databricks.AzureBlobMount("azureBlobMountResource", new()
    {
        AuthType = "string",
        ContainerName = "string",
        MountName = "string",
        StorageAccountName = "string",
        TokenSecretKey = "string",
        TokenSecretScope = "string",
        ClusterId = "string",
        Directory = "string",
    });
    
    example, err := databricks.NewAzureBlobMount(ctx, "azureBlobMountResource", &databricks.AzureBlobMountArgs{
    	AuthType:           pulumi.String("string"),
    	ContainerName:      pulumi.String("string"),
    	MountName:          pulumi.String("string"),
    	StorageAccountName: pulumi.String("string"),
    	TokenSecretKey:     pulumi.String("string"),
    	TokenSecretScope:   pulumi.String("string"),
    	ClusterId:          pulumi.String("string"),
    	Directory:          pulumi.String("string"),
    })
    
    var azureBlobMountResource = new AzureBlobMount("azureBlobMountResource", AzureBlobMountArgs.builder()
        .authType("string")
        .containerName("string")
        .mountName("string")
        .storageAccountName("string")
        .tokenSecretKey("string")
        .tokenSecretScope("string")
        .clusterId("string")
        .directory("string")
        .build());
    
    azure_blob_mount_resource = databricks.AzureBlobMount("azureBlobMountResource",
        auth_type="string",
        container_name="string",
        mount_name="string",
        storage_account_name="string",
        token_secret_key="string",
        token_secret_scope="string",
        cluster_id="string",
        directory="string")
    
    const azureBlobMountResource = new databricks.AzureBlobMount("azureBlobMountResource", {
        authType: "string",
        containerName: "string",
        mountName: "string",
        storageAccountName: "string",
        tokenSecretKey: "string",
        tokenSecretScope: "string",
        clusterId: "string",
        directory: "string",
    });
    
    type: databricks:AzureBlobMount
    properties:
        authType: string
        clusterId: string
        containerName: string
        directory: string
        mountName: string
        storageAccountName: string
        tokenSecretKey: string
        tokenSecretScope: string
    

    AzureBlobMount Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AzureBlobMount resource accepts the following input properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AzureBlobMount resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Source string
    Id string
    The provider-assigned unique ID for this managed resource.
    Source string
    id String
    The provider-assigned unique ID for this managed resource.
    source String
    id string
    The provider-assigned unique ID for this managed resource.
    source string
    id str
    The provider-assigned unique ID for this managed resource.
    source str
    id String
    The provider-assigned unique ID for this managed resource.
    source String

    Look up Existing AzureBlobMount Resource

    Get an existing AzureBlobMount resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AzureBlobMountState, opts?: CustomResourceOptions): AzureBlobMount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auth_type: Optional[str] = None,
            cluster_id: Optional[str] = None,
            container_name: Optional[str] = None,
            directory: Optional[str] = None,
            mount_name: Optional[str] = None,
            source: Optional[str] = None,
            storage_account_name: Optional[str] = None,
            token_secret_key: Optional[str] = None,
            token_secret_scope: Optional[str] = None) -> AzureBlobMount
    func GetAzureBlobMount(ctx *Context, name string, id IDInput, state *AzureBlobMountState, opts ...ResourceOption) (*AzureBlobMount, error)
    public static AzureBlobMount Get(string name, Input<string> id, AzureBlobMountState? state, CustomResourceOptions? opts = null)
    public static AzureBlobMount get(String name, Output<String> id, AzureBlobMountState state, CustomResourceOptions options)
    resources:  _:    type: databricks:AzureBlobMount    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v0.4.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.