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)
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",
},
});
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"),
},
})
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());
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",
})
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",
},
});
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
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.
Abfs - Adl
Changes to this property will trigger replacement.
Adl - Cluster
Id Changes to this property will trigger replacement.
- Encryption
Type Changes to this property will trigger replacement.
- Extra
Configs Changes to this property will trigger replacement.
- Gs
Changes to this property will trigger replacement.
Gs - Name
Changes to this property will trigger replacement.
- Resource
Id Changes to this property will trigger replacement.
- S3
Changes to this property will trigger replacement.
S3 - Uri
Changes to this property will trigger replacement.
- Wasb
Changes to this property will trigger replacement.
Wasb
- Abfs
Changes to this property will trigger replacement.
Abfs Args - Adl
Changes to this property will trigger replacement.
Adl Args - Cluster
Id Changes to this property will trigger replacement.
- Encryption
Type Changes to this property will trigger replacement.
- Extra
Configs Changes to this property will trigger replacement.
- Gs
Changes to this property will trigger replacement.
Gs Args - Name
Changes to this property will trigger replacement.
- Resource
Id Changes to this property will trigger replacement.
- S3
Changes to this property will trigger replacement.
S3Args - Uri
Changes to this property will trigger replacement.
- Wasb
Changes to this property will trigger replacement.
Wasb Args
- abfs
Changes to this property will trigger replacement.
Abfs - adl
Changes to this property will trigger replacement.
Adl - cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs - name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3 - uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb
- abfs
Changes to this property will trigger replacement.
Abfs - adl
Changes to this property will trigger replacement.
Adl - cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs - name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3 - uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb
- abfs
Changes to this property will trigger replacement.
Abfs Args - adl
Changes to this property will trigger replacement.
Adl Args - cluster_
id Changes to this property will trigger replacement.
- encryption_
type Changes to this property will trigger replacement.
- extra_
configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs Args - name
Changes to this property will trigger replacement.
- resource_
id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3Args - uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb Args
- abfs
Changes to this property will trigger replacement.
- adl
Changes to this property will trigger replacement.
- cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
- name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
- uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Outputs
All input properties are implicitly available as output properties. Additionally, the Mount resource produces the following output properties:
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.
- Abfs
Changes to this property will trigger replacement.
Abfs - Adl
Changes to this property will trigger replacement.
Adl - Cluster
Id Changes to this property will trigger replacement.
- Encryption
Type Changes to this property will trigger replacement.
- Extra
Configs Changes to this property will trigger replacement.
- Gs
Changes to this property will trigger replacement.
Gs - Name
Changes to this property will trigger replacement.
- Resource
Id Changes to this property will trigger replacement.
- S3
Changes to this property will trigger replacement.
S3 - Source string
- (String) HDFS-compatible url
- Uri
Changes to this property will trigger replacement.
- Wasb
Changes to this property will trigger replacement.
Wasb
- Abfs
Changes to this property will trigger replacement.
Abfs Args - Adl
Changes to this property will trigger replacement.
Adl Args - Cluster
Id Changes to this property will trigger replacement.
- Encryption
Type Changes to this property will trigger replacement.
- Extra
Configs Changes to this property will trigger replacement.
- Gs
Changes to this property will trigger replacement.
Gs Args - Name
Changes to this property will trigger replacement.
- Resource
Id Changes to this property will trigger replacement.
- S3
Changes to this property will trigger replacement.
S3Args - Source string
- (String) HDFS-compatible url
- Uri
Changes to this property will trigger replacement.
- Wasb
Changes to this property will trigger replacement.
Wasb Args
- abfs
Changes to this property will trigger replacement.
Abfs - adl
Changes to this property will trigger replacement.
Adl - cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs - name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3 - source String
- (String) HDFS-compatible url
- uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb
- abfs
Changes to this property will trigger replacement.
Abfs - adl
Changes to this property will trigger replacement.
Adl - cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs - name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3 - source string
- (String) HDFS-compatible url
- uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb
- abfs
Changes to this property will trigger replacement.
Abfs Args - adl
Changes to this property will trigger replacement.
Adl Args - cluster_
id Changes to this property will trigger replacement.
- encryption_
type Changes to this property will trigger replacement.
- extra_
configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
Gs Args - name
Changes to this property will trigger replacement.
- resource_
id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
S3Args - source str
- (String) HDFS-compatible url
- uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Wasb Args
- abfs
Changes to this property will trigger replacement.
- adl
Changes to this property will trigger replacement.
- cluster
Id Changes to this property will trigger replacement.
- encryption
Type Changes to this property will trigger replacement.
- extra
Configs Changes to this property will trigger replacement.
- gs
Changes to this property will trigger replacement.
- name
Changes to this property will trigger replacement.
- resource
Id Changes to this property will trigger replacement.
- s3
Changes to this property will trigger replacement.
- source String
- (String) HDFS-compatible url
- uri
Changes to this property will trigger replacement.
- wasb
Changes to this property will trigger replacement.
Supporting Types
MountAbfs, MountAbfsArgs
- Client
Id This property is required. Changes to this property will trigger replacement.
- Client
Secret Key This property is required. Changes to this property will trigger replacement.
- Client
Secret Scope This property is required. Changes to this property will trigger replacement.
- Initialize
File System This property is required. Changes to this property will trigger replacement.
- Container
Name Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Storage
Account Name Changes to this property will trigger replacement.
- Tenant
Id Changes to this property will trigger replacement.
- Client
Id This property is required. Changes to this property will trigger replacement.
- Client
Secret Key This property is required. Changes to this property will trigger replacement.
- Client
Secret Scope This property is required. Changes to this property will trigger replacement.
- Initialize
File System This property is required. Changes to this property will trigger replacement.
- Container
Name Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Storage
Account Name Changes to this property will trigger replacement.
- Tenant
Id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- initialize
File System This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- initialize
File System This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
- client_
id This property is required. Changes to this property will trigger replacement.
- client_
secret_ key This property is required. Changes to this property will trigger replacement.
- client_
secret_ scope This property is required. Changes to this property will trigger replacement.
- initialize_
file_ system This property is required. Changes to this property will trigger replacement.
- container_
name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage_
account_ name Changes to this property will trigger replacement.
- tenant_
id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- initialize
File System This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
MountAdl, MountAdlArgs
- Client
Id This property is required. Changes to this property will trigger replacement.
- Client
Secret Key This property is required. Changes to this property will trigger replacement.
- Client
Secret Scope This property is required. Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Spark
Conf Prefix Changes to this property will trigger replacement.
- Storage
Resource Name Changes to this property will trigger replacement.
- Tenant
Id Changes to this property will trigger replacement.
- Client
Id This property is required. Changes to this property will trigger replacement.
- Client
Secret Key This property is required. Changes to this property will trigger replacement.
- Client
Secret Scope This property is required. Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Spark
Conf Prefix Changes to this property will trigger replacement.
- Storage
Resource Name Changes to this property will trigger replacement.
- Tenant
Id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- spark
Conf Prefix Changes to this property will trigger replacement.
- storage
Resource Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- spark
Conf Prefix Changes to this property will trigger replacement.
- storage
Resource Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
- client_
id This property is required. Changes to this property will trigger replacement.
- client_
secret_ key This property is required. Changes to this property will trigger replacement.
- client_
secret_ scope This property is required. Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- spark_
conf_ prefix Changes to this property will trigger replacement.
- storage_
resource_ name Changes to this property will trigger replacement.
- tenant_
id Changes to this property will trigger replacement.
- client
Id This property is required. Changes to this property will trigger replacement.
- client
Secret Key This property is required. Changes to this property will trigger replacement.
- client
Secret Scope This property is required. Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- spark
Conf Prefix Changes to this property will trigger replacement.
- storage
Resource Name Changes to this property will trigger replacement.
- tenant
Id Changes to this property will trigger replacement.
MountGs, MountGsArgs
- Bucket
Name This property is required. Changes to this property will trigger replacement.
- Service
Account Changes to this property will trigger replacement.
- Bucket
Name This property is required. Changes to this property will trigger replacement.
- Service
Account Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- service
Account Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- service
Account Changes to this property will trigger replacement.
- bucket_
name This property is required. Changes to this property will trigger replacement.
- service_
account Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- service
Account Changes to this property will trigger replacement.
MountS3, MountS3Args
- Bucket
Name This property is required. Changes to this property will trigger replacement.
- Instance
Profile Changes to this property will trigger replacement.
- Bucket
Name This property is required. Changes to this property will trigger replacement.
- Instance
Profile Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- instance
Profile Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- instance
Profile Changes to this property will trigger replacement.
- bucket_
name This property is required. Changes to this property will trigger replacement.
- instance_
profile Changes to this property will trigger replacement.
- bucket
Name This property is required. Changes to this property will trigger replacement.
- instance
Profile Changes to this property will trigger replacement.
MountWasb, MountWasbArgs
- Auth
Type This property is required. Changes to this property will trigger replacement.
- Token
Secret Key This property is required. Changes to this property will trigger replacement.
- Token
Secret Scope This property is required. Changes to this property will trigger replacement.
- Container
Name Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Storage
Account Name Changes to this property will trigger replacement.
- Auth
Type This property is required. Changes to this property will trigger replacement.
- Token
Secret Key This property is required. Changes to this property will trigger replacement.
- Token
Secret Scope This property is required. Changes to this property will trigger replacement.
- Container
Name Changes to this property will trigger replacement.
- Directory
Changes to this property will trigger replacement.
- Storage
Account Name Changes to this property will trigger replacement.
- auth
Type This property is required. Changes to this property will trigger replacement.
- token
Secret Key This property is required. Changes to this property will trigger replacement.
- token
Secret Scope This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
- auth
Type This property is required. Changes to this property will trigger replacement.
- token
Secret Key This property is required. Changes to this property will trigger replacement.
- token
Secret Scope This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
- auth_
type This property is required. Changes to this property will trigger replacement.
- token_
secret_ key This property is required. Changes to this property will trigger replacement.
- token_
secret_ scope This property is required. Changes to this property will trigger replacement.
- container_
name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage_
account_ name Changes to this property will trigger replacement.
- auth
Type This property is required. Changes to this property will trigger replacement.
- token
Secret Key This property is required. Changes to this property will trigger replacement.
- token
Secret Scope This property is required. Changes to this property will trigger replacement.
- container
Name Changes to this property will trigger replacement.
- directory
Changes to this property will trigger replacement.
- storage
Account Name Changes to this property will trigger replacement.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricks
Terraform Provider.