1. Packages
  2. Databricks Provider
  3. API Docs
  4. Mount
Databricks v1.67.0 published on Thursday, Apr 17, 2025 by Pulumi

databricks.Mount

Explore with Pulumi AI

Import

!> Importing this resource is not currently supported.

Create Mount Resource

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

Constructor syntax

new Mount(name: string, args?: MountArgs, opts?: CustomResourceOptions);
@overload
def Mount(resource_name: str,
          args: Optional[MountArgs] = None,
          opts: Optional[ResourceOptions] = None)

@overload
def Mount(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          abfs: Optional[MountAbfsArgs] = None,
          adl: Optional[MountAdlArgs] = None,
          cluster_id: Optional[str] = None,
          encryption_type: Optional[str] = None,
          extra_configs: Optional[Mapping[str, str]] = None,
          gs: Optional[MountGsArgs] = None,
          name: Optional[str] = None,
          resource_id: Optional[str] = None,
          s3: Optional[MountS3Args] = None,
          uri: Optional[str] = None,
          wasb: Optional[MountWasbArgs] = None)
func NewMount(ctx *Context, name string, args *MountArgs, opts ...ResourceOption) (*Mount, error)
public Mount(string name, MountArgs? args = null, CustomResourceOptions? opts = null)
public Mount(String name, MountArgs args)
public Mount(String name, MountArgs args, CustomResourceOptions options)
type: databricks:Mount
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args MountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args MountArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args MountArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args MountArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MountArgs
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 mountResource = new Databricks.Mount("mountResource", new()
{
    Abfs = new Databricks.Inputs.MountAbfsArgs
    {
        ClientId = "string",
        ClientSecretKey = "string",
        ClientSecretScope = "string",
        InitializeFileSystem = false,
        ContainerName = "string",
        Directory = "string",
        StorageAccountName = "string",
        TenantId = "string",
    },
    Adl = new Databricks.Inputs.MountAdlArgs
    {
        ClientId = "string",
        ClientSecretKey = "string",
        ClientSecretScope = "string",
        Directory = "string",
        SparkConfPrefix = "string",
        StorageResourceName = "string",
        TenantId = "string",
    },
    ClusterId = "string",
    EncryptionType = "string",
    ExtraConfigs = 
    {
        { "string", "string" },
    },
    Gs = new Databricks.Inputs.MountGsArgs
    {
        BucketName = "string",
        ServiceAccount = "string",
    },
    Name = "string",
    ResourceId = "string",
    S3 = new Databricks.Inputs.MountS3Args
    {
        BucketName = "string",
        InstanceProfile = "string",
    },
    Uri = "string",
    Wasb = new Databricks.Inputs.MountWasbArgs
    {
        AuthType = "string",
        TokenSecretKey = "string",
        TokenSecretScope = "string",
        ContainerName = "string",
        Directory = "string",
        StorageAccountName = "string",
    },
});
Copy
example, err := databricks.NewMount(ctx, "mountResource", &databricks.MountArgs{
	Abfs: &databricks.MountAbfsArgs{
		ClientId:             pulumi.String("string"),
		ClientSecretKey:      pulumi.String("string"),
		ClientSecretScope:    pulumi.String("string"),
		InitializeFileSystem: pulumi.Bool(false),
		ContainerName:        pulumi.String("string"),
		Directory:            pulumi.String("string"),
		StorageAccountName:   pulumi.String("string"),
		TenantId:             pulumi.String("string"),
	},
	Adl: &databricks.MountAdlArgs{
		ClientId:            pulumi.String("string"),
		ClientSecretKey:     pulumi.String("string"),
		ClientSecretScope:   pulumi.String("string"),
		Directory:           pulumi.String("string"),
		SparkConfPrefix:     pulumi.String("string"),
		StorageResourceName: pulumi.String("string"),
		TenantId:            pulumi.String("string"),
	},
	ClusterId:      pulumi.String("string"),
	EncryptionType: pulumi.String("string"),
	ExtraConfigs: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Gs: &databricks.MountGsArgs{
		BucketName:     pulumi.String("string"),
		ServiceAccount: pulumi.String("string"),
	},
	Name:       pulumi.String("string"),
	ResourceId: pulumi.String("string"),
	S3: &databricks.MountS3Args{
		BucketName:      pulumi.String("string"),
		InstanceProfile: pulumi.String("string"),
	},
	Uri: pulumi.String("string"),
	Wasb: &databricks.MountWasbArgs{
		AuthType:           pulumi.String("string"),
		TokenSecretKey:     pulumi.String("string"),
		TokenSecretScope:   pulumi.String("string"),
		ContainerName:      pulumi.String("string"),
		Directory:          pulumi.String("string"),
		StorageAccountName: pulumi.String("string"),
	},
})
Copy
var mountResource = new Mount("mountResource", MountArgs.builder()
    .abfs(MountAbfsArgs.builder()
        .clientId("string")
        .clientSecretKey("string")
        .clientSecretScope("string")
        .initializeFileSystem(false)
        .containerName("string")
        .directory("string")
        .storageAccountName("string")
        .tenantId("string")
        .build())
    .adl(MountAdlArgs.builder()
        .clientId("string")
        .clientSecretKey("string")
        .clientSecretScope("string")
        .directory("string")
        .sparkConfPrefix("string")
        .storageResourceName("string")
        .tenantId("string")
        .build())
    .clusterId("string")
    .encryptionType("string")
    .extraConfigs(Map.of("string", "string"))
    .gs(MountGsArgs.builder()
        .bucketName("string")
        .serviceAccount("string")
        .build())
    .name("string")
    .resourceId("string")
    .s3(MountS3Args.builder()
        .bucketName("string")
        .instanceProfile("string")
        .build())
    .uri("string")
    .wasb(MountWasbArgs.builder()
        .authType("string")
        .tokenSecretKey("string")
        .tokenSecretScope("string")
        .containerName("string")
        .directory("string")
        .storageAccountName("string")
        .build())
    .build());
Copy
mount_resource = databricks.Mount("mountResource",
    abfs={
        "client_id": "string",
        "client_secret_key": "string",
        "client_secret_scope": "string",
        "initialize_file_system": False,
        "container_name": "string",
        "directory": "string",
        "storage_account_name": "string",
        "tenant_id": "string",
    },
    adl={
        "client_id": "string",
        "client_secret_key": "string",
        "client_secret_scope": "string",
        "directory": "string",
        "spark_conf_prefix": "string",
        "storage_resource_name": "string",
        "tenant_id": "string",
    },
    cluster_id="string",
    encryption_type="string",
    extra_configs={
        "string": "string",
    },
    gs={
        "bucket_name": "string",
        "service_account": "string",
    },
    name="string",
    resource_id="string",
    s3={
        "bucket_name": "string",
        "instance_profile": "string",
    },
    uri="string",
    wasb={
        "auth_type": "string",
        "token_secret_key": "string",
        "token_secret_scope": "string",
        "container_name": "string",
        "directory": "string",
        "storage_account_name": "string",
    })
Copy
const mountResource = new databricks.Mount("mountResource", {
    abfs: {
        clientId: "string",
        clientSecretKey: "string",
        clientSecretScope: "string",
        initializeFileSystem: false,
        containerName: "string",
        directory: "string",
        storageAccountName: "string",
        tenantId: "string",
    },
    adl: {
        clientId: "string",
        clientSecretKey: "string",
        clientSecretScope: "string",
        directory: "string",
        sparkConfPrefix: "string",
        storageResourceName: "string",
        tenantId: "string",
    },
    clusterId: "string",
    encryptionType: "string",
    extraConfigs: {
        string: "string",
    },
    gs: {
        bucketName: "string",
        serviceAccount: "string",
    },
    name: "string",
    resourceId: "string",
    s3: {
        bucketName: "string",
        instanceProfile: "string",
    },
    uri: "string",
    wasb: {
        authType: "string",
        tokenSecretKey: "string",
        tokenSecretScope: "string",
        containerName: "string",
        directory: "string",
        storageAccountName: "string",
    },
});
Copy
type: databricks:Mount
properties:
    abfs:
        clientId: string
        clientSecretKey: string
        clientSecretScope: string
        containerName: string
        directory: string
        initializeFileSystem: false
        storageAccountName: string
        tenantId: string
    adl:
        clientId: string
        clientSecretKey: string
        clientSecretScope: string
        directory: string
        sparkConfPrefix: string
        storageResourceName: string
        tenantId: string
    clusterId: string
    encryptionType: string
    extraConfigs:
        string: string
    gs:
        bucketName: string
        serviceAccount: string
    name: string
    resourceId: string
    s3:
        bucketName: string
        instanceProfile: string
    uri: string
    wasb:
        authType: string
        containerName: string
        directory: string
        storageAccountName: string
        tokenSecretKey: string
        tokenSecretScope: string
Copy

Mount 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 Mount resource accepts the following input properties:

Abfs Changes to this property will trigger replacement. MountAbfs
Adl Changes to this property will trigger replacement. MountAdl
ClusterId Changes to this property will trigger replacement. string
EncryptionType Changes to this property will trigger replacement. string
ExtraConfigs Changes to this property will trigger replacement. Dictionary<string, string>
Gs Changes to this property will trigger replacement. MountGs
Name Changes to this property will trigger replacement. string
ResourceId Changes to this property will trigger replacement. string
S3 Changes to this property will trigger replacement. MountS3
Uri Changes to this property will trigger replacement. string
Wasb Changes to this property will trigger replacement. MountWasb
Abfs Changes to this property will trigger replacement. MountAbfsArgs
Adl Changes to this property will trigger replacement. MountAdlArgs
ClusterId Changes to this property will trigger replacement. string
EncryptionType Changes to this property will trigger replacement. string
ExtraConfigs Changes to this property will trigger replacement. map[string]string
Gs Changes to this property will trigger replacement. MountGsArgs
Name Changes to this property will trigger replacement. string
ResourceId Changes to this property will trigger replacement. string
S3 Changes to this property will trigger replacement. MountS3Args
Uri Changes to this property will trigger replacement. string
Wasb Changes to this property will trigger replacement. MountWasbArgs
abfs Changes to this property will trigger replacement. MountAbfs
adl Changes to this property will trigger replacement. MountAdl
clusterId Changes to this property will trigger replacement. String
encryptionType Changes to this property will trigger replacement. String
extraConfigs Changes to this property will trigger replacement. Map<String,String>
gs Changes to this property will trigger replacement. MountGs
name Changes to this property will trigger replacement. String
resourceId Changes to this property will trigger replacement. String
s3 Changes to this property will trigger replacement. MountS3
uri Changes to this property will trigger replacement. String
wasb Changes to this property will trigger replacement. MountWasb
abfs Changes to this property will trigger replacement. MountAbfs
adl Changes to this property will trigger replacement. MountAdl
clusterId Changes to this property will trigger replacement. string
encryptionType Changes to this property will trigger replacement. string
extraConfigs Changes to this property will trigger replacement. {[key: string]: string}
gs Changes to this property will trigger replacement. MountGs
name Changes to this property will trigger replacement. string
resourceId Changes to this property will trigger replacement. string
s3 Changes to this property will trigger replacement. MountS3
uri Changes to this property will trigger replacement. string
wasb Changes to this property will trigger replacement. MountWasb
abfs Changes to this property will trigger replacement. MountAbfsArgs
adl Changes to this property will trigger replacement. MountAdlArgs
cluster_id Changes to this property will trigger replacement. str
encryption_type Changes to this property will trigger replacement. str
extra_configs Changes to this property will trigger replacement. Mapping[str, str]
gs Changes to this property will trigger replacement. MountGsArgs
name Changes to this property will trigger replacement. str
resource_id Changes to this property will trigger replacement. str
s3 Changes to this property will trigger replacement. MountS3Args
uri Changes to this property will trigger replacement. str
wasb Changes to this property will trigger replacement. MountWasbArgs
abfs Changes to this property will trigger replacement. Property Map
adl Changes to this property will trigger replacement. Property Map
clusterId Changes to this property will trigger replacement. String
encryptionType Changes to this property will trigger replacement. String
extraConfigs Changes to this property will trigger replacement. Map<String>
gs Changes to this property will trigger replacement. Property Map
name Changes to this property will trigger replacement. String
resourceId Changes to this property will trigger replacement. String
s3 Changes to this property will trigger replacement. Property Map
uri Changes to this property will trigger replacement. String
wasb Changes to this property will trigger replacement. Property Map

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Source string
(String) HDFS-compatible url
Id string
The provider-assigned unique ID for this managed resource.
Source string
(String) HDFS-compatible url
id String
The provider-assigned unique ID for this managed resource.
source String
(String) HDFS-compatible url
id string
The provider-assigned unique ID for this managed resource.
source string
(String) HDFS-compatible url
id str
The provider-assigned unique ID for this managed resource.
source str
(String) HDFS-compatible url
id String
The provider-assigned unique ID for this managed resource.
source String
(String) HDFS-compatible url

Look up Existing Mount Resource

Get an existing Mount 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?: MountState, opts?: CustomResourceOptions): Mount
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        abfs: Optional[MountAbfsArgs] = None,
        adl: Optional[MountAdlArgs] = None,
        cluster_id: Optional[str] = None,
        encryption_type: Optional[str] = None,
        extra_configs: Optional[Mapping[str, str]] = None,
        gs: Optional[MountGsArgs] = None,
        name: Optional[str] = None,
        resource_id: Optional[str] = None,
        s3: Optional[MountS3Args] = None,
        source: Optional[str] = None,
        uri: Optional[str] = None,
        wasb: Optional[MountWasbArgs] = None) -> Mount
func GetMount(ctx *Context, name string, id IDInput, state *MountState, opts ...ResourceOption) (*Mount, error)
public static Mount Get(string name, Input<string> id, MountState? state, CustomResourceOptions? opts = null)
public static Mount get(String name, Output<String> id, MountState state, CustomResourceOptions options)
resources:  _:    type: databricks:Mount    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Abfs Changes to this property will trigger replacement. MountAbfs
Adl Changes to this property will trigger replacement. MountAdl
ClusterId Changes to this property will trigger replacement. string
EncryptionType Changes to this property will trigger replacement. string
ExtraConfigs Changes to this property will trigger replacement. Dictionary<string, string>
Gs Changes to this property will trigger replacement. MountGs
Name Changes to this property will trigger replacement. string
ResourceId Changes to this property will trigger replacement. string
S3 Changes to this property will trigger replacement. MountS3
Source string
(String) HDFS-compatible url
Uri Changes to this property will trigger replacement. string
Wasb Changes to this property will trigger replacement. MountWasb
Abfs Changes to this property will trigger replacement. MountAbfsArgs
Adl Changes to this property will trigger replacement. MountAdlArgs
ClusterId Changes to this property will trigger replacement. string
EncryptionType Changes to this property will trigger replacement. string
ExtraConfigs Changes to this property will trigger replacement. map[string]string
Gs Changes to this property will trigger replacement. MountGsArgs
Name Changes to this property will trigger replacement. string
ResourceId Changes to this property will trigger replacement. string
S3 Changes to this property will trigger replacement. MountS3Args
Source string
(String) HDFS-compatible url
Uri Changes to this property will trigger replacement. string
Wasb Changes to this property will trigger replacement. MountWasbArgs
abfs Changes to this property will trigger replacement. MountAbfs
adl Changes to this property will trigger replacement. MountAdl
clusterId Changes to this property will trigger replacement. String
encryptionType Changes to this property will trigger replacement. String
extraConfigs Changes to this property will trigger replacement. Map<String,String>
gs Changes to this property will trigger replacement. MountGs
name Changes to this property will trigger replacement. String
resourceId Changes to this property will trigger replacement. String
s3 Changes to this property will trigger replacement. MountS3
source String
(String) HDFS-compatible url
uri Changes to this property will trigger replacement. String
wasb Changes to this property will trigger replacement. MountWasb
abfs Changes to this property will trigger replacement. MountAbfs
adl Changes to this property will trigger replacement. MountAdl
clusterId Changes to this property will trigger replacement. string
encryptionType Changes to this property will trigger replacement. string
extraConfigs Changes to this property will trigger replacement. {[key: string]: string}
gs Changes to this property will trigger replacement. MountGs
name Changes to this property will trigger replacement. string
resourceId Changes to this property will trigger replacement. string
s3 Changes to this property will trigger replacement. MountS3
source string
(String) HDFS-compatible url
uri Changes to this property will trigger replacement. string
wasb Changes to this property will trigger replacement. MountWasb
abfs Changes to this property will trigger replacement. MountAbfsArgs
adl Changes to this property will trigger replacement. MountAdlArgs
cluster_id Changes to this property will trigger replacement. str
encryption_type Changes to this property will trigger replacement. str
extra_configs Changes to this property will trigger replacement. Mapping[str, str]
gs Changes to this property will trigger replacement. MountGsArgs
name Changes to this property will trigger replacement. str
resource_id Changes to this property will trigger replacement. str
s3 Changes to this property will trigger replacement. MountS3Args
source str
(String) HDFS-compatible url
uri Changes to this property will trigger replacement. str
wasb Changes to this property will trigger replacement. MountWasbArgs
abfs Changes to this property will trigger replacement. Property Map
adl Changes to this property will trigger replacement. Property Map
clusterId Changes to this property will trigger replacement. String
encryptionType Changes to this property will trigger replacement. String
extraConfigs Changes to this property will trigger replacement. Map<String>
gs Changes to this property will trigger replacement. Property Map
name Changes to this property will trigger replacement. String
resourceId Changes to this property will trigger replacement. String
s3 Changes to this property will trigger replacement. Property Map
source String
(String) HDFS-compatible url
uri Changes to this property will trigger replacement. String
wasb Changes to this property will trigger replacement. Property Map

Supporting Types

MountAbfs
, MountAbfsArgs

ClientId
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
InitializeFileSystem
This property is required.
Changes to this property will trigger replacement.
bool
ContainerName Changes to this property will trigger replacement. string
Directory Changes to this property will trigger replacement. string
StorageAccountName Changes to this property will trigger replacement. string
TenantId Changes to this property will trigger replacement. string
ClientId
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
InitializeFileSystem
This property is required.
Changes to this property will trigger replacement.
bool
ContainerName Changes to this property will trigger replacement. string
Directory Changes to this property will trigger replacement. string
StorageAccountName Changes to this property will trigger replacement. string
TenantId Changes to this property will trigger replacement. string
clientId
This property is required.
Changes to this property will trigger replacement.
String
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
String
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
String
initializeFileSystem
This property is required.
Changes to this property will trigger replacement.
Boolean
containerName Changes to this property will trigger replacement. String
directory Changes to this property will trigger replacement. String
storageAccountName Changes to this property will trigger replacement. String
tenantId Changes to this property will trigger replacement. String
clientId
This property is required.
Changes to this property will trigger replacement.
string
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
initializeFileSystem
This property is required.
Changes to this property will trigger replacement.
boolean
containerName Changes to this property will trigger replacement. string
directory Changes to this property will trigger replacement. string
storageAccountName Changes to this property will trigger replacement. string
tenantId Changes to this property will trigger replacement. string
client_id
This property is required.
Changes to this property will trigger replacement.
str
client_secret_key
This property is required.
Changes to this property will trigger replacement.
str
client_secret_scope
This property is required.
Changes to this property will trigger replacement.
str
initialize_file_system
This property is required.
Changes to this property will trigger replacement.
bool
container_name Changes to this property will trigger replacement. str
directory Changes to this property will trigger replacement. str
storage_account_name Changes to this property will trigger replacement. str
tenant_id Changes to this property will trigger replacement. str
clientId
This property is required.
Changes to this property will trigger replacement.
String
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
String
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
String
initializeFileSystem
This property is required.
Changes to this property will trigger replacement.
Boolean
containerName Changes to this property will trigger replacement. String
directory Changes to this property will trigger replacement. String
storageAccountName Changes to this property will trigger replacement. String
tenantId Changes to this property will trigger replacement. String

MountAdl
, MountAdlArgs

ClientId
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
Directory Changes to this property will trigger replacement. string
SparkConfPrefix Changes to this property will trigger replacement. string
StorageResourceName Changes to this property will trigger replacement. string
TenantId Changes to this property will trigger replacement. string
ClientId
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
ClientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
Directory Changes to this property will trigger replacement. string
SparkConfPrefix Changes to this property will trigger replacement. string
StorageResourceName Changes to this property will trigger replacement. string
TenantId Changes to this property will trigger replacement. string
clientId
This property is required.
Changes to this property will trigger replacement.
String
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
String
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
String
directory Changes to this property will trigger replacement. String
sparkConfPrefix Changes to this property will trigger replacement. String
storageResourceName Changes to this property will trigger replacement. String
tenantId Changes to this property will trigger replacement. String
clientId
This property is required.
Changes to this property will trigger replacement.
string
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
string
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
string
directory Changes to this property will trigger replacement. string
sparkConfPrefix Changes to this property will trigger replacement. string
storageResourceName Changes to this property will trigger replacement. string
tenantId Changes to this property will trigger replacement. string
client_id
This property is required.
Changes to this property will trigger replacement.
str
client_secret_key
This property is required.
Changes to this property will trigger replacement.
str
client_secret_scope
This property is required.
Changes to this property will trigger replacement.
str
directory Changes to this property will trigger replacement. str
spark_conf_prefix Changes to this property will trigger replacement. str
storage_resource_name Changes to this property will trigger replacement. str
tenant_id Changes to this property will trigger replacement. str
clientId
This property is required.
Changes to this property will trigger replacement.
String
clientSecretKey
This property is required.
Changes to this property will trigger replacement.
String
clientSecretScope
This property is required.
Changes to this property will trigger replacement.
String
directory Changes to this property will trigger replacement. String
sparkConfPrefix Changes to this property will trigger replacement. String
storageResourceName Changes to this property will trigger replacement. String
tenantId Changes to this property will trigger replacement. String

MountGs
, MountGsArgs

BucketName
This property is required.
Changes to this property will trigger replacement.
string
ServiceAccount Changes to this property will trigger replacement. string
BucketName
This property is required.
Changes to this property will trigger replacement.
string
ServiceAccount Changes to this property will trigger replacement. string
bucketName
This property is required.
Changes to this property will trigger replacement.
String
serviceAccount Changes to this property will trigger replacement. String
bucketName
This property is required.
Changes to this property will trigger replacement.
string
serviceAccount Changes to this property will trigger replacement. string
bucket_name
This property is required.
Changes to this property will trigger replacement.
str
service_account Changes to this property will trigger replacement. str
bucketName
This property is required.
Changes to this property will trigger replacement.
String
serviceAccount Changes to this property will trigger replacement. String

MountS3
, MountS3Args

BucketName
This property is required.
Changes to this property will trigger replacement.
string
InstanceProfile Changes to this property will trigger replacement. string
BucketName
This property is required.
Changes to this property will trigger replacement.
string
InstanceProfile Changes to this property will trigger replacement. string
bucketName
This property is required.
Changes to this property will trigger replacement.
String
instanceProfile Changes to this property will trigger replacement. String
bucketName
This property is required.
Changes to this property will trigger replacement.
string
instanceProfile Changes to this property will trigger replacement. string
bucket_name
This property is required.
Changes to this property will trigger replacement.
str
instance_profile Changes to this property will trigger replacement. str
bucketName
This property is required.
Changes to this property will trigger replacement.
String
instanceProfile Changes to this property will trigger replacement. String

MountWasb
, MountWasbArgs

AuthType
This property is required.
Changes to this property will trigger replacement.
string
TokenSecretKey
This property is required.
Changes to this property will trigger replacement.
string
TokenSecretScope
This property is required.
Changes to this property will trigger replacement.
string
ContainerName Changes to this property will trigger replacement. string
Directory Changes to this property will trigger replacement. string
StorageAccountName Changes to this property will trigger replacement. string
AuthType
This property is required.
Changes to this property will trigger replacement.
string
TokenSecretKey
This property is required.
Changes to this property will trigger replacement.
string
TokenSecretScope
This property is required.
Changes to this property will trigger replacement.
string
ContainerName Changes to this property will trigger replacement. string
Directory Changes to this property will trigger replacement. string
StorageAccountName Changes to this property will trigger replacement. string
authType
This property is required.
Changes to this property will trigger replacement.
String
tokenSecretKey
This property is required.
Changes to this property will trigger replacement.
String
tokenSecretScope
This property is required.
Changes to this property will trigger replacement.
String
containerName Changes to this property will trigger replacement. String
directory Changes to this property will trigger replacement. String
storageAccountName Changes to this property will trigger replacement. String
authType
This property is required.
Changes to this property will trigger replacement.
string
tokenSecretKey
This property is required.
Changes to this property will trigger replacement.
string
tokenSecretScope
This property is required.
Changes to this property will trigger replacement.
string
containerName Changes to this property will trigger replacement. string
directory Changes to this property will trigger replacement. string
storageAccountName Changes to this property will trigger replacement. string
auth_type
This property is required.
Changes to this property will trigger replacement.
str
token_secret_key
This property is required.
Changes to this property will trigger replacement.
str
token_secret_scope
This property is required.
Changes to this property will trigger replacement.
str
container_name Changes to this property will trigger replacement. str
directory Changes to this property will trigger replacement. str
storage_account_name Changes to this property will trigger replacement. str
authType
This property is required.
Changes to this property will trigger replacement.
String
tokenSecretKey
This property is required.
Changes to this property will trigger replacement.
String
tokenSecretScope
This property is required.
Changes to this property will trigger replacement.
String
containerName Changes to this property will trigger replacement. String
directory Changes to this property will trigger replacement. String
storageAccountName Changes to this property will trigger replacement. String

Package Details

Repository
databricks pulumi/pulumi-databricks
License
Apache-2.0
Notes
This Pulumi package is based on the databricks Terraform Provider.