package
0.4.1
Repository: https://github.com/pulumi/pulumi-databricks.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This datasource configures a simple access policy for AWS S3 buckets, so that Databricks can access data in it.
No description provided by the author
> **Note** This resource has an evolving API, which may change in future versions of the provider.
No description provided by the author
GetAwsS3Mount gets an existing AwsS3Mount resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetAzureAdlsGen1Mount gets an existing AzureAdlsGen1Mount resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetAzureAdlsGen2Mount gets an existing AzureAdlsGen2Mount resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetAzureBlobMount gets an existing AzureBlobMount resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetCatalog gets an existing Catalog resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage Listing all catalogs: ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { all, err := databricks.GetCatalogs(ctx, nil, nil) if err != nil { return err } ctx.Export("allCatalogs", all) return nil }) } ``` ## Related Resources The following resources are used in the same context: * Table to manage tables within Unity Catalog.
No description provided by the author
GetCluster gets an existing Cluster resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetClusterPolicy gets an existing ClusterPolicy resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage Retrieve all clusters on this workspace on AWS or GCP: ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.GetClusters(ctx, nil, nil) if err != nil { return err } return nil }) } ``` Retrieve all clusters with "Shared" in their cluster name on this Azure Databricks workspace: ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.GetClusters(ctx, &GetClustersArgs{ ClusterNameContains: pulumi.StringRef("shared"), }, nil) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * End to end workspace management guide * Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
No description provided by the author
## Exported attributes Data source exposes the following attributes: * `id` - The id of the calling user.
GetDbfsFile gets an existing DbfsFile resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.GetDbfsFilePaths(ctx, &GetDbfsFilePathsArgs{ Path: "dbfs:/user/hive/default.db/table", Recursive: false, }, nil) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * End to end workspace management guide * DbfsFile data to get file content from [Databricks File System (DBFS)](https://docs.databricks.com/data/databricks-file-system.html).
No description provided by the author
GetDirectory gets an existing Directory resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetExternalLocation gets an existing ExternalLocation resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetGitCredential gets an existing GitCredential resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetGlobalInitScript gets an existing GlobalInitScript resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetGrants gets an existing Grants resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetGroup gets an existing Group resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetGroupInstanceProfile gets an existing GroupInstanceProfile resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetInstancePool gets an existing InstancePool resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetInstanceProfile gets an existing InstanceProfile resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetIpAccessList gets an existing IpAccessList resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetJob gets an existing Job resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Related Resources The following resources are used in the same context: * Job to manage [Databricks Jobs](https://docs.databricks.com/jobs.html) to run non-interactive code in a databricks_cluster.
No description provided by the author
GetLibrary gets an existing Library resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMetastore gets an existing Metastore resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMetastoreAssignment gets an existing MetastoreAssignment resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMetastoreDataAccess gets an existing MetastoreDataAccess resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMlflowExperiment gets an existing MlflowExperiment resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMlflowModel gets an existing MlflowModel resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMlflowWebhook gets an existing MlflowWebhook resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMount gets an existing Mount resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsCredentials gets an existing MwsCredentials resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsCustomerManagedKeys gets an existing MwsCustomerManagedKeys resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsLogDelivery gets an existing MwsLogDelivery resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsNetworks gets an existing MwsNetworks resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsPrivateAccessSettings gets an existing MwsPrivateAccessSettings resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsStorageConfigurations gets an existing MwsStorageConfigurations resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsVpcEndpoint gets an existing MwsVpcEndpoint resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMwsWorkspaces gets an existing MwsWorkspaces resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { withGpu, err := databricks.GetNodeType(ctx, &GetNodeTypeArgs{ LocalDisk: pulumi.BoolRef(true), MinCores: pulumi.IntRef(16), GbPerCore: pulumi.IntRef(1), MinGpus: pulumi.IntRef(1), }, nil) if err != nil { return err } gpuMl, err := databricks.GetSparkVersion(ctx, &GetSparkVersionArgs{ Gpu: pulumi.BoolRef(true), Ml: pulumi.BoolRef(true), }, nil) if err != nil { return err } _, err = databricks.NewCluster(ctx, "research", &databricks.ClusterArgs{ ClusterName: pulumi.String("Research Cluster"), SparkVersion: pulumi.String(gpuMl.Id), NodeTypeId: pulumi.String(withGpu.Id), AutoterminationMinutes: pulumi.Int(20), Autoscale: &ClusterAutoscaleArgs{ MinWorkers: pulumi.Int(1), MaxWorkers: pulumi.Int(50), }, }) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * End to end workspace management guide * Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
No description provided by the author
GetNotebook gets an existing Notebook resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.GetNotebookPaths(ctx, &GetNotebookPathsArgs{ Path: "/Production", Recursive: true, }, nil) if err != nil { return err } return nil }) } ```.
No description provided by the author
GetOboToken gets an existing OboToken resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetPermissions gets an existing Permissions resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetPipeline gets an existing Pipeline resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetRepo gets an existing Repo resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSchema gets an existing Schema resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage Listing all schemas in a _sandbox_ databricks_catalog: ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { sandbox, err := databricks.GetSchemas(ctx, &GetSchemasArgs{ CatalogName: "sandbox", }, nil) if err != nil { return err } ctx.Export("allSandboxSchemas", sandbox) return nil }) } ``` ## Related Resources The following resources are used in the same context: * Table to manage tables within Unity Catalog.
No description provided by the author
GetSecret gets an existing Secret resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSecretAcl gets an existing SecretAcl resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSecretScope gets an existing SecretScope resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetServicePrincipal gets an existing ServicePrincipal resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetServicePrincipalRole gets an existing ServicePrincipalRole resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { withGpu, err := databricks.GetNodeType(ctx, &GetNodeTypeArgs{ LocalDisk: pulumi.BoolRef(true), MinCores: pulumi.IntRef(16), GbPerCore: pulumi.IntRef(1), MinGpus: pulumi.IntRef(1), }, nil) if err != nil { return err } gpuMl, err := databricks.GetSparkVersion(ctx, &GetSparkVersionArgs{ Gpu: pulumi.BoolRef(true), Ml: pulumi.BoolRef(true), }, nil) if err != nil { return err } _, err = databricks.NewCluster(ctx, "research", &databricks.ClusterArgs{ ClusterName: pulumi.String("Research Cluster"), SparkVersion: pulumi.String(gpuMl.Id), NodeTypeId: pulumi.String(withGpu.Id), AutoterminationMinutes: pulumi.Int(20), Autoscale: &ClusterAutoscaleArgs{ MinWorkers: pulumi.Int(1), MaxWorkers: pulumi.Int(50), }, }) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * End to end workspace management guide * Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
No description provided by the author
GetSqlDashboard gets an existing SqlDashboard resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlEndpoint gets an existing SqlEndpoint resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlGlobalConfig gets an existing SqlGlobalConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlPermissions gets an existing SqlPermissions resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlQuery gets an existing SqlQuery resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlVisualization gets an existing SqlVisualization resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetSqlWidget gets an existing SqlWidget resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetStorageCredential gets an existing StorageCredential resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetTable gets an existing Table resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Related Resources The following resources are used in the same context: * Table to manage tables within Unity Catalog.
No description provided by the author
GetToken gets an existing Token resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetUser gets an existing User resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetUserInstanceProfile gets an existing UserInstanceProfile resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetUserRole gets an existing UserRole resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Related Resources The following resources are used in the same context: * Table to manage tables within Unity Catalog.
No description provided by the author
GetWorkspaceConf gets an existing WorkspaceConf resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.GetZones(ctx, nil, nil) if err != nil { return err } return nil }) } ```.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.LookupDbfsFile(ctx, &GetDbfsFileArgs{ LimitFileSize: 10240, Path: "dbfs:/reports/some.csv", }, nil) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * End to end workspace management guide * getDbfsFilePaths data to get list of file names from get file content from [Databricks File System (DBFS)](https://docs.databricks.com/data/databricks-file-system.html).
No description provided by the author
## Related Resources The following resources are used in the same context: * End to end workspace management guide * Cluster to create [Databricks Clusters](https://docs.databricks.com/clusters/index.html).
No description provided by the author
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.LookupNotebook(ctx, &GetNotebookArgs{ Format: "SOURCE", Path: "/Production/Features", }, nil) if err != nil { return err } return nil }) } ```.
No description provided by the author
## Related Resources The following resources are used in the same context: * End to end workspace management guide * getCurrentUser data to retrieve information about User or databricks_service_principal, that is calling Databricks REST API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewAwsS3Mount registers a new resource with the given unique name, arguments, and options.
NewAzureAdlsGen1Mount registers a new resource with the given unique name, arguments, and options.
NewAzureAdlsGen2Mount registers a new resource with the given unique name, arguments, and options.
NewAzureBlobMount registers a new resource with the given unique name, arguments, and options.
NewCatalog registers a new resource with the given unique name, arguments, and options.
NewCluster registers a new resource with the given unique name, arguments, and options.
NewClusterPolicy registers a new resource with the given unique name, arguments, and options.
NewDbfsFile registers a new resource with the given unique name, arguments, and options.
NewDirectory registers a new resource with the given unique name, arguments, and options.
NewExternalLocation registers a new resource with the given unique name, arguments, and options.
NewGitCredential registers a new resource with the given unique name, arguments, and options.
NewGlobalInitScript registers a new resource with the given unique name, arguments, and options.
NewGrants registers a new resource with the given unique name, arguments, and options.
NewGroup registers a new resource with the given unique name, arguments, and options.
NewGroupInstanceProfile registers a new resource with the given unique name, arguments, and options.
NewInstancePool registers a new resource with the given unique name, arguments, and options.
NewInstanceProfile registers a new resource with the given unique name, arguments, and options.
NewIpAccessList registers a new resource with the given unique name, arguments, and options.
NewJob registers a new resource with the given unique name, arguments, and options.
NewLibrary registers a new resource with the given unique name, arguments, and options.
NewMetastore registers a new resource with the given unique name, arguments, and options.
NewMetastoreAssignment registers a new resource with the given unique name, arguments, and options.
NewMetastoreDataAccess registers a new resource with the given unique name, arguments, and options.
NewMlflowExperiment registers a new resource with the given unique name, arguments, and options.
NewMlflowModel registers a new resource with the given unique name, arguments, and options.
NewMlflowWebhook registers a new resource with the given unique name, arguments, and options.
NewMount registers a new resource with the given unique name, arguments, and options.
NewMwsCredentials registers a new resource with the given unique name, arguments, and options.
NewMwsCustomerManagedKeys registers a new resource with the given unique name, arguments, and options.
NewMwsLogDelivery registers a new resource with the given unique name, arguments, and options.
NewMwsNetworks registers a new resource with the given unique name, arguments, and options.
NewMwsPrivateAccessSettings registers a new resource with the given unique name, arguments, and options.
NewMwsStorageConfigurations registers a new resource with the given unique name, arguments, and options.
NewMwsVpcEndpoint registers a new resource with the given unique name, arguments, and options.
NewMwsWorkspaces registers a new resource with the given unique name, arguments, and options.
NewNotebook registers a new resource with the given unique name, arguments, and options.
NewOboToken registers a new resource with the given unique name, arguments, and options.
NewPermissions registers a new resource with the given unique name, arguments, and options.
NewPipeline registers a new resource with the given unique name, arguments, and options.
NewProvider registers a new resource with the given unique name, arguments, and options.
NewRepo registers a new resource with the given unique name, arguments, and options.
NewSchema registers a new resource with the given unique name, arguments, and options.
NewSecret registers a new resource with the given unique name, arguments, and options.
NewSecretAcl registers a new resource with the given unique name, arguments, and options.
NewSecretScope registers a new resource with the given unique name, arguments, and options.
NewServicePrincipal registers a new resource with the given unique name, arguments, and options.
NewServicePrincipalRole registers a new resource with the given unique name, arguments, and options.
NewSqlDashboard registers a new resource with the given unique name, arguments, and options.
NewSqlEndpoint registers a new resource with the given unique name, arguments, and options.
NewSqlGlobalConfig registers a new resource with the given unique name, arguments, and options.
NewSqlPermissions registers a new resource with the given unique name, arguments, and options.
NewSqlQuery registers a new resource with the given unique name, arguments, and options.
NewSqlVisualization registers a new resource with the given unique name, arguments, and options.
NewSqlWidget registers a new resource with the given unique name, arguments, and options.
NewStorageCredential registers a new resource with the given unique name, arguments, and options.
NewTable registers a new resource with the given unique name, arguments, and options.
NewToken registers a new resource with the given unique name, arguments, and options.
NewUser registers a new resource with the given unique name, arguments, and options.
NewUserInstanceProfile registers a new resource with the given unique name, arguments, and options.
NewUserRole registers a new resource with the given unique name, arguments, and options.
NewWorkspaceConf registers a new resource with the given unique name, arguments, and options.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PkgVersion uses reflection to determine the version of the current package.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
The set of arguments for constructing a AwsS3Mount resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a AzureAdlsGen1Mount resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a AzureAdlsGen2Mount resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a AzureBlobMount resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage ```go package main import ( "github.com/pulumi/pulumi-databricks/sdk/go/databricks" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := databricks.NewCatalog(ctx, "sandbox", &databricks.CatalogArgs{ MetastoreId: pulumi.Any(databricks_metastore.This.Id), Comment: pulumi.String("this catalog is managed by terraform"), Properties: pulumi.AnyMap{ "purpose": pulumi.Any("testing"), }, }) if err != nil { return err } return nil }) } ``` ## Related Resources The following resources are used in the same context: * Table data to list tables within Unity Catalog.
The set of arguments for constructing a Catalog resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource cluster can be imported using cluster id.
The set of arguments for constructing a Cluster resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource creates a cluster policy, which limits the ability to create clusters based on a set of rules.
The set of arguments for constructing a ClusterPolicy resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource dbfs file can be imported using the path of the file bash ```sh $ pulumi import databricks:index/dbfsFile:DbfsFile this <path> ```.
The set of arguments for constructing a DbfsFile resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource directory can be imported using directory path bash ```sh $ pulumi import databricks:index/directory:Directory this /path/to/directory ```.
The set of arguments for constructing a Directory resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a ExternalLocation resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A collection of arguments for invoking getAwsAssumeRolePolicy.
A collection of arguments for invoking getAwsAssumeRolePolicy.
A collection of values returned by getAwsAssumeRolePolicy.
A collection of values returned by getAwsAssumeRolePolicy.
A collection of arguments for invoking getAwsBucketPolicy.
A collection of arguments for invoking getAwsBucketPolicy.
A collection of values returned by getAwsBucketPolicy.
A collection of values returned by getAwsBucketPolicy.
A collection of arguments for invoking getAwsCrossAccountPolicy.
A collection of arguments for invoking getAwsCrossAccountPolicy.
A collection of values returned by getAwsCrossAccountPolicy.
A collection of values returned by getAwsCrossAccountPolicy.
A collection of arguments for invoking getCatalogs.
A collection of arguments for invoking getCatalogs.
A collection of values returned by getCatalogs.
A collection of values returned by getCatalogs.
A collection of arguments for invoking getClusters.
A collection of arguments for invoking getClusters.
A collection of values returned by getClusters.
A collection of values returned by getClusters.
A collection of values returned by getCurrentUser.
A collection of arguments for invoking getDbfsFilePaths.
A collection of arguments for invoking getDbfsFilePaths.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A collection of values returned by getDbfsFilePaths.
A collection of values returned by getDbfsFilePaths.
A collection of arguments for invoking getJobs.
A collection of arguments for invoking getJobs.
A collection of values returned by getJobs.
A collection of values returned by getJobs.
A collection of arguments for invoking getNodeType.
A collection of arguments for invoking getNodeType.
A collection of values returned by getNodeType.
A collection of values returned by getNodeType.
A collection of arguments for invoking getNotebookPaths.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A collection of arguments for invoking getNotebookPaths.
A collection of values returned by getNotebookPaths.
A collection of values returned by getNotebookPaths.
A collection of arguments for invoking getSchemas.
A collection of arguments for invoking getSchemas.
A collection of values returned by getSchemas.
A collection of values returned by getSchemas.
A collection of arguments for invoking getSparkVersion.
A collection of arguments for invoking getSparkVersion.
A collection of values returned by getSparkVersion.
A collection of values returned by getSparkVersion.
A collection of arguments for invoking getTables.
A collection of arguments for invoking getTables.
A collection of values returned by getTables.
A collection of values returned by getTables.
A collection of arguments for invoking getViews.
A collection of arguments for invoking getViews.
A collection of values returned by getViews.
A collection of values returned by getViews.
A collection of values returned by getZones.
## Import The resource cluster can be imported using ID of Git credential that could be obtained via REST APIbash ```sh $ pulumi import databricks:index/gitCredential:GitCredential this <git-credential-id> ```.
The set of arguments for constructing a GitCredential resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource global init script can be imported using script IDbash ```sh $ pulumi import databricks:index/globalInitScript:GlobalInitScript this script_id ```.
The set of arguments for constructing a GlobalInitScript resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a Grants resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to manage [groups in Databricks Workspace](https://docs.databricks.com/administration-guide/users-groups/groups.html), [Databricks Account Console](https://accounts.cloud.databricks.com/) or [Azure Databricks Account Console](https://accounts.azuredatabricks.net).
The set of arguments for constructing a Group resource.
No description provided by the author
> **Note** This resource has an evolving API, which may change in future versions of the provider.
The set of arguments for constructing a GroupInstanceProfile resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource instance pool can be imported using it's idbash ```sh $ pulumi import databricks:index/instancePool:InstancePool this <instance-pool-id> ```.
The set of arguments for constructing a InstancePool resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to manage AWS EC2 instance profiles that users can launch Cluster and access data, like databricks_mount.
The set of arguments for constructing a InstanceProfile resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Security-conscious enterprises that use cloud SaaS applications need to restrict access to their own employees.
The set of arguments for constructing a IpAccessList resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource job can be imported using the id of the job bash ```sh $ pulumi import databricks:index/job:Job this <job-id> ```.
The set of arguments for constructing a Job resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Installs a [library](https://docs.databricks.com/libraries/index.html) on databricks_cluster.
The set of arguments for constructing a Library resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A collection of arguments for invoking getDbfsFile.
A collection of arguments for invoking getDbfsFile.
A collection of values returned by getDbfsFile.
A collection of values returned by getDbfsFile.
A collection of arguments for invoking getGroup.
A collection of arguments for invoking getGroup.
A collection of values returned by getGroup.
A collection of values returned by getGroup.
A collection of arguments for invoking getNotebook.
A collection of arguments for invoking getNotebook.
A collection of values returned by getNotebook.
A collection of values returned by getNotebook.
A collection of arguments for invoking getUser.
A collection of arguments for invoking getUser.
A collection of values returned by getUser.
A collection of values returned by getUser.
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a Metastore resource.
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a MetastoreAssignment resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a MetastoreDataAccess resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to manage [MLflow experiments](https://docs.databricks.com/data/data-sources/mlflow-experiment.html) in Databricks.
The set of arguments for constructing a MlflowExperiment resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to create [MLflow models](https://docs.databricks.com/applications/mlflow/models.html) in Databricks.
The set of arguments for constructing a MlflowModel resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to create [MLflow Model Registry Webhooks](https://docs.databricks.com/applications/mlflow/model-registry-webhooks.html) in Databricks.
The set of arguments for constructing a MlflowWebhook resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import -> **Note** Importing this resource is not currently supported.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a Mount resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage > **Note** This resource has an evolving API, which may change in future versions of the provider.
The set of arguments for constructing a MwsCredentials resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage > **Note** If you've used the resource before, please add `useCases = ["MANAGED_SERVICES"]` to keep the previous behaviour.
The set of arguments for constructing a MwsCustomerManagedKeys resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Note** This resource has an evolving API, which will change in the upcoming versions of the provider in order to simplify user experience.
The set of arguments for constructing a MwsLogDelivery resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import -> **Note** Importing this resource is not currently supported.
The set of arguments for constructing a MwsNetworks resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import -> **Note** Importing this resource is not currently supported.
The set of arguments for constructing a MwsPrivateAccessSettings resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Related Resources The following resources are used in the same context: * Provisioning Databricks on AWS guide.
The set of arguments for constructing a MwsStorageConfigurations resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import -> **Note** Importing this resource is not currently supported.
The set of arguments for constructing a MwsVpcEndpoint resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import -> **Note** Importing this resource is not currently supported.
The set of arguments for constructing a MwsWorkspaces resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource notebook can be imported using notebook path bash ```sh $ pulumi import databricks:index/notebook:Notebook this /path/to/notebook ```.
The set of arguments for constructing a Notebook resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource creates [On-Behalf-Of tokens](https://docs.databricks.com/administration-guide/users-groups/service-principals.html#manage-personal-access-tokens-for-a-service-principal) for a ServicePrincipal in Databricks workspaces on AWS.
The set of arguments for constructing a OboToken resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Import The resource permissions can be imported using the object id bash ```sh $ pulumi import databricks:index/permissions:Permissions this /<object type>/<object id> ```.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a Permissions resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Use `Pipeline` to deploy [Delta Live Tables](https://docs.databricks.com/data-engineering/delta-live-tables/index.html).
The set of arguments for constructing a Pipeline resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The provider type for the databricks package.
The set of arguments for constructing a Provider resource.
No description provided by the author
## Import The resource Repo can be imported using the Repo ID (obtained via UI or using API) bash ```sh $ pulumi import databricks:index/repo:Repo this repo_id ```.
The set of arguments for constructing a Repo resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a Schema resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
With this resource you can insert a secret under the provided scope with the given name.
Create or overwrite the ACL associated with the given principal (user or group) on the specified databricks_secret_scope.
The set of arguments for constructing a SecretAcl resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a Secret resource.
No description provided by the author
No description provided by the author
No description provided by the author
## Import The secret resource scope can be imported using the scope name.
The set of arguments for constructing a SecretScope resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Directly manage [Service Principals](https://docs.databricks.com/administration-guide/users-groups/service-principals.html) that could be added to Group in Databricks workspace or account.
The set of arguments for constructing a ServicePrincipal resource.
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to attach a role or InstanceProfile (AWS) to a databricks_service_principal.
The set of arguments for constructing a ServicePrincipalRole resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource is used to manage [Databricks SQL Dashboards](https://docs.databricks.com/sql/user/dashboards/index.html).
The set of arguments for constructing a SqlDashboard resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource is used to manage [Databricks SQL Endpoints](https://docs.databricks.com/sql/admin/sql-endpoints.html).
The set of arguments for constructing a SqlEndpoint resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource configures the security policy, databricks_instance_profile, and [data access properties](https://docs.databricks.com/sql/admin/data-access-configuration.html) for all SqlEndpoint of workspace.
The set of arguments for constructing a SqlGlobalConfig resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage The following resource definition will enforce access control on a table by executing the following SQL queries on a special auto-terminating cluster it would create for this operation: * ``` SHOW GRANT ON TABLE `default`.`foo` ``` * ```REVOKE ALL PRIVILEGES ON TABLE `default`.`foo` FROM ..
The set of arguments for constructing a SqlPermissions resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
To manage [SQLA resources](https://docs.databricks.com/sql/get-started/concepts.html) you must have `databricksSqlAccess` on your Group or databricks_user.
The set of arguments for constructing a SqlQuery resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
To manage [SQLA resources](https://docs.databricks.com/sql/get-started/concepts.html) you must have `databricksSqlAccess` on your Group or databricks_user.
The set of arguments for constructing a SqlVisualization resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
To manage [SQLA resources](https://docs.databricks.com/sql/get-started/concepts.html) you must have `databricksSqlAccess` on your Group or databricks_user.
The set of arguments for constructing a SqlWidget resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a StorageCredential resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
> **Public Preview** This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
The set of arguments for constructing a Table resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource creates [Personal Access Tokens](https://docs.databricks.com/sql/user/security/personal-access-tokens.html) for the same user, that is authenticated with the provider.
The set of arguments for constructing a Token resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to manage [users in Databricks Workspace](https://docs.databricks.com/administration-guide/users-groups/users.html), [Databricks Account Console](https://accounts.cloud.databricks.com/) or [Azure Databricks Account Console](https://accounts.azuredatabricks.net).
The set of arguments for constructing a User resource.
No description provided by the author
> **Deprecated** Please rewrite with databricks_user_role.
The set of arguments for constructing a UserInstanceProfile resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This resource allows you to attach a role or InstanceProfile (AWS) to databricks_user.
The set of arguments for constructing a UserRole resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
## Example Usage Allows specification of custom configuration properties for expert usage: * `enableIpAccessLists` - enables the use of IpAccessList resources * `maxTokenLifetimeDays` - (string) Maximum token lifetime of new tokens in days, as an integer.
The set of arguments for constructing a WorkspaceConf resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Interfaces

AwsS3MountArrayInput is an input type that accepts AwsS3MountArray and AwsS3MountArrayOutput values.
No description provided by the author
AwsS3MountMapInput is an input type that accepts AwsS3MountMap and AwsS3MountMapOutput values.
AzureAdlsGen1MountArrayInput is an input type that accepts AzureAdlsGen1MountArray and AzureAdlsGen1MountArrayOutput values.
No description provided by the author
AzureAdlsGen1MountMapInput is an input type that accepts AzureAdlsGen1MountMap and AzureAdlsGen1MountMapOutput values.
AzureAdlsGen2MountArrayInput is an input type that accepts AzureAdlsGen2MountArray and AzureAdlsGen2MountArrayOutput values.
No description provided by the author
AzureAdlsGen2MountMapInput is an input type that accepts AzureAdlsGen2MountMap and AzureAdlsGen2MountMapOutput values.
AzureBlobMountArrayInput is an input type that accepts AzureBlobMountArray and AzureBlobMountArrayOutput values.
No description provided by the author
AzureBlobMountMapInput is an input type that accepts AzureBlobMountMap and AzureBlobMountMapOutput values.
CatalogArrayInput is an input type that accepts CatalogArray and CatalogArrayOutput values.
No description provided by the author
CatalogMapInput is an input type that accepts CatalogMap and CatalogMapOutput values.
ClusterArrayInput is an input type that accepts ClusterArray and ClusterArrayOutput values.
ClusterAutoscaleInput is an input type that accepts ClusterAutoscaleArgs and ClusterAutoscaleOutput values.
ClusterAutoscalePtrInput is an input type that accepts ClusterAutoscaleArgs, ClusterAutoscalePtr and ClusterAutoscalePtrOutput values.
ClusterAwsAttributesInput is an input type that accepts ClusterAwsAttributesArgs and ClusterAwsAttributesOutput values.
ClusterAwsAttributesPtrInput is an input type that accepts ClusterAwsAttributesArgs, ClusterAwsAttributesPtr and ClusterAwsAttributesPtrOutput values.
ClusterAzureAttributesInput is an input type that accepts ClusterAzureAttributesArgs and ClusterAzureAttributesOutput values.
ClusterAzureAttributesPtrInput is an input type that accepts ClusterAzureAttributesArgs, ClusterAzureAttributesPtr and ClusterAzureAttributesPtrOutput values.
ClusterClusterLogConfDbfsInput is an input type that accepts ClusterClusterLogConfDbfsArgs and ClusterClusterLogConfDbfsOutput values.
ClusterClusterLogConfDbfsPtrInput is an input type that accepts ClusterClusterLogConfDbfsArgs, ClusterClusterLogConfDbfsPtr and ClusterClusterLogConfDbfsPtrOutput values.
ClusterClusterLogConfInput is an input type that accepts ClusterClusterLogConfArgs and ClusterClusterLogConfOutput values.
ClusterClusterLogConfPtrInput is an input type that accepts ClusterClusterLogConfArgs, ClusterClusterLogConfPtr and ClusterClusterLogConfPtrOutput values.
ClusterClusterLogConfS3Input is an input type that accepts ClusterClusterLogConfS3Args and ClusterClusterLogConfS3Output values.
ClusterClusterLogConfS3PtrInput is an input type that accepts ClusterClusterLogConfS3Args, ClusterClusterLogConfS3Ptr and ClusterClusterLogConfS3PtrOutput values.
ClusterDockerImageBasicAuthInput is an input type that accepts ClusterDockerImageBasicAuthArgs and ClusterDockerImageBasicAuthOutput values.
ClusterDockerImageBasicAuthPtrInput is an input type that accepts ClusterDockerImageBasicAuthArgs, ClusterDockerImageBasicAuthPtr and ClusterDockerImageBasicAuthPtrOutput values.
ClusterDockerImageInput is an input type that accepts ClusterDockerImageArgs and ClusterDockerImageOutput values.
ClusterDockerImagePtrInput is an input type that accepts ClusterDockerImageArgs, ClusterDockerImagePtr and ClusterDockerImagePtrOutput values.
ClusterGcpAttributesInput is an input type that accepts ClusterGcpAttributesArgs and ClusterGcpAttributesOutput values.
ClusterGcpAttributesPtrInput is an input type that accepts ClusterGcpAttributesArgs, ClusterGcpAttributesPtr and ClusterGcpAttributesPtrOutput values.
ClusterInitScriptArrayInput is an input type that accepts ClusterInitScriptArray and ClusterInitScriptArrayOutput values.
ClusterInitScriptDbfsInput is an input type that accepts ClusterInitScriptDbfsArgs and ClusterInitScriptDbfsOutput values.
ClusterInitScriptDbfsPtrInput is an input type that accepts ClusterInitScriptDbfsArgs, ClusterInitScriptDbfsPtr and ClusterInitScriptDbfsPtrOutput values.
ClusterInitScriptFileInput is an input type that accepts ClusterInitScriptFileArgs and ClusterInitScriptFileOutput values.
ClusterInitScriptFilePtrInput is an input type that accepts ClusterInitScriptFileArgs, ClusterInitScriptFilePtr and ClusterInitScriptFilePtrOutput values.
ClusterInitScriptGcsInput is an input type that accepts ClusterInitScriptGcsArgs and ClusterInitScriptGcsOutput values.
ClusterInitScriptGcsPtrInput is an input type that accepts ClusterInitScriptGcsArgs, ClusterInitScriptGcsPtr and ClusterInitScriptGcsPtrOutput values.
ClusterInitScriptInput is an input type that accepts ClusterInitScriptArgs and ClusterInitScriptOutput values.
ClusterInitScriptS3Input is an input type that accepts ClusterInitScriptS3Args and ClusterInitScriptS3Output values.
ClusterInitScriptS3PtrInput is an input type that accepts ClusterInitScriptS3Args, ClusterInitScriptS3Ptr and ClusterInitScriptS3PtrOutput values.
No description provided by the author
ClusterLibraryArrayInput is an input type that accepts ClusterLibraryArray and ClusterLibraryArrayOutput values.
ClusterLibraryCranInput is an input type that accepts ClusterLibraryCranArgs and ClusterLibraryCranOutput values.
ClusterLibraryCranPtrInput is an input type that accepts ClusterLibraryCranArgs, ClusterLibraryCranPtr and ClusterLibraryCranPtrOutput values.
ClusterLibraryInput is an input type that accepts ClusterLibraryArgs and ClusterLibraryOutput values.
ClusterLibraryMavenInput is an input type that accepts ClusterLibraryMavenArgs and ClusterLibraryMavenOutput values.
ClusterLibraryMavenPtrInput is an input type that accepts ClusterLibraryMavenArgs, ClusterLibraryMavenPtr and ClusterLibraryMavenPtrOutput values.
ClusterLibraryPypiInput is an input type that accepts ClusterLibraryPypiArgs and ClusterLibraryPypiOutput values.
ClusterLibraryPypiPtrInput is an input type that accepts ClusterLibraryPypiArgs, ClusterLibraryPypiPtr and ClusterLibraryPypiPtrOutput values.
ClusterMapInput is an input type that accepts ClusterMap and ClusterMapOutput values.
ClusterPolicyArrayInput is an input type that accepts ClusterPolicyArray and ClusterPolicyArrayOutput values.
No description provided by the author
ClusterPolicyMapInput is an input type that accepts ClusterPolicyMap and ClusterPolicyMapOutput values.
DbfsFileArrayInput is an input type that accepts DbfsFileArray and DbfsFileArrayOutput values.
No description provided by the author
DbfsFileMapInput is an input type that accepts DbfsFileMap and DbfsFileMapOutput values.
DirectoryArrayInput is an input type that accepts DirectoryArray and DirectoryArrayOutput values.
No description provided by the author
DirectoryMapInput is an input type that accepts DirectoryMap and DirectoryMapOutput values.
ExternalLocationArrayInput is an input type that accepts ExternalLocationArray and ExternalLocationArrayOutput values.
No description provided by the author
ExternalLocationMapInput is an input type that accepts ExternalLocationMap and ExternalLocationMapOutput values.
GetDbfsFilePathsPathListArrayInput is an input type that accepts GetDbfsFilePathsPathListArray and GetDbfsFilePathsPathListArrayOutput values.
GetDbfsFilePathsPathListInput is an input type that accepts GetDbfsFilePathsPathListArgs and GetDbfsFilePathsPathListOutput values.
GetNotebookPathsNotebookPathListArrayInput is an input type that accepts GetNotebookPathsNotebookPathListArray and GetNotebookPathsNotebookPathListArrayOutput values.
GetNotebookPathsNotebookPathListInput is an input type that accepts GetNotebookPathsNotebookPathListArgs and GetNotebookPathsNotebookPathListOutput values.
GitCredentialArrayInput is an input type that accepts GitCredentialArray and GitCredentialArrayOutput values.
No description provided by the author
GitCredentialMapInput is an input type that accepts GitCredentialMap and GitCredentialMapOutput values.
GlobalInitScriptArrayInput is an input type that accepts GlobalInitScriptArray and GlobalInitScriptArrayOutput values.
No description provided by the author
GlobalInitScriptMapInput is an input type that accepts GlobalInitScriptMap and GlobalInitScriptMapOutput values.
GrantsArrayInput is an input type that accepts GrantsArray and GrantsArrayOutput values.
GrantsGrantArrayInput is an input type that accepts GrantsGrantArray and GrantsGrantArrayOutput values.
GrantsGrantInput is an input type that accepts GrantsGrantArgs and GrantsGrantOutput values.
No description provided by the author
GrantsMapInput is an input type that accepts GrantsMap and GrantsMapOutput values.
GroupArrayInput is an input type that accepts GroupArray and GroupArrayOutput values.
No description provided by the author
GroupInstanceProfileArrayInput is an input type that accepts GroupInstanceProfileArray and GroupInstanceProfileArrayOutput values.
No description provided by the author
GroupInstanceProfileMapInput is an input type that accepts GroupInstanceProfileMap and GroupInstanceProfileMapOutput values.
GroupMapInput is an input type that accepts GroupMap and GroupMapOutput values.
InstancePoolArrayInput is an input type that accepts InstancePoolArray and InstancePoolArrayOutput values.
InstancePoolAwsAttributesInput is an input type that accepts InstancePoolAwsAttributesArgs and InstancePoolAwsAttributesOutput values.
InstancePoolAwsAttributesPtrInput is an input type that accepts InstancePoolAwsAttributesArgs, InstancePoolAwsAttributesPtr and InstancePoolAwsAttributesPtrOutput values.
InstancePoolAzureAttributesInput is an input type that accepts InstancePoolAzureAttributesArgs and InstancePoolAzureAttributesOutput values.
InstancePoolAzureAttributesPtrInput is an input type that accepts InstancePoolAzureAttributesArgs, InstancePoolAzureAttributesPtr and InstancePoolAzureAttributesPtrOutput values.
InstancePoolDiskSpecDiskTypeInput is an input type that accepts InstancePoolDiskSpecDiskTypeArgs and InstancePoolDiskSpecDiskTypeOutput values.
InstancePoolDiskSpecDiskTypePtrInput is an input type that accepts InstancePoolDiskSpecDiskTypeArgs, InstancePoolDiskSpecDiskTypePtr and InstancePoolDiskSpecDiskTypePtrOutput values.
InstancePoolDiskSpecInput is an input type that accepts InstancePoolDiskSpecArgs and InstancePoolDiskSpecOutput values.
InstancePoolDiskSpecPtrInput is an input type that accepts InstancePoolDiskSpecArgs, InstancePoolDiskSpecPtr and InstancePoolDiskSpecPtrOutput values.
InstancePoolGcpAttributesInput is an input type that accepts InstancePoolGcpAttributesArgs and InstancePoolGcpAttributesOutput values.
InstancePoolGcpAttributesPtrInput is an input type that accepts InstancePoolGcpAttributesArgs, InstancePoolGcpAttributesPtr and InstancePoolGcpAttributesPtrOutput values.
No description provided by the author
InstancePoolMapInput is an input type that accepts InstancePoolMap and InstancePoolMapOutput values.
InstancePoolPreloadedDockerImageArrayInput is an input type that accepts InstancePoolPreloadedDockerImageArray and InstancePoolPreloadedDockerImageArrayOutput values.
InstancePoolPreloadedDockerImageBasicAuthInput is an input type that accepts InstancePoolPreloadedDockerImageBasicAuthArgs and InstancePoolPreloadedDockerImageBasicAuthOutput values.
InstancePoolPreloadedDockerImageBasicAuthPtrInput is an input type that accepts InstancePoolPreloadedDockerImageBasicAuthArgs, InstancePoolPreloadedDockerImageBasicAuthPtr and InstancePoolPreloadedDockerImageBasicAuthPtrOutput values.
InstancePoolPreloadedDockerImageInput is an input type that accepts InstancePoolPreloadedDockerImageArgs and InstancePoolPreloadedDockerImageOutput values.
InstanceProfileArrayInput is an input type that accepts InstanceProfileArray and InstanceProfileArrayOutput values.
No description provided by the author
InstanceProfileMapInput is an input type that accepts InstanceProfileMap and InstanceProfileMapOutput values.
IpAccessListArrayInput is an input type that accepts IpAccessListArray and IpAccessListArrayOutput values.
No description provided by the author
IpAccessListMapInput is an input type that accepts IpAccessListMap and IpAccessListMapOutput values.
JobArrayInput is an input type that accepts JobArray and JobArrayOutput values.
JobEmailNotificationsInput is an input type that accepts JobEmailNotificationsArgs and JobEmailNotificationsOutput values.
JobEmailNotificationsPtrInput is an input type that accepts JobEmailNotificationsArgs, JobEmailNotificationsPtr and JobEmailNotificationsPtrOutput values.
JobGitSourceInput is an input type that accepts JobGitSourceArgs and JobGitSourceOutput values.
JobGitSourcePtrInput is an input type that accepts JobGitSourceArgs, JobGitSourcePtr and JobGitSourcePtrOutput values.
No description provided by the author
JobJobClusterArrayInput is an input type that accepts JobJobClusterArray and JobJobClusterArrayOutput values.
JobJobClusterInput is an input type that accepts JobJobClusterArgs and JobJobClusterOutput values.
JobJobClusterNewClusterAutoscaleInput is an input type that accepts JobJobClusterNewClusterAutoscaleArgs and JobJobClusterNewClusterAutoscaleOutput values.
JobJobClusterNewClusterAutoscalePtrInput is an input type that accepts JobJobClusterNewClusterAutoscaleArgs, JobJobClusterNewClusterAutoscalePtr and JobJobClusterNewClusterAutoscalePtrOutput values.
JobJobClusterNewClusterAwsAttributesInput is an input type that accepts JobJobClusterNewClusterAwsAttributesArgs and JobJobClusterNewClusterAwsAttributesOutput values.
JobJobClusterNewClusterAwsAttributesPtrInput is an input type that accepts JobJobClusterNewClusterAwsAttributesArgs, JobJobClusterNewClusterAwsAttributesPtr and JobJobClusterNewClusterAwsAttributesPtrOutput values.
JobJobClusterNewClusterAzureAttributesInput is an input type that accepts JobJobClusterNewClusterAzureAttributesArgs and JobJobClusterNewClusterAzureAttributesOutput values.
JobJobClusterNewClusterAzureAttributesPtrInput is an input type that accepts JobJobClusterNewClusterAzureAttributesArgs, JobJobClusterNewClusterAzureAttributesPtr and JobJobClusterNewClusterAzureAttributesPtrOutput values.
JobJobClusterNewClusterClusterLogConfDbfsInput is an input type that accepts JobJobClusterNewClusterClusterLogConfDbfsArgs and JobJobClusterNewClusterClusterLogConfDbfsOutput values.
JobJobClusterNewClusterClusterLogConfDbfsPtrInput is an input type that accepts JobJobClusterNewClusterClusterLogConfDbfsArgs, JobJobClusterNewClusterClusterLogConfDbfsPtr and JobJobClusterNewClusterClusterLogConfDbfsPtrOutput values.
JobJobClusterNewClusterClusterLogConfInput is an input type that accepts JobJobClusterNewClusterClusterLogConfArgs and JobJobClusterNewClusterClusterLogConfOutput values.
JobJobClusterNewClusterClusterLogConfPtrInput is an input type that accepts JobJobClusterNewClusterClusterLogConfArgs, JobJobClusterNewClusterClusterLogConfPtr and JobJobClusterNewClusterClusterLogConfPtrOutput values.
JobJobClusterNewClusterClusterLogConfS3Input is an input type that accepts JobJobClusterNewClusterClusterLogConfS3Args and JobJobClusterNewClusterClusterLogConfS3Output values.
JobJobClusterNewClusterClusterLogConfS3PtrInput is an input type that accepts JobJobClusterNewClusterClusterLogConfS3Args, JobJobClusterNewClusterClusterLogConfS3Ptr and JobJobClusterNewClusterClusterLogConfS3PtrOutput values.
JobJobClusterNewClusterDockerImageBasicAuthInput is an input type that accepts JobJobClusterNewClusterDockerImageBasicAuthArgs and JobJobClusterNewClusterDockerImageBasicAuthOutput values.
JobJobClusterNewClusterDockerImageBasicAuthPtrInput is an input type that accepts JobJobClusterNewClusterDockerImageBasicAuthArgs, JobJobClusterNewClusterDockerImageBasicAuthPtr and JobJobClusterNewClusterDockerImageBasicAuthPtrOutput values.
JobJobClusterNewClusterDockerImageInput is an input type that accepts JobJobClusterNewClusterDockerImageArgs and JobJobClusterNewClusterDockerImageOutput values.
JobJobClusterNewClusterDockerImagePtrInput is an input type that accepts JobJobClusterNewClusterDockerImageArgs, JobJobClusterNewClusterDockerImagePtr and JobJobClusterNewClusterDockerImagePtrOutput values.
JobJobClusterNewClusterGcpAttributesInput is an input type that accepts JobJobClusterNewClusterGcpAttributesArgs and JobJobClusterNewClusterGcpAttributesOutput values.
JobJobClusterNewClusterGcpAttributesPtrInput is an input type that accepts JobJobClusterNewClusterGcpAttributesArgs, JobJobClusterNewClusterGcpAttributesPtr and JobJobClusterNewClusterGcpAttributesPtrOutput values.
JobJobClusterNewClusterInitScriptArrayInput is an input type that accepts JobJobClusterNewClusterInitScriptArray and JobJobClusterNewClusterInitScriptArrayOutput values.
JobJobClusterNewClusterInitScriptDbfsInput is an input type that accepts JobJobClusterNewClusterInitScriptDbfsArgs and JobJobClusterNewClusterInitScriptDbfsOutput values.
JobJobClusterNewClusterInitScriptDbfsPtrInput is an input type that accepts JobJobClusterNewClusterInitScriptDbfsArgs, JobJobClusterNewClusterInitScriptDbfsPtr and JobJobClusterNewClusterInitScriptDbfsPtrOutput values.
JobJobClusterNewClusterInitScriptFileInput is an input type that accepts JobJobClusterNewClusterInitScriptFileArgs and JobJobClusterNewClusterInitScriptFileOutput values.
JobJobClusterNewClusterInitScriptFilePtrInput is an input type that accepts JobJobClusterNewClusterInitScriptFileArgs, JobJobClusterNewClusterInitScriptFilePtr and JobJobClusterNewClusterInitScriptFilePtrOutput values.
JobJobClusterNewClusterInitScriptGcsInput is an input type that accepts JobJobClusterNewClusterInitScriptGcsArgs and JobJobClusterNewClusterInitScriptGcsOutput values.
JobJobClusterNewClusterInitScriptGcsPtrInput is an input type that accepts JobJobClusterNewClusterInitScriptGcsArgs, JobJobClusterNewClusterInitScriptGcsPtr and JobJobClusterNewClusterInitScriptGcsPtrOutput values.
JobJobClusterNewClusterInitScriptInput is an input type that accepts JobJobClusterNewClusterInitScriptArgs and JobJobClusterNewClusterInitScriptOutput values.
JobJobClusterNewClusterInitScriptS3Input is an input type that accepts JobJobClusterNewClusterInitScriptS3Args and JobJobClusterNewClusterInitScriptS3Output values.
JobJobClusterNewClusterInitScriptS3PtrInput is an input type that accepts JobJobClusterNewClusterInitScriptS3Args, JobJobClusterNewClusterInitScriptS3Ptr and JobJobClusterNewClusterInitScriptS3PtrOutput values.
JobJobClusterNewClusterInput is an input type that accepts JobJobClusterNewClusterArgs and JobJobClusterNewClusterOutput values.
JobJobClusterNewClusterPtrInput is an input type that accepts JobJobClusterNewClusterArgs, JobJobClusterNewClusterPtr and JobJobClusterNewClusterPtrOutput values.
JobLibraryArrayInput is an input type that accepts JobLibraryArray and JobLibraryArrayOutput values.
JobLibraryCranInput is an input type that accepts JobLibraryCranArgs and JobLibraryCranOutput values.
JobLibraryCranPtrInput is an input type that accepts JobLibraryCranArgs, JobLibraryCranPtr and JobLibraryCranPtrOutput values.
JobLibraryInput is an input type that accepts JobLibraryArgs and JobLibraryOutput values.
JobLibraryMavenInput is an input type that accepts JobLibraryMavenArgs and JobLibraryMavenOutput values.
JobLibraryMavenPtrInput is an input type that accepts JobLibraryMavenArgs, JobLibraryMavenPtr and JobLibraryMavenPtrOutput values.
JobLibraryPypiInput is an input type that accepts JobLibraryPypiArgs and JobLibraryPypiOutput values.
JobLibraryPypiPtrInput is an input type that accepts JobLibraryPypiArgs, JobLibraryPypiPtr and JobLibraryPypiPtrOutput values.
JobMapInput is an input type that accepts JobMap and JobMapOutput values.
JobNewClusterAutoscaleInput is an input type that accepts JobNewClusterAutoscaleArgs and JobNewClusterAutoscaleOutput values.
JobNewClusterAutoscalePtrInput is an input type that accepts JobNewClusterAutoscaleArgs, JobNewClusterAutoscalePtr and JobNewClusterAutoscalePtrOutput values.
JobNewClusterAwsAttributesInput is an input type that accepts JobNewClusterAwsAttributesArgs and JobNewClusterAwsAttributesOutput values.
JobNewClusterAwsAttributesPtrInput is an input type that accepts JobNewClusterAwsAttributesArgs, JobNewClusterAwsAttributesPtr and JobNewClusterAwsAttributesPtrOutput values.
JobNewClusterAzureAttributesInput is an input type that accepts JobNewClusterAzureAttributesArgs and JobNewClusterAzureAttributesOutput values.
JobNewClusterAzureAttributesPtrInput is an input type that accepts JobNewClusterAzureAttributesArgs, JobNewClusterAzureAttributesPtr and JobNewClusterAzureAttributesPtrOutput values.
JobNewClusterClusterLogConfDbfsInput is an input type that accepts JobNewClusterClusterLogConfDbfsArgs and JobNewClusterClusterLogConfDbfsOutput values.
JobNewClusterClusterLogConfDbfsPtrInput is an input type that accepts JobNewClusterClusterLogConfDbfsArgs, JobNewClusterClusterLogConfDbfsPtr and JobNewClusterClusterLogConfDbfsPtrOutput values.
JobNewClusterClusterLogConfInput is an input type that accepts JobNewClusterClusterLogConfArgs and JobNewClusterClusterLogConfOutput values.
JobNewClusterClusterLogConfPtrInput is an input type that accepts JobNewClusterClusterLogConfArgs, JobNewClusterClusterLogConfPtr and JobNewClusterClusterLogConfPtrOutput values.
JobNewClusterClusterLogConfS3Input is an input type that accepts JobNewClusterClusterLogConfS3Args and JobNewClusterClusterLogConfS3Output values.
JobNewClusterClusterLogConfS3PtrInput is an input type that accepts JobNewClusterClusterLogConfS3Args, JobNewClusterClusterLogConfS3Ptr and JobNewClusterClusterLogConfS3PtrOutput values.
JobNewClusterDockerImageBasicAuthInput is an input type that accepts JobNewClusterDockerImageBasicAuthArgs and JobNewClusterDockerImageBasicAuthOutput values.
JobNewClusterDockerImageBasicAuthPtrInput is an input type that accepts JobNewClusterDockerImageBasicAuthArgs, JobNewClusterDockerImageBasicAuthPtr and JobNewClusterDockerImageBasicAuthPtrOutput values.
JobNewClusterDockerImageInput is an input type that accepts JobNewClusterDockerImageArgs and JobNewClusterDockerImageOutput values.
JobNewClusterDockerImagePtrInput is an input type that accepts JobNewClusterDockerImageArgs, JobNewClusterDockerImagePtr and JobNewClusterDockerImagePtrOutput values.
JobNewClusterGcpAttributesInput is an input type that accepts JobNewClusterGcpAttributesArgs and JobNewClusterGcpAttributesOutput values.
JobNewClusterGcpAttributesPtrInput is an input type that accepts JobNewClusterGcpAttributesArgs, JobNewClusterGcpAttributesPtr and JobNewClusterGcpAttributesPtrOutput values.
JobNewClusterInitScriptArrayInput is an input type that accepts JobNewClusterInitScriptArray and JobNewClusterInitScriptArrayOutput values.
JobNewClusterInitScriptDbfsInput is an input type that accepts JobNewClusterInitScriptDbfsArgs and JobNewClusterInitScriptDbfsOutput values.
JobNewClusterInitScriptDbfsPtrInput is an input type that accepts JobNewClusterInitScriptDbfsArgs, JobNewClusterInitScriptDbfsPtr and JobNewClusterInitScriptDbfsPtrOutput values.
JobNewClusterInitScriptFileInput is an input type that accepts JobNewClusterInitScriptFileArgs and JobNewClusterInitScriptFileOutput values.
JobNewClusterInitScriptFilePtrInput is an input type that accepts JobNewClusterInitScriptFileArgs, JobNewClusterInitScriptFilePtr and JobNewClusterInitScriptFilePtrOutput values.
JobNewClusterInitScriptGcsInput is an input type that accepts JobNewClusterInitScriptGcsArgs and JobNewClusterInitScriptGcsOutput values.
JobNewClusterInitScriptGcsPtrInput is an input type that accepts JobNewClusterInitScriptGcsArgs, JobNewClusterInitScriptGcsPtr and JobNewClusterInitScriptGcsPtrOutput values.
JobNewClusterInitScriptInput is an input type that accepts JobNewClusterInitScriptArgs and JobNewClusterInitScriptOutput values.
JobNewClusterInitScriptS3Input is an input type that accepts JobNewClusterInitScriptS3Args and JobNewClusterInitScriptS3Output values.
JobNewClusterInitScriptS3PtrInput is an input type that accepts JobNewClusterInitScriptS3Args, JobNewClusterInitScriptS3Ptr and JobNewClusterInitScriptS3PtrOutput values.
JobNewClusterInput is an input type that accepts JobNewClusterArgs and JobNewClusterOutput values.
JobNewClusterPtrInput is an input type that accepts JobNewClusterArgs, JobNewClusterPtr and JobNewClusterPtrOutput values.
JobNotebookTaskInput is an input type that accepts JobNotebookTaskArgs and JobNotebookTaskOutput values.
JobNotebookTaskPtrInput is an input type that accepts JobNotebookTaskArgs, JobNotebookTaskPtr and JobNotebookTaskPtrOutput values.
JobPipelineTaskInput is an input type that accepts JobPipelineTaskArgs and JobPipelineTaskOutput values.
JobPipelineTaskPtrInput is an input type that accepts JobPipelineTaskArgs, JobPipelineTaskPtr and JobPipelineTaskPtrOutput values.
JobPythonWheelTaskInput is an input type that accepts JobPythonWheelTaskArgs and JobPythonWheelTaskOutput values.
JobPythonWheelTaskPtrInput is an input type that accepts JobPythonWheelTaskArgs, JobPythonWheelTaskPtr and JobPythonWheelTaskPtrOutput values.
JobScheduleInput is an input type that accepts JobScheduleArgs and JobScheduleOutput values.
JobSchedulePtrInput is an input type that accepts JobScheduleArgs, JobSchedulePtr and JobSchedulePtrOutput values.
JobSparkJarTaskInput is an input type that accepts JobSparkJarTaskArgs and JobSparkJarTaskOutput values.
JobSparkJarTaskPtrInput is an input type that accepts JobSparkJarTaskArgs, JobSparkJarTaskPtr and JobSparkJarTaskPtrOutput values.
JobSparkPythonTaskInput is an input type that accepts JobSparkPythonTaskArgs and JobSparkPythonTaskOutput values.
JobSparkPythonTaskPtrInput is an input type that accepts JobSparkPythonTaskArgs, JobSparkPythonTaskPtr and JobSparkPythonTaskPtrOutput values.
JobSparkSubmitTaskInput is an input type that accepts JobSparkSubmitTaskArgs and JobSparkSubmitTaskOutput values.
JobSparkSubmitTaskPtrInput is an input type that accepts JobSparkSubmitTaskArgs, JobSparkSubmitTaskPtr and JobSparkSubmitTaskPtrOutput values.
JobTaskArrayInput is an input type that accepts JobTaskArray and JobTaskArrayOutput values.
JobTaskDependsOnArrayInput is an input type that accepts JobTaskDependsOnArray and JobTaskDependsOnArrayOutput values.
JobTaskDependsOnInput is an input type that accepts JobTaskDependsOnArgs and JobTaskDependsOnOutput values.
JobTaskEmailNotificationsInput is an input type that accepts JobTaskEmailNotificationsArgs and JobTaskEmailNotificationsOutput values.
JobTaskEmailNotificationsPtrInput is an input type that accepts JobTaskEmailNotificationsArgs, JobTaskEmailNotificationsPtr and JobTaskEmailNotificationsPtrOutput values.
JobTaskInput is an input type that accepts JobTaskArgs and JobTaskOutput values.
JobTaskLibraryArrayInput is an input type that accepts JobTaskLibraryArray and JobTaskLibraryArrayOutput values.
JobTaskLibraryCranInput is an input type that accepts JobTaskLibraryCranArgs and JobTaskLibraryCranOutput values.
JobTaskLibraryCranPtrInput is an input type that accepts JobTaskLibraryCranArgs, JobTaskLibraryCranPtr and JobTaskLibraryCranPtrOutput values.
JobTaskLibraryInput is an input type that accepts JobTaskLibraryArgs and JobTaskLibraryOutput values.
JobTaskLibraryMavenInput is an input type that accepts JobTaskLibraryMavenArgs and JobTaskLibraryMavenOutput values.
JobTaskLibraryMavenPtrInput is an input type that accepts JobTaskLibraryMavenArgs, JobTaskLibraryMavenPtr and JobTaskLibraryMavenPtrOutput values.
JobTaskLibraryPypiInput is an input type that accepts JobTaskLibraryPypiArgs and JobTaskLibraryPypiOutput values.
JobTaskLibraryPypiPtrInput is an input type that accepts JobTaskLibraryPypiArgs, JobTaskLibraryPypiPtr and JobTaskLibraryPypiPtrOutput values.
JobTaskNewClusterAutoscaleInput is an input type that accepts JobTaskNewClusterAutoscaleArgs and JobTaskNewClusterAutoscaleOutput values.
JobTaskNewClusterAutoscalePtrInput is an input type that accepts JobTaskNewClusterAutoscaleArgs, JobTaskNewClusterAutoscalePtr and JobTaskNewClusterAutoscalePtrOutput values.
JobTaskNewClusterAwsAttributesInput is an input type that accepts JobTaskNewClusterAwsAttributesArgs and JobTaskNewClusterAwsAttributesOutput values.
JobTaskNewClusterAwsAttributesPtrInput is an input type that accepts JobTaskNewClusterAwsAttributesArgs, JobTaskNewClusterAwsAttributesPtr and JobTaskNewClusterAwsAttributesPtrOutput values.
JobTaskNewClusterAzureAttributesInput is an input type that accepts JobTaskNewClusterAzureAttributesArgs and JobTaskNewClusterAzureAttributesOutput values.
JobTaskNewClusterAzureAttributesPtrInput is an input type that accepts JobTaskNewClusterAzureAttributesArgs, JobTaskNewClusterAzureAttributesPtr and JobTaskNewClusterAzureAttributesPtrOutput values.
JobTaskNewClusterClusterLogConfDbfsInput is an input type that accepts JobTaskNewClusterClusterLogConfDbfsArgs and JobTaskNewClusterClusterLogConfDbfsOutput values.
JobTaskNewClusterClusterLogConfDbfsPtrInput is an input type that accepts JobTaskNewClusterClusterLogConfDbfsArgs, JobTaskNewClusterClusterLogConfDbfsPtr and JobTaskNewClusterClusterLogConfDbfsPtrOutput values.
JobTaskNewClusterClusterLogConfInput is an input type that accepts JobTaskNewClusterClusterLogConfArgs and JobTaskNewClusterClusterLogConfOutput values.
JobTaskNewClusterClusterLogConfPtrInput is an input type that accepts JobTaskNewClusterClusterLogConfArgs, JobTaskNewClusterClusterLogConfPtr and JobTaskNewClusterClusterLogConfPtrOutput values.
JobTaskNewClusterClusterLogConfS3Input is an input type that accepts JobTaskNewClusterClusterLogConfS3Args and JobTaskNewClusterClusterLogConfS3Output values.
JobTaskNewClusterClusterLogConfS3PtrInput is an input type that accepts JobTaskNewClusterClusterLogConfS3Args, JobTaskNewClusterClusterLogConfS3Ptr and JobTaskNewClusterClusterLogConfS3PtrOutput values.
JobTaskNewClusterDockerImageBasicAuthInput is an input type that accepts JobTaskNewClusterDockerImageBasicAuthArgs and JobTaskNewClusterDockerImageBasicAuthOutput values.
JobTaskNewClusterDockerImageBasicAuthPtrInput is an input type that accepts JobTaskNewClusterDockerImageBasicAuthArgs, JobTaskNewClusterDockerImageBasicAuthPtr and JobTaskNewClusterDockerImageBasicAuthPtrOutput values.
JobTaskNewClusterDockerImageInput is an input type that accepts JobTaskNewClusterDockerImageArgs and JobTaskNewClusterDockerImageOutput values.
JobTaskNewClusterDockerImagePtrInput is an input type that accepts JobTaskNewClusterDockerImageArgs, JobTaskNewClusterDockerImagePtr and JobTaskNewClusterDockerImagePtrOutput values.
JobTaskNewClusterGcpAttributesInput is an input type that accepts JobTaskNewClusterGcpAttributesArgs and JobTaskNewClusterGcpAttributesOutput values.
JobTaskNewClusterGcpAttributesPtrInput is an input type that accepts JobTaskNewClusterGcpAttributesArgs, JobTaskNewClusterGcpAttributesPtr and JobTaskNewClusterGcpAttributesPtrOutput values.
JobTaskNewClusterInitScriptArrayInput is an input type that accepts JobTaskNewClusterInitScriptArray and JobTaskNewClusterInitScriptArrayOutput values.
JobTaskNewClusterInitScriptDbfsInput is an input type that accepts JobTaskNewClusterInitScriptDbfsArgs and JobTaskNewClusterInitScriptDbfsOutput values.
JobTaskNewClusterInitScriptDbfsPtrInput is an input type that accepts JobTaskNewClusterInitScriptDbfsArgs, JobTaskNewClusterInitScriptDbfsPtr and JobTaskNewClusterInitScriptDbfsPtrOutput values.
JobTaskNewClusterInitScriptFileInput is an input type that accepts JobTaskNewClusterInitScriptFileArgs and JobTaskNewClusterInitScriptFileOutput values.
JobTaskNewClusterInitScriptFilePtrInput is an input type that accepts JobTaskNewClusterInitScriptFileArgs, JobTaskNewClusterInitScriptFilePtr and JobTaskNewClusterInitScriptFilePtrOutput values.
JobTaskNewClusterInitScriptGcsInput is an input type that accepts JobTaskNewClusterInitScriptGcsArgs and JobTaskNewClusterInitScriptGcsOutput values.
JobTaskNewClusterInitScriptGcsPtrInput is an input type that accepts JobTaskNewClusterInitScriptGcsArgs, JobTaskNewClusterInitScriptGcsPtr and JobTaskNewClusterInitScriptGcsPtrOutput values.
JobTaskNewClusterInitScriptInput is an input type that accepts JobTaskNewClusterInitScriptArgs and JobTaskNewClusterInitScriptOutput values.
JobTaskNewClusterInitScriptS3Input is an input type that accepts JobTaskNewClusterInitScriptS3Args and JobTaskNewClusterInitScriptS3Output values.
JobTaskNewClusterInitScriptS3PtrInput is an input type that accepts JobTaskNewClusterInitScriptS3Args, JobTaskNewClusterInitScriptS3Ptr and JobTaskNewClusterInitScriptS3PtrOutput values.
JobTaskNewClusterInput is an input type that accepts JobTaskNewClusterArgs and JobTaskNewClusterOutput values.
JobTaskNewClusterPtrInput is an input type that accepts JobTaskNewClusterArgs, JobTaskNewClusterPtr and JobTaskNewClusterPtrOutput values.
JobTaskNotebookTaskInput is an input type that accepts JobTaskNotebookTaskArgs and JobTaskNotebookTaskOutput values.
JobTaskNotebookTaskPtrInput is an input type that accepts JobTaskNotebookTaskArgs, JobTaskNotebookTaskPtr and JobTaskNotebookTaskPtrOutput values.
JobTaskPipelineTaskInput is an input type that accepts JobTaskPipelineTaskArgs and JobTaskPipelineTaskOutput values.
JobTaskPipelineTaskPtrInput is an input type that accepts JobTaskPipelineTaskArgs, JobTaskPipelineTaskPtr and JobTaskPipelineTaskPtrOutput values.
JobTaskPythonWheelTaskInput is an input type that accepts JobTaskPythonWheelTaskArgs and JobTaskPythonWheelTaskOutput values.
JobTaskPythonWheelTaskPtrInput is an input type that accepts JobTaskPythonWheelTaskArgs, JobTaskPythonWheelTaskPtr and JobTaskPythonWheelTaskPtrOutput values.
JobTaskSparkJarTaskInput is an input type that accepts JobTaskSparkJarTaskArgs and JobTaskSparkJarTaskOutput values.
JobTaskSparkJarTaskPtrInput is an input type that accepts JobTaskSparkJarTaskArgs, JobTaskSparkJarTaskPtr and JobTaskSparkJarTaskPtrOutput values.
JobTaskSparkPythonTaskInput is an input type that accepts JobTaskSparkPythonTaskArgs and JobTaskSparkPythonTaskOutput values.
JobTaskSparkPythonTaskPtrInput is an input type that accepts JobTaskSparkPythonTaskArgs, JobTaskSparkPythonTaskPtr and JobTaskSparkPythonTaskPtrOutput values.
JobTaskSparkSubmitTaskInput is an input type that accepts JobTaskSparkSubmitTaskArgs and JobTaskSparkSubmitTaskOutput values.
JobTaskSparkSubmitTaskPtrInput is an input type that accepts JobTaskSparkSubmitTaskArgs, JobTaskSparkSubmitTaskPtr and JobTaskSparkSubmitTaskPtrOutput values.
LibraryArrayInput is an input type that accepts LibraryArray and LibraryArrayOutput values.
LibraryCranInput is an input type that accepts LibraryCranArgs and LibraryCranOutput values.
LibraryCranPtrInput is an input type that accepts LibraryCranArgs, LibraryCranPtr and LibraryCranPtrOutput values.
No description provided by the author
LibraryMapInput is an input type that accepts LibraryMap and LibraryMapOutput values.
LibraryMavenInput is an input type that accepts LibraryMavenArgs and LibraryMavenOutput values.
LibraryMavenPtrInput is an input type that accepts LibraryMavenArgs, LibraryMavenPtr and LibraryMavenPtrOutput values.
LibraryPypiInput is an input type that accepts LibraryPypiArgs and LibraryPypiOutput values.
LibraryPypiPtrInput is an input type that accepts LibraryPypiArgs, LibraryPypiPtr and LibraryPypiPtrOutput values.
MetastoreArrayInput is an input type that accepts MetastoreArray and MetastoreArrayOutput values.
MetastoreAssignmentArrayInput is an input type that accepts MetastoreAssignmentArray and MetastoreAssignmentArrayOutput values.
No description provided by the author
MetastoreAssignmentMapInput is an input type that accepts MetastoreAssignmentMap and MetastoreAssignmentMapOutput values.
MetastoreDataAccessArrayInput is an input type that accepts MetastoreDataAccessArray and MetastoreDataAccessArrayOutput values.
MetastoreDataAccessAwsIamRoleInput is an input type that accepts MetastoreDataAccessAwsIamRoleArgs and MetastoreDataAccessAwsIamRoleOutput values.
MetastoreDataAccessAwsIamRolePtrInput is an input type that accepts MetastoreDataAccessAwsIamRoleArgs, MetastoreDataAccessAwsIamRolePtr and MetastoreDataAccessAwsIamRolePtrOutput values.
MetastoreDataAccessAzureServicePrincipalInput is an input type that accepts MetastoreDataAccessAzureServicePrincipalArgs and MetastoreDataAccessAzureServicePrincipalOutput values.
MetastoreDataAccessAzureServicePrincipalPtrInput is an input type that accepts MetastoreDataAccessAzureServicePrincipalArgs, MetastoreDataAccessAzureServicePrincipalPtr and MetastoreDataAccessAzureServicePrincipalPtrOutput values.
No description provided by the author
MetastoreDataAccessMapInput is an input type that accepts MetastoreDataAccessMap and MetastoreDataAccessMapOutput values.
No description provided by the author
MetastoreMapInput is an input type that accepts MetastoreMap and MetastoreMapOutput values.
MlflowExperimentArrayInput is an input type that accepts MlflowExperimentArray and MlflowExperimentArrayOutput values.
No description provided by the author
MlflowExperimentMapInput is an input type that accepts MlflowExperimentMap and MlflowExperimentMapOutput values.
MlflowModelArrayInput is an input type that accepts MlflowModelArray and MlflowModelArrayOutput values.
No description provided by the author
MlflowModelMapInput is an input type that accepts MlflowModelMap and MlflowModelMapOutput values.
MlflowModelTagArrayInput is an input type that accepts MlflowModelTagArray and MlflowModelTagArrayOutput values.
MlflowModelTagInput is an input type that accepts MlflowModelTagArgs and MlflowModelTagOutput values.
MlflowWebhookArrayInput is an input type that accepts MlflowWebhookArray and MlflowWebhookArrayOutput values.
MlflowWebhookHttpUrlSpecInput is an input type that accepts MlflowWebhookHttpUrlSpecArgs and MlflowWebhookHttpUrlSpecOutput values.
MlflowWebhookHttpUrlSpecPtrInput is an input type that accepts MlflowWebhookHttpUrlSpecArgs, MlflowWebhookHttpUrlSpecPtr and MlflowWebhookHttpUrlSpecPtrOutput values.
No description provided by the author
MlflowWebhookJobSpecInput is an input type that accepts MlflowWebhookJobSpecArgs and MlflowWebhookJobSpecOutput values.
MlflowWebhookJobSpecPtrInput is an input type that accepts MlflowWebhookJobSpecArgs, MlflowWebhookJobSpecPtr and MlflowWebhookJobSpecPtrOutput values.
MlflowWebhookMapInput is an input type that accepts MlflowWebhookMap and MlflowWebhookMapOutput values.
MountAbfsInput is an input type that accepts MountAbfsArgs and MountAbfsOutput values.
MountAbfsPtrInput is an input type that accepts MountAbfsArgs, MountAbfsPtr and MountAbfsPtrOutput values.
MountAdlInput is an input type that accepts MountAdlArgs and MountAdlOutput values.
MountAdlPtrInput is an input type that accepts MountAdlArgs, MountAdlPtr and MountAdlPtrOutput values.
MountArrayInput is an input type that accepts MountArray and MountArrayOutput values.
MountGsInput is an input type that accepts MountGsArgs and MountGsOutput values.
MountGsPtrInput is an input type that accepts MountGsArgs, MountGsPtr and MountGsPtrOutput values.
No description provided by the author
MountMapInput is an input type that accepts MountMap and MountMapOutput values.
MountS3Input is an input type that accepts MountS3Args and MountS3Output values.
MountS3PtrInput is an input type that accepts MountS3Args, MountS3Ptr and MountS3PtrOutput values.
MountWasbInput is an input type that accepts MountWasbArgs and MountWasbOutput values.
MountWasbPtrInput is an input type that accepts MountWasbArgs, MountWasbPtr and MountWasbPtrOutput values.
MwsCredentialsArrayInput is an input type that accepts MwsCredentialsArray and MwsCredentialsArrayOutput values.
No description provided by the author
MwsCredentialsMapInput is an input type that accepts MwsCredentialsMap and MwsCredentialsMapOutput values.
MwsCustomerManagedKeysArrayInput is an input type that accepts MwsCustomerManagedKeysArray and MwsCustomerManagedKeysArrayOutput values.
MwsCustomerManagedKeysAwsKeyInfoInput is an input type that accepts MwsCustomerManagedKeysAwsKeyInfoArgs and MwsCustomerManagedKeysAwsKeyInfoOutput values.
MwsCustomerManagedKeysAwsKeyInfoPtrInput is an input type that accepts MwsCustomerManagedKeysAwsKeyInfoArgs, MwsCustomerManagedKeysAwsKeyInfoPtr and MwsCustomerManagedKeysAwsKeyInfoPtrOutput values.
No description provided by the author
MwsCustomerManagedKeysMapInput is an input type that accepts MwsCustomerManagedKeysMap and MwsCustomerManagedKeysMapOutput values.
MwsLogDeliveryArrayInput is an input type that accepts MwsLogDeliveryArray and MwsLogDeliveryArrayOutput values.
No description provided by the author
MwsLogDeliveryMapInput is an input type that accepts MwsLogDeliveryMap and MwsLogDeliveryMapOutput values.
MwsNetworksArrayInput is an input type that accepts MwsNetworksArray and MwsNetworksArrayOutput values.
MwsNetworksErrorMessageArrayInput is an input type that accepts MwsNetworksErrorMessageArray and MwsNetworksErrorMessageArrayOutput values.
MwsNetworksErrorMessageInput is an input type that accepts MwsNetworksErrorMessageArgs and MwsNetworksErrorMessageOutput values.
No description provided by the author
MwsNetworksMapInput is an input type that accepts MwsNetworksMap and MwsNetworksMapOutput values.
MwsNetworksVpcEndpointsInput is an input type that accepts MwsNetworksVpcEndpointsArgs and MwsNetworksVpcEndpointsOutput values.
MwsNetworksVpcEndpointsPtrInput is an input type that accepts MwsNetworksVpcEndpointsArgs, MwsNetworksVpcEndpointsPtr and MwsNetworksVpcEndpointsPtrOutput values.
MwsPrivateAccessSettingsArrayInput is an input type that accepts MwsPrivateAccessSettingsArray and MwsPrivateAccessSettingsArrayOutput values.
No description provided by the author
MwsPrivateAccessSettingsMapInput is an input type that accepts MwsPrivateAccessSettingsMap and MwsPrivateAccessSettingsMapOutput values.
MwsStorageConfigurationsArrayInput is an input type that accepts MwsStorageConfigurationsArray and MwsStorageConfigurationsArrayOutput values.
No description provided by the author
MwsStorageConfigurationsMapInput is an input type that accepts MwsStorageConfigurationsMap and MwsStorageConfigurationsMapOutput values.
MwsVpcEndpointArrayInput is an input type that accepts MwsVpcEndpointArray and MwsVpcEndpointArrayOutput values.
No description provided by the author
MwsVpcEndpointMapInput is an input type that accepts MwsVpcEndpointMap and MwsVpcEndpointMapOutput values.
MwsWorkspacesArrayInput is an input type that accepts MwsWorkspacesArray and MwsWorkspacesArrayOutput values.
MwsWorkspacesCloudResourceBucketGcpInput is an input type that accepts MwsWorkspacesCloudResourceBucketGcpArgs and MwsWorkspacesCloudResourceBucketGcpOutput values.
MwsWorkspacesCloudResourceBucketGcpPtrInput is an input type that accepts MwsWorkspacesCloudResourceBucketGcpArgs, MwsWorkspacesCloudResourceBucketGcpPtr and MwsWorkspacesCloudResourceBucketGcpPtrOutput values.
MwsWorkspacesCloudResourceBucketInput is an input type that accepts MwsWorkspacesCloudResourceBucketArgs and MwsWorkspacesCloudResourceBucketOutput values.
MwsWorkspacesCloudResourceBucketPtrInput is an input type that accepts MwsWorkspacesCloudResourceBucketArgs, MwsWorkspacesCloudResourceBucketPtr and MwsWorkspacesCloudResourceBucketPtrOutput values.
MwsWorkspacesExternalCustomerInfoInput is an input type that accepts MwsWorkspacesExternalCustomerInfoArgs and MwsWorkspacesExternalCustomerInfoOutput values.
MwsWorkspacesExternalCustomerInfoPtrInput is an input type that accepts MwsWorkspacesExternalCustomerInfoArgs, MwsWorkspacesExternalCustomerInfoPtr and MwsWorkspacesExternalCustomerInfoPtrOutput values.
No description provided by the author
MwsWorkspacesMapInput is an input type that accepts MwsWorkspacesMap and MwsWorkspacesMapOutput values.
MwsWorkspacesNetworkGcpCommonNetworkConfigInput is an input type that accepts MwsWorkspacesNetworkGcpCommonNetworkConfigArgs and MwsWorkspacesNetworkGcpCommonNetworkConfigOutput values.
MwsWorkspacesNetworkGcpCommonNetworkConfigPtrInput is an input type that accepts MwsWorkspacesNetworkGcpCommonNetworkConfigArgs, MwsWorkspacesNetworkGcpCommonNetworkConfigPtr and MwsWorkspacesNetworkGcpCommonNetworkConfigPtrOutput values.
MwsWorkspacesNetworkGcpManagedNetworkConfigInput is an input type that accepts MwsWorkspacesNetworkGcpManagedNetworkConfigArgs and MwsWorkspacesNetworkGcpManagedNetworkConfigOutput values.
MwsWorkspacesNetworkGcpManagedNetworkConfigPtrInput is an input type that accepts MwsWorkspacesNetworkGcpManagedNetworkConfigArgs, MwsWorkspacesNetworkGcpManagedNetworkConfigPtr and MwsWorkspacesNetworkGcpManagedNetworkConfigPtrOutput values.
MwsWorkspacesNetworkInput is an input type that accepts MwsWorkspacesNetworkArgs and MwsWorkspacesNetworkOutput values.
MwsWorkspacesNetworkPtrInput is an input type that accepts MwsWorkspacesNetworkArgs, MwsWorkspacesNetworkPtr and MwsWorkspacesNetworkPtrOutput values.
MwsWorkspacesTokenInput is an input type that accepts MwsWorkspacesTokenArgs and MwsWorkspacesTokenOutput values.
MwsWorkspacesTokenPtrInput is an input type that accepts MwsWorkspacesTokenArgs, MwsWorkspacesTokenPtr and MwsWorkspacesTokenPtrOutput values.
NotebookArrayInput is an input type that accepts NotebookArray and NotebookArrayOutput values.
No description provided by the author
NotebookMapInput is an input type that accepts NotebookMap and NotebookMapOutput values.
OboTokenArrayInput is an input type that accepts OboTokenArray and OboTokenArrayOutput values.
No description provided by the author
OboTokenMapInput is an input type that accepts OboTokenMap and OboTokenMapOutput values.
PermissionsAccessControlArrayInput is an input type that accepts PermissionsAccessControlArray and PermissionsAccessControlArrayOutput values.
PermissionsAccessControlInput is an input type that accepts PermissionsAccessControlArgs and PermissionsAccessControlOutput values.
PermissionsArrayInput is an input type that accepts PermissionsArray and PermissionsArrayOutput values.
No description provided by the author
PermissionsMapInput is an input type that accepts PermissionsMap and PermissionsMapOutput values.
PipelineArrayInput is an input type that accepts PipelineArray and PipelineArrayOutput values.
PipelineClusterArrayInput is an input type that accepts PipelineClusterArray and PipelineClusterArrayOutput values.
PipelineClusterAutoscaleInput is an input type that accepts PipelineClusterAutoscaleArgs and PipelineClusterAutoscaleOutput values.
PipelineClusterAutoscalePtrInput is an input type that accepts PipelineClusterAutoscaleArgs, PipelineClusterAutoscalePtr and PipelineClusterAutoscalePtrOutput values.
PipelineClusterAwsAttributesInput is an input type that accepts PipelineClusterAwsAttributesArgs and PipelineClusterAwsAttributesOutput values.
PipelineClusterAwsAttributesPtrInput is an input type that accepts PipelineClusterAwsAttributesArgs, PipelineClusterAwsAttributesPtr and PipelineClusterAwsAttributesPtrOutput values.
PipelineClusterClusterLogConfDbfsInput is an input type that accepts PipelineClusterClusterLogConfDbfsArgs and PipelineClusterClusterLogConfDbfsOutput values.
PipelineClusterClusterLogConfDbfsPtrInput is an input type that accepts PipelineClusterClusterLogConfDbfsArgs, PipelineClusterClusterLogConfDbfsPtr and PipelineClusterClusterLogConfDbfsPtrOutput values.
PipelineClusterClusterLogConfInput is an input type that accepts PipelineClusterClusterLogConfArgs and PipelineClusterClusterLogConfOutput values.
PipelineClusterClusterLogConfPtrInput is an input type that accepts PipelineClusterClusterLogConfArgs, PipelineClusterClusterLogConfPtr and PipelineClusterClusterLogConfPtrOutput values.
PipelineClusterClusterLogConfS3Input is an input type that accepts PipelineClusterClusterLogConfS3Args and PipelineClusterClusterLogConfS3Output values.
PipelineClusterClusterLogConfS3PtrInput is an input type that accepts PipelineClusterClusterLogConfS3Args, PipelineClusterClusterLogConfS3Ptr and PipelineClusterClusterLogConfS3PtrOutput values.
PipelineClusterInitScriptArrayInput is an input type that accepts PipelineClusterInitScriptArray and PipelineClusterInitScriptArrayOutput values.
PipelineClusterInitScriptDbfsInput is an input type that accepts PipelineClusterInitScriptDbfsArgs and PipelineClusterInitScriptDbfsOutput values.
PipelineClusterInitScriptDbfsPtrInput is an input type that accepts PipelineClusterInitScriptDbfsArgs, PipelineClusterInitScriptDbfsPtr and PipelineClusterInitScriptDbfsPtrOutput values.
PipelineClusterInitScriptFileInput is an input type that accepts PipelineClusterInitScriptFileArgs and PipelineClusterInitScriptFileOutput values.
PipelineClusterInitScriptFilePtrInput is an input type that accepts PipelineClusterInitScriptFileArgs, PipelineClusterInitScriptFilePtr and PipelineClusterInitScriptFilePtrOutput values.
PipelineClusterInitScriptGcsInput is an input type that accepts PipelineClusterInitScriptGcsArgs and PipelineClusterInitScriptGcsOutput values.
PipelineClusterInitScriptGcsPtrInput is an input type that accepts PipelineClusterInitScriptGcsArgs, PipelineClusterInitScriptGcsPtr and PipelineClusterInitScriptGcsPtrOutput values.
PipelineClusterInitScriptInput is an input type that accepts PipelineClusterInitScriptArgs and PipelineClusterInitScriptOutput values.
PipelineClusterInitScriptS3Input is an input type that accepts PipelineClusterInitScriptS3Args and PipelineClusterInitScriptS3Output values.
PipelineClusterInitScriptS3PtrInput is an input type that accepts PipelineClusterInitScriptS3Args, PipelineClusterInitScriptS3Ptr and PipelineClusterInitScriptS3PtrOutput values.
PipelineClusterInput is an input type that accepts PipelineClusterArgs and PipelineClusterOutput values.
PipelineFiltersInput is an input type that accepts PipelineFiltersArgs and PipelineFiltersOutput values.
PipelineFiltersPtrInput is an input type that accepts PipelineFiltersArgs, PipelineFiltersPtr and PipelineFiltersPtrOutput values.
No description provided by the author
PipelineLibraryArrayInput is an input type that accepts PipelineLibraryArray and PipelineLibraryArrayOutput values.
PipelineLibraryInput is an input type that accepts PipelineLibraryArgs and PipelineLibraryOutput values.
PipelineLibraryMavenInput is an input type that accepts PipelineLibraryMavenArgs and PipelineLibraryMavenOutput values.
PipelineLibraryMavenPtrInput is an input type that accepts PipelineLibraryMavenArgs, PipelineLibraryMavenPtr and PipelineLibraryMavenPtrOutput values.
PipelineLibraryNotebookInput is an input type that accepts PipelineLibraryNotebookArgs and PipelineLibraryNotebookOutput values.
PipelineLibraryNotebookPtrInput is an input type that accepts PipelineLibraryNotebookArgs, PipelineLibraryNotebookPtr and PipelineLibraryNotebookPtrOutput values.
PipelineMapInput is an input type that accepts PipelineMap and PipelineMapOutput values.
No description provided by the author
RepoArrayInput is an input type that accepts RepoArray and RepoArrayOutput values.
No description provided by the author
RepoMapInput is an input type that accepts RepoMap and RepoMapOutput values.
SchemaArrayInput is an input type that accepts SchemaArray and SchemaArrayOutput values.
No description provided by the author
SchemaMapInput is an input type that accepts SchemaMap and SchemaMapOutput values.
SecretAclArrayInput is an input type that accepts SecretAclArray and SecretAclArrayOutput values.
No description provided by the author
SecretAclMapInput is an input type that accepts SecretAclMap and SecretAclMapOutput values.
SecretArrayInput is an input type that accepts SecretArray and SecretArrayOutput values.
No description provided by the author
SecretMapInput is an input type that accepts SecretMap and SecretMapOutput values.
SecretScopeArrayInput is an input type that accepts SecretScopeArray and SecretScopeArrayOutput values.
No description provided by the author
SecretScopeKeyvaultMetadataInput is an input type that accepts SecretScopeKeyvaultMetadataArgs and SecretScopeKeyvaultMetadataOutput values.
SecretScopeKeyvaultMetadataPtrInput is an input type that accepts SecretScopeKeyvaultMetadataArgs, SecretScopeKeyvaultMetadataPtr and SecretScopeKeyvaultMetadataPtrOutput values.
SecretScopeMapInput is an input type that accepts SecretScopeMap and SecretScopeMapOutput values.
ServicePrincipalArrayInput is an input type that accepts ServicePrincipalArray and ServicePrincipalArrayOutput values.
No description provided by the author
ServicePrincipalMapInput is an input type that accepts ServicePrincipalMap and ServicePrincipalMapOutput values.
ServicePrincipalRoleArrayInput is an input type that accepts ServicePrincipalRoleArray and ServicePrincipalRoleArrayOutput values.
No description provided by the author
ServicePrincipalRoleMapInput is an input type that accepts ServicePrincipalRoleMap and ServicePrincipalRoleMapOutput values.
SqlDashboardArrayInput is an input type that accepts SqlDashboardArray and SqlDashboardArrayOutput values.
No description provided by the author
SqlDashboardMapInput is an input type that accepts SqlDashboardMap and SqlDashboardMapOutput values.
SqlEndpointArrayInput is an input type that accepts SqlEndpointArray and SqlEndpointArrayOutput values.
SqlEndpointChannelInput is an input type that accepts SqlEndpointChannelArgs and SqlEndpointChannelOutput values.
SqlEndpointChannelPtrInput is an input type that accepts SqlEndpointChannelArgs, SqlEndpointChannelPtr and SqlEndpointChannelPtrOutput values.
No description provided by the author
SqlEndpointMapInput is an input type that accepts SqlEndpointMap and SqlEndpointMapOutput values.
SqlEndpointOdbcParamsInput is an input type that accepts SqlEndpointOdbcParamsArgs and SqlEndpointOdbcParamsOutput values.
SqlEndpointOdbcParamsPtrInput is an input type that accepts SqlEndpointOdbcParamsArgs, SqlEndpointOdbcParamsPtr and SqlEndpointOdbcParamsPtrOutput values.
SqlEndpointTagsCustomTagArrayInput is an input type that accepts SqlEndpointTagsCustomTagArray and SqlEndpointTagsCustomTagArrayOutput values.
SqlEndpointTagsCustomTagInput is an input type that accepts SqlEndpointTagsCustomTagArgs and SqlEndpointTagsCustomTagOutput values.
SqlEndpointTagsInput is an input type that accepts SqlEndpointTagsArgs and SqlEndpointTagsOutput values.
SqlEndpointTagsPtrInput is an input type that accepts SqlEndpointTagsArgs, SqlEndpointTagsPtr and SqlEndpointTagsPtrOutput values.
SqlGlobalConfigArrayInput is an input type that accepts SqlGlobalConfigArray and SqlGlobalConfigArrayOutput values.
No description provided by the author
SqlGlobalConfigMapInput is an input type that accepts SqlGlobalConfigMap and SqlGlobalConfigMapOutput values.
SqlPermissionsArrayInput is an input type that accepts SqlPermissionsArray and SqlPermissionsArrayOutput values.
No description provided by the author
SqlPermissionsMapInput is an input type that accepts SqlPermissionsMap and SqlPermissionsMapOutput values.
SqlPermissionsPrivilegeAssignmentArrayInput is an input type that accepts SqlPermissionsPrivilegeAssignmentArray and SqlPermissionsPrivilegeAssignmentArrayOutput values.
SqlPermissionsPrivilegeAssignmentInput is an input type that accepts SqlPermissionsPrivilegeAssignmentArgs and SqlPermissionsPrivilegeAssignmentOutput values.
SqlQueryArrayInput is an input type that accepts SqlQueryArray and SqlQueryArrayOutput values.
No description provided by the author
SqlQueryMapInput is an input type that accepts SqlQueryMap and SqlQueryMapOutput values.
SqlQueryParameterArrayInput is an input type that accepts SqlQueryParameterArray and SqlQueryParameterArrayOutput values.
SqlQueryParameterDateInput is an input type that accepts SqlQueryParameterDateArgs and SqlQueryParameterDateOutput values.
SqlQueryParameterDatePtrInput is an input type that accepts SqlQueryParameterDateArgs, SqlQueryParameterDatePtr and SqlQueryParameterDatePtrOutput values.
SqlQueryParameterDateRangeInput is an input type that accepts SqlQueryParameterDateRangeArgs and SqlQueryParameterDateRangeOutput values.
SqlQueryParameterDateRangePtrInput is an input type that accepts SqlQueryParameterDateRangeArgs, SqlQueryParameterDateRangePtr and SqlQueryParameterDateRangePtrOutput values.
SqlQueryParameterDatetimeInput is an input type that accepts SqlQueryParameterDatetimeArgs and SqlQueryParameterDatetimeOutput values.
SqlQueryParameterDatetimePtrInput is an input type that accepts SqlQueryParameterDatetimeArgs, SqlQueryParameterDatetimePtr and SqlQueryParameterDatetimePtrOutput values.
SqlQueryParameterDatetimeRangeInput is an input type that accepts SqlQueryParameterDatetimeRangeArgs and SqlQueryParameterDatetimeRangeOutput values.
SqlQueryParameterDatetimeRangePtrInput is an input type that accepts SqlQueryParameterDatetimeRangeArgs, SqlQueryParameterDatetimeRangePtr and SqlQueryParameterDatetimeRangePtrOutput values.
SqlQueryParameterDatetimesecInput is an input type that accepts SqlQueryParameterDatetimesecArgs and SqlQueryParameterDatetimesecOutput values.
SqlQueryParameterDatetimesecPtrInput is an input type that accepts SqlQueryParameterDatetimesecArgs, SqlQueryParameterDatetimesecPtr and SqlQueryParameterDatetimesecPtrOutput values.
SqlQueryParameterDatetimesecRangeInput is an input type that accepts SqlQueryParameterDatetimesecRangeArgs and SqlQueryParameterDatetimesecRangeOutput values.
SqlQueryParameterDatetimesecRangePtrInput is an input type that accepts SqlQueryParameterDatetimesecRangeArgs, SqlQueryParameterDatetimesecRangePtr and SqlQueryParameterDatetimesecRangePtrOutput values.
SqlQueryParameterEnumInput is an input type that accepts SqlQueryParameterEnumArgs and SqlQueryParameterEnumOutput values.
SqlQueryParameterEnumMultipleInput is an input type that accepts SqlQueryParameterEnumMultipleArgs and SqlQueryParameterEnumMultipleOutput values.
SqlQueryParameterEnumMultiplePtrInput is an input type that accepts SqlQueryParameterEnumMultipleArgs, SqlQueryParameterEnumMultiplePtr and SqlQueryParameterEnumMultiplePtrOutput values.
SqlQueryParameterEnumPtrInput is an input type that accepts SqlQueryParameterEnumArgs, SqlQueryParameterEnumPtr and SqlQueryParameterEnumPtrOutput values.
SqlQueryParameterInput is an input type that accepts SqlQueryParameterArgs and SqlQueryParameterOutput values.
SqlQueryParameterNumberInput is an input type that accepts SqlQueryParameterNumberArgs and SqlQueryParameterNumberOutput values.
SqlQueryParameterNumberPtrInput is an input type that accepts SqlQueryParameterNumberArgs, SqlQueryParameterNumberPtr and SqlQueryParameterNumberPtrOutput values.
SqlQueryParameterQueryInput is an input type that accepts SqlQueryParameterQueryArgs and SqlQueryParameterQueryOutput values.
SqlQueryParameterQueryMultipleInput is an input type that accepts SqlQueryParameterQueryMultipleArgs and SqlQueryParameterQueryMultipleOutput values.
SqlQueryParameterQueryMultiplePtrInput is an input type that accepts SqlQueryParameterQueryMultipleArgs, SqlQueryParameterQueryMultiplePtr and SqlQueryParameterQueryMultiplePtrOutput values.
SqlQueryParameterQueryPtrInput is an input type that accepts SqlQueryParameterQueryArgs, SqlQueryParameterQueryPtr and SqlQueryParameterQueryPtrOutput values.
SqlQueryParameterTextInput is an input type that accepts SqlQueryParameterTextArgs and SqlQueryParameterTextOutput values.
SqlQueryParameterTextPtrInput is an input type that accepts SqlQueryParameterTextArgs, SqlQueryParameterTextPtr and SqlQueryParameterTextPtrOutput values.
SqlQueryScheduleContinuousInput is an input type that accepts SqlQueryScheduleContinuousArgs and SqlQueryScheduleContinuousOutput values.
SqlQueryScheduleContinuousPtrInput is an input type that accepts SqlQueryScheduleContinuousArgs, SqlQueryScheduleContinuousPtr and SqlQueryScheduleContinuousPtrOutput values.
SqlQueryScheduleDailyInput is an input type that accepts SqlQueryScheduleDailyArgs and SqlQueryScheduleDailyOutput values.
SqlQueryScheduleDailyPtrInput is an input type that accepts SqlQueryScheduleDailyArgs, SqlQueryScheduleDailyPtr and SqlQueryScheduleDailyPtrOutput values.
SqlQueryScheduleInput is an input type that accepts SqlQueryScheduleArgs and SqlQueryScheduleOutput values.
SqlQuerySchedulePtrInput is an input type that accepts SqlQueryScheduleArgs, SqlQuerySchedulePtr and SqlQuerySchedulePtrOutput values.
SqlQueryScheduleWeeklyInput is an input type that accepts SqlQueryScheduleWeeklyArgs and SqlQueryScheduleWeeklyOutput values.
SqlQueryScheduleWeeklyPtrInput is an input type that accepts SqlQueryScheduleWeeklyArgs, SqlQueryScheduleWeeklyPtr and SqlQueryScheduleWeeklyPtrOutput values.
SqlVisualizationArrayInput is an input type that accepts SqlVisualizationArray and SqlVisualizationArrayOutput values.
No description provided by the author
SqlVisualizationMapInput is an input type that accepts SqlVisualizationMap and SqlVisualizationMapOutput values.
SqlWidgetArrayInput is an input type that accepts SqlWidgetArray and SqlWidgetArrayOutput values.
No description provided by the author
SqlWidgetMapInput is an input type that accepts SqlWidgetMap and SqlWidgetMapOutput values.
SqlWidgetParameterArrayInput is an input type that accepts SqlWidgetParameterArray and SqlWidgetParameterArrayOutput values.
SqlWidgetParameterInput is an input type that accepts SqlWidgetParameterArgs and SqlWidgetParameterOutput values.
SqlWidgetPositionInput is an input type that accepts SqlWidgetPositionArgs and SqlWidgetPositionOutput values.
SqlWidgetPositionPtrInput is an input type that accepts SqlWidgetPositionArgs, SqlWidgetPositionPtr and SqlWidgetPositionPtrOutput values.
StorageCredentialArrayInput is an input type that accepts StorageCredentialArray and StorageCredentialArrayOutput values.
StorageCredentialAwsIamRoleInput is an input type that accepts StorageCredentialAwsIamRoleArgs and StorageCredentialAwsIamRoleOutput values.
StorageCredentialAwsIamRolePtrInput is an input type that accepts StorageCredentialAwsIamRoleArgs, StorageCredentialAwsIamRolePtr and StorageCredentialAwsIamRolePtrOutput values.
StorageCredentialAzureServicePrincipalInput is an input type that accepts StorageCredentialAzureServicePrincipalArgs and StorageCredentialAzureServicePrincipalOutput values.
StorageCredentialAzureServicePrincipalPtrInput is an input type that accepts StorageCredentialAzureServicePrincipalArgs, StorageCredentialAzureServicePrincipalPtr and StorageCredentialAzureServicePrincipalPtrOutput values.
No description provided by the author
StorageCredentialMapInput is an input type that accepts StorageCredentialMap and StorageCredentialMapOutput values.
TableArrayInput is an input type that accepts TableArray and TableArrayOutput values.
TableColumnArrayInput is an input type that accepts TableColumnArray and TableColumnArrayOutput values.
TableColumnInput is an input type that accepts TableColumnArgs and TableColumnOutput values.
No description provided by the author
TableMapInput is an input type that accepts TableMap and TableMapOutput values.
TokenArrayInput is an input type that accepts TokenArray and TokenArrayOutput values.
No description provided by the author
TokenMapInput is an input type that accepts TokenMap and TokenMapOutput values.
UserArrayInput is an input type that accepts UserArray and UserArrayOutput values.
No description provided by the author
UserInstanceProfileArrayInput is an input type that accepts UserInstanceProfileArray and UserInstanceProfileArrayOutput values.
No description provided by the author
UserInstanceProfileMapInput is an input type that accepts UserInstanceProfileMap and UserInstanceProfileMapOutput values.
UserMapInput is an input type that accepts UserMap and UserMapOutput values.
UserRoleArrayInput is an input type that accepts UserRoleArray and UserRoleArrayOutput values.
No description provided by the author
UserRoleMapInput is an input type that accepts UserRoleMap and UserRoleMapOutput values.
WorkspaceConfArrayInput is an input type that accepts WorkspaceConfArray and WorkspaceConfArrayOutput values.
No description provided by the author
WorkspaceConfMapInput is an input type that accepts WorkspaceConfMap and WorkspaceConfMapOutput values.

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author