@pulumi/databricks
Version:
A Pulumi package for creating and managing databricks cloud resources.
91 lines (90 loc) • 3.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* ## Import
*
* !> Importing this resource is not currently supported.
*/
export declare class Mount extends pulumi.CustomResource {
/**
* Get an existing Mount 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<pulumi.ID>, state?: MountState, opts?: pulumi.CustomResourceOptions): Mount;
/**
* Returns true if the given object is an instance of Mount. 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 Mount;
readonly abfs: pulumi.Output<outputs.MountAbfs | undefined>;
readonly adl: pulumi.Output<outputs.MountAdl | undefined>;
readonly clusterId: pulumi.Output<string>;
readonly encryptionType: pulumi.Output<string | undefined>;
readonly extraConfigs: pulumi.Output<{
[key: string]: string;
} | undefined>;
readonly gs: pulumi.Output<outputs.MountGs | undefined>;
readonly name: pulumi.Output<string>;
readonly resourceId: pulumi.Output<string | undefined>;
readonly s3: pulumi.Output<outputs.MountS3 | undefined>;
/**
* (String) HDFS-compatible url
*/
readonly source: pulumi.Output<string>;
readonly uri: pulumi.Output<string | undefined>;
readonly wasb: pulumi.Output<outputs.MountWasb | undefined>;
/**
* Create a Mount 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?: MountArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Mount resources.
*/
export interface MountState {
abfs?: pulumi.Input<inputs.MountAbfs>;
adl?: pulumi.Input<inputs.MountAdl>;
clusterId?: pulumi.Input<string>;
encryptionType?: pulumi.Input<string>;
extraConfigs?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
gs?: pulumi.Input<inputs.MountGs>;
name?: pulumi.Input<string>;
resourceId?: pulumi.Input<string>;
s3?: pulumi.Input<inputs.MountS3>;
/**
* (String) HDFS-compatible url
*/
source?: pulumi.Input<string>;
uri?: pulumi.Input<string>;
wasb?: pulumi.Input<inputs.MountWasb>;
}
/**
* The set of arguments for constructing a Mount resource.
*/
export interface MountArgs {
abfs?: pulumi.Input<inputs.MountAbfs>;
adl?: pulumi.Input<inputs.MountAdl>;
clusterId?: pulumi.Input<string>;
encryptionType?: pulumi.Input<string>;
extraConfigs?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
gs?: pulumi.Input<inputs.MountGs>;
name?: pulumi.Input<string>;
resourceId?: pulumi.Input<string>;
s3?: pulumi.Input<inputs.MountS3>;
uri?: pulumi.Input<string>;
wasb?: pulumi.Input<inputs.MountWasb>;
}