diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 5bec8e8e02..be52619e9b 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -8,6 +8,9 @@ * Add `databricks_users` data source ([#4028](https://github.com/databricks/terraform-provider-databricks/pull/4028)) * Improve `databricks_service_principals` data source ([#5164](https://github.com/databricks/terraform-provider-databricks/pull/5164)) +* Add `http_headers` and `http_path_prefix` provider configuration options for HTTP proxy support ([#XXXX](https://github.com/databricks/terraform-provider-databricks/pull/XXXX)). + + These options enable the provider to work with HTTP proxies that require custom authentication headers or URL path rewriting. ### Bug Fixes diff --git a/docs/index.md b/docs/index.md index 7fd7ed55c0..cecde58337 100644 --- a/docs/index.md +++ b/docs/index.md @@ -142,6 +142,28 @@ The provider supports additional configuration parameters not related to authent * `debug_headers` - (optional, environment variable `DATABRICKS_DEBUG_HEADERS`) Applicable only when `TF_LOG=DEBUG` is set. Debug HTTP headers of requests made by the provider. Default is *false*. We recommend turning this flag on only under exceptional circumstances, when troubleshooting authentication issues. Turning this flag on will log first `debug_truncate_bytes` of any HTTP header value in cleartext. * `skip_verify` - skips SSL certificate verification for HTTP calls. *Use at your own risk.* Default is *false* (don't skip verification). +The following parameters can be used for HTTP proxy scenarios: + +* `http_headers` - (optional) A map of custom HTTP headers to add to all API requests. This is useful when working with HTTP proxies that require custom authentication headers. This field is marked as sensitive. +* `http_path_prefix` - (optional) A path prefix to prepend to all API request URLs. This is useful when working with HTTP proxies that use path-based routing. + +### HTTP Proxy Configuration Example + +When using an HTTP proxy that requires custom headers or path rewriting: + +```hcl +provider "databricks" { + host = "https://proxy.example.com" + token = "your-token" + + http_headers = { + "X-Custom-Auth" = "auth-value" + } + + http_path_prefix = "/proxy" +} +``` + !> **Warning** Sensitive credentials are printed to the log when `debug_headers` is `true`. Use it for troubleshooting purposes only. ### `host` argument @@ -173,7 +195,7 @@ There are currently a number of supported methods to [authenticate](https://docs !> **Warning** Please be aware that hard coding any credentials in plain text is not something that is recommended. We strongly recommend using a Terraform backend that supports encryption. Please use [environment variables](#environment-variables), `~/.databrickscfg` file, encrypted `.tfvars` files or secret store of your choice (Hashicorp [Vault](https://www.vaultproject.io/), AWS [Secrets Manager](https://aws.amazon.com/secrets-manager/), AWS [Param Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html), Azure [Key Vault](https://azure.microsoft.com/en-us/services/key-vault/)) ### Authenticating with GitHub OpenID Connect (OIDC) -The arguments `host` and `client_id` are used for the authentication which maps to the `github-oidc` authentication type. +The arguments `host` and `client_id` are used for the authentication which maps to the `github-oidc` authentication type. These can be declared in the provider block or set in the environment variables `DATABRICKS_HOST` and `DATABRICKS_CLIENT_ID` respectively. Example: @@ -200,7 +222,7 @@ provider "databricks" { ### Authenticating with Databricks CLI -The provider can authenticate using the Databricks CLI. After logging in with the `databricks auth login` command to your account or workspace, you only need to specify the name of the profile in your provider configuration. Terraform will automatically read and reuse the cached OAuth token to interact with the Databricks REST API. See [the user-to-machine authentication guide](https://docs.databricks.com/aws/en/dev-tools/cli/authentication#oauth-user-to-machine-u2m-authentication) for more details. +The provider can authenticate using the Databricks CLI. After logging in with the `databricks auth login` command to your account or workspace, you only need to specify the name of the profile in your provider configuration. Terraform will automatically read and reuse the cached OAuth token to interact with the Databricks REST API. See [the user-to-machine authentication guide](https://docs.databricks.com/aws/en/dev-tools/cli/authentication#oauth-user-to-machine-u2m-authentication) for more details. You can specify a [CLI connection profile](https://docs.databricks.com/aws/en/dev-tools/cli/profiles) through `profile` parameter or `DATABRICKS_CONFIG_PROFILE` environment variable: @@ -275,7 +297,7 @@ provider "databricks" { ### Authenticating with Workload Identity Federation (WIF) -Workload Identity Federation can be used to authenticate Databricks from automated workflows. This is done through the tokens issued by the automation environment. For more details on environment variables regarding the specific environments, please see: https://docs.databricks.com/aws/en/dev-tools/auth/oauth-federation-provider. +Workload Identity Federation can be used to authenticate Databricks from automated workflows. This is done through the tokens issued by the automation environment. For more details on environment variables regarding the specific environments, please see: https://docs.databricks.com/aws/en/dev-tools/auth/oauth-federation-provider. To create resources at both the account and workspace levels, you can create two providers as shown below: @@ -300,7 +322,7 @@ provider "databricks" { } ``` -Note: `auth_type` for Github Actions would be "github-oidc". For more details, please see the document linked above. +Note: `auth_type` for Github Actions would be "github-oidc". For more details, please see the document linked above. ## Special configurations for Azure @@ -351,7 +373,7 @@ resource "databricks_user" "my-user" { } ``` -Follow the [Configuring OpenID Connect in Azure](https://docs.github.com/en/actions/security-for-github-actions/security-hardening-your-deployments/configuring-openid-connect-in-azure). You can then use the Azure service principal to authenticate in databricks. +Follow the [Configuring OpenID Connect in Azure](https://docs.github.com/en/actions/security-for-github-actions/security-hardening-your-deployments/configuring-openid-connect-in-azure). You can then use the Azure service principal to authenticate in databricks. There are `ARM_*` environment variables provide a way to share authentication configuration using the `databricks` provider alongside the [`azurerm` provider](https://registry.terraform.io/providers/hashicorp/azurerm/latest). @@ -462,7 +484,7 @@ To make Databricks Terraform Provider generally available, we've moved it from [ You should have [`.terraform.lock.hcl`](https://github.com/databrickslabs/terraform-provider-databricks/blob/v0.6.2/scripts/versions-lock.hcl) file in your state directory that is checked into source control. terraform init will give you the following warning. ```text -Warning: Additional provider information from registry +Warning: Additional provider information from registry The remote registry returned warnings for registry.terraform.io/databrickslabs/databricks: - For users on Terraform 0.13 or greater, this provider has moved to databricks/databricks. Please update your source in required_providers. diff --git a/internal/providers/client/databricks_client.go b/internal/providers/client/databricks_client.go index b46ff44f2a..7f77ecdf69 100644 --- a/internal/providers/client/databricks_client.go +++ b/internal/providers/client/databricks_client.go @@ -3,6 +3,8 @@ package client import ( "context" "fmt" + "net/http" + "strings" "github.com/databricks/databricks-sdk-go/client" "github.com/databricks/databricks-sdk-go/config" @@ -11,17 +13,47 @@ import ( "github.com/hashicorp/terraform-plugin-log/tflog" ) +// HTTPConfig holds configuration for custom HTTP transport behavior. +type HTTPConfig struct { + // Headers are custom HTTP headers added to all API requests. + Headers map[string]string + // PathPrefix is prepended to all API request URL paths. + PathPrefix string +} + +// httpTransportWrapper wraps an http.RoundTripper to add custom headers +// and path prefix to all requests. +type httpTransportWrapper struct { + base http.RoundTripper + headers map[string]string + pathPrefix string +} + +// RoundTrip implements http.RoundTripper interface. +func (t *httpTransportWrapper) RoundTrip(req *http.Request) (*http.Response, error) { + // Add custom headers + for key, val := range t.headers { + req.Header.Set(key, val) + } + // Add path prefix + if t.pathPrefix != "" { + req.URL.Path = strings.TrimSuffix(t.pathPrefix, "/") + req.URL.Path + } + return t.base.RoundTrip(req) +} + // PrepareDatabricksClient makes some common adjustments to the config that apply in all cases // and returns a ready-to-use Databricks client. This includes: // - mapping deprecated auth types to their newer counterparts // - ensuring the config is resolved // - setting a default retry timeout if not set // - setting a default HTTP timeout if not set +// - configuring custom HTTP headers and path prefix if provided // // TODO: this should be colocated with the definition of DatabricksClient in common/client.go, but // this isn't possible without introducing a circular dependency. Fixing this will require refactoring // DatabricksClient out of the common package. -func PrepareDatabricksClient(ctx context.Context, cfg *config.Config, configCustomizer func(*config.Config) error) (*common.DatabricksClient, error) { +func PrepareDatabricksClient(ctx context.Context, cfg *config.Config, configCustomizer func(*config.Config) error, httpConfig *HTTPConfig) (*common.DatabricksClient, error) { if cfg.AuthType != "" { // mapping from previous Google authentication types // and current authentication types from Databricks Go SDK @@ -53,6 +85,24 @@ func PrepareDatabricksClient(ctx context.Context, cfg *config.Config, configCust return nil, err } } + // Set up custom HTTP transport if headers or path prefix are specified + if httpConfig != nil && (len(httpConfig.Headers) > 0 || httpConfig.PathPrefix != "") { + baseTransport := cfg.HTTPTransport + if baseTransport == nil { + baseTransport = http.DefaultTransport + } + cfg.HTTPTransport = &httpTransportWrapper{ + base: baseTransport, + headers: httpConfig.Headers, + pathPrefix: httpConfig.PathPrefix, + } + if len(httpConfig.Headers) > 0 { + tflog.Debug(ctx, fmt.Sprintf("Custom HTTP headers configured: %d header(s)", len(httpConfig.Headers))) + } + if httpConfig.PathPrefix != "" { + tflog.Debug(ctx, fmt.Sprintf("Custom HTTP path prefix configured: %s", httpConfig.PathPrefix)) + } + } client, err := client.New(cfg) if err != nil { return nil, err diff --git a/internal/providers/client/databricks_client_test.go b/internal/providers/client/databricks_client_test.go new file mode 100644 index 0000000000..30b08c80ed --- /dev/null +++ b/internal/providers/client/databricks_client_test.go @@ -0,0 +1,163 @@ +package client + +import ( + "net/http" + "net/http/httptest" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestHttpTransportWrapper_RoundTrip_Headers(t *testing.T) { + // Create a test server to capture the request + var capturedHeaders http.Header + var capturedPath string + server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + capturedHeaders = r.Header.Clone() + capturedPath = r.URL.Path + w.WriteHeader(http.StatusOK) + })) + defer server.Close() + + // Create the transport wrapper with custom headers + wrapper := &httpTransportWrapper{ + base: http.DefaultTransport, + headers: map[string]string{ + "X-Custom-Header": "custom-value", + "X-Actor-Id": "actor-123", + }, + } + + // Create a request and send it + req, err := http.NewRequest("GET", server.URL+"/api/test", nil) + require.NoError(t, err) + + client := &http.Client{Transport: wrapper} + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + + // Verify headers were added + assert.Equal(t, "custom-value", capturedHeaders.Get("X-Custom-Header")) + assert.Equal(t, "actor-123", capturedHeaders.Get("X-Actor-Id")) + assert.Equal(t, "/api/test", capturedPath) +} + +func TestHttpTransportWrapper_RoundTrip_PathPrefix(t *testing.T) { + // Create a test server to capture the request + var capturedPath string + server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + capturedPath = r.URL.Path + w.WriteHeader(http.StatusOK) + })) + defer server.Close() + + // Create the transport wrapper with path prefix + wrapper := &httpTransportWrapper{ + base: http.DefaultTransport, + pathPrefix: "/proxy/env-01", + } + + // Create a request and send it + req, err := http.NewRequest("GET", server.URL+"/api/test", nil) + require.NoError(t, err) + + client := &http.Client{Transport: wrapper} + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + + // Verify path prefix was added + assert.Equal(t, "/proxy/env-01/api/test", capturedPath) +} + +func TestHttpTransportWrapper_RoundTrip_PathPrefixWithTrailingSlash(t *testing.T) { + // Create a test server to capture the request + var capturedPath string + server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + capturedPath = r.URL.Path + w.WriteHeader(http.StatusOK) + })) + defer server.Close() + + // Create the transport wrapper with path prefix that has trailing slash + wrapper := &httpTransportWrapper{ + base: http.DefaultTransport, + pathPrefix: "/proxy/env-01/", + } + + // Create a request and send it + req, err := http.NewRequest("GET", server.URL+"/api/test", nil) + require.NoError(t, err) + + client := &http.Client{Transport: wrapper} + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + + // Verify trailing slash is trimmed from prefix + assert.Equal(t, "/proxy/env-01/api/test", capturedPath) +} + +func TestHttpTransportWrapper_RoundTrip_HeadersAndPathPrefix(t *testing.T) { + // Create a test server to capture the request + var capturedHeaders http.Header + var capturedPath string + server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + capturedHeaders = r.Header.Clone() + capturedPath = r.URL.Path + w.WriteHeader(http.StatusOK) + })) + defer server.Close() + + // Create the transport wrapper with both headers and path prefix + wrapper := &httpTransportWrapper{ + base: http.DefaultTransport, + headers: map[string]string{ + "Authorization": "Bearer token123", + }, + pathPrefix: "/environments/staging", + } + + // Create a request and send it + req, err := http.NewRequest("GET", server.URL+"/api/2.0/clusters/list", nil) + require.NoError(t, err) + + client := &http.Client{Transport: wrapper} + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + + // Verify both headers and path prefix were applied + assert.Equal(t, "Bearer token123", capturedHeaders.Get("Authorization")) + assert.Equal(t, "/environments/staging/api/2.0/clusters/list", capturedPath) +} + +func TestHttpTransportWrapper_RoundTrip_EmptyConfig(t *testing.T) { + // Create a test server to capture the request + var capturedPath string + server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + capturedPath = r.URL.Path + w.WriteHeader(http.StatusOK) + })) + defer server.Close() + + // Create the transport wrapper with no customizations + wrapper := &httpTransportWrapper{ + base: http.DefaultTransport, + headers: nil, + } + + // Create a request and send it + req, err := http.NewRequest("GET", server.URL+"/api/test", nil) + require.NoError(t, err) + + client := &http.Client{Transport: wrapper} + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + + // Verify no modifications + assert.Equal(t, "/api/test", capturedPath) +} diff --git a/internal/providers/pluginfw/pluginfw.go b/internal/providers/pluginfw/pluginfw.go index 787bfcda9d..f24cf4cdc8 100644 --- a/internal/providers/pluginfw/pluginfw.go +++ b/internal/providers/pluginfw/pluginfw.go @@ -92,6 +92,17 @@ func providerSchemaPluginFramework() schema.Schema { } } } + // Custom HTTP proxy configuration options + ps["http_headers"] = schema.MapAttribute{ + Optional: true, + Sensitive: true, + ElementType: types.StringType, + Description: "Custom HTTP headers to add to all API requests. Useful for HTTP proxies that require custom authentication headers.", + } + ps["http_path_prefix"] = schema.StringAttribute{ + Optional: true, + Description: "Path prefix to prepend to all API request URLs. Useful for HTTP proxies that use path-based routing.", + } return schema.Schema{ Attributes: ps, } @@ -169,7 +180,36 @@ func (p *DatabricksProviderPluginFramework) configureDatabricksClient(ctx contex } else { tflog.Info(ctx, "(plugin framework) No attributes specified in provider configuration") } - databricksClient, err := client.PrepareDatabricksClient(ctx, cfg, p.configCustomizer) + // Read custom HTTP configuration + var httpConfig *client.HTTPConfig + var httpHeaders types.Map + resp.Diagnostics.Append(req.Config.GetAttribute(ctx, path.Root("http_headers"), &httpHeaders)...) + var httpPathPrefix types.String + resp.Diagnostics.Append(req.Config.GetAttribute(ctx, path.Root("http_path_prefix"), &httpPathPrefix)...) + if resp.Diagnostics.HasError() { + return nil + } + if !httpHeaders.IsNull() && !httpHeaders.IsUnknown() || !httpPathPrefix.IsNull() && !httpPathPrefix.IsUnknown() { + headers := make(map[string]string) + if !httpHeaders.IsNull() && !httpHeaders.IsUnknown() { + for k, v := range httpHeaders.Elements() { + if strVal, ok := v.(types.String); ok && !strVal.IsNull() { + headers[k] = strVal.ValueString() + } + } + } + pathPrefix := "" + if !httpPathPrefix.IsNull() && !httpPathPrefix.IsUnknown() { + pathPrefix = httpPathPrefix.ValueString() + } + if len(headers) > 0 || pathPrefix != "" { + httpConfig = &client.HTTPConfig{ + Headers: headers, + PathPrefix: pathPrefix, + } + } + } + databricksClient, err := client.PrepareDatabricksClient(ctx, cfg, p.configCustomizer, httpConfig) if err != nil { resp.Diagnostics.AddError("Failed to configure Databricks client", err.Error()) return nil diff --git a/internal/providers/sdkv2/sdkv2.go b/internal/providers/sdkv2/sdkv2.go index e737871088..b95d465284 100644 --- a/internal/providers/sdkv2/sdkv2.go +++ b/internal/providers/sdkv2/sdkv2.go @@ -321,6 +321,19 @@ func providerSchema() map[string]*schema.Schema { } ps[attr.Name] = fieldSchema } + // Custom HTTP proxy configuration options + ps["http_headers"] = &schema.Schema{ + Type: schema.TypeMap, + Optional: true, + Sensitive: true, + Elem: &schema.Schema{Type: schema.TypeString}, + Description: "Custom HTTP headers to add to all API requests. Useful for HTTP proxies that require custom authentication headers.", + } + ps["http_path_prefix"] = &schema.Schema{ + Type: schema.TypeString, + Optional: true, + Description: "Path prefix to prepend to all API request URLs. Useful for HTTP proxies that use path-based routing.", + } return ps } @@ -342,7 +355,21 @@ func ConfigureDatabricksClient(ctx context.Context, d *schema.ResourceData, conf } else { tflog.Info(ctx, "(sdkv2) No attributes specified in provider configuration") } - databricksClient, err := client.PrepareDatabricksClient(ctx, cfg, configCustomizer) + // Read custom HTTP configuration + var httpConfig *client.HTTPConfig + httpHeaders := d.Get("http_headers").(map[string]interface{}) + httpPathPrefix := d.Get("http_path_prefix").(string) + if len(httpHeaders) > 0 || httpPathPrefix != "" { + headers := make(map[string]string) + for k, v := range httpHeaders { + headers[k] = v.(string) + } + httpConfig = &client.HTTPConfig{ + Headers: headers, + PathPrefix: httpPathPrefix, + } + } + databricksClient, err := client.PrepareDatabricksClient(ctx, cfg, configCustomizer, httpConfig) if err != nil { return nil, diag.FromErr(err) } diff --git a/internal/providers/sdkv2/sdkv2_test.go b/internal/providers/sdkv2/sdkv2_test.go index e1efdf7b50..89325cfaed 100644 --- a/internal/providers/sdkv2/sdkv2_test.go +++ b/internal/providers/sdkv2/sdkv2_test.go @@ -5,6 +5,7 @@ import ( "testing" "github.com/databricks/terraform-provider-databricks/common" + "github.com/databricks/terraform-provider-databricks/internal/providers/client" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/stretchr/testify/assert" ) @@ -54,3 +55,97 @@ func TestConfigureDatabricksClient(t *testing.T) { }) } } + +func TestProviderSchema_HttpHeadersAndPathPrefix(t *testing.T) { + p := DatabricksProvider() + + // Verify http_headers schema exists with correct configuration + httpHeadersSchema, ok := p.Schema["http_headers"] + assert.True(t, ok, "http_headers schema should exist") + assert.Equal(t, schema.TypeMap, httpHeadersSchema.Type) + assert.True(t, httpHeadersSchema.Optional) + assert.True(t, httpHeadersSchema.Sensitive) + assert.Equal(t, "Custom HTTP headers to add to all API requests. Useful for HTTP proxies that require custom authentication headers.", httpHeadersSchema.Description) + + // Verify http_path_prefix schema exists with correct configuration + httpPathPrefixSchema, ok := p.Schema["http_path_prefix"] + assert.True(t, ok, "http_path_prefix schema should exist") + assert.Equal(t, schema.TypeString, httpPathPrefixSchema.Type) + assert.True(t, httpPathPrefixSchema.Optional) + assert.False(t, httpPathPrefixSchema.Sensitive) + assert.Equal(t, "Path prefix to prepend to all API request URLs. Useful for HTTP proxies that use path-based routing.", httpPathPrefixSchema.Description) +} + +func TestConfigureDatabricksClient_HttpConfig(t *testing.T) { + testCases := []struct { + name string + config map[string]interface{} + expectHTTPTransportSet bool + }{ + { + name: "No HTTP config by default", + config: map[string]interface{}{}, + expectHTTPTransportSet: false, + }, + { + name: "HTTP headers set configures transport", + config: map[string]interface{}{ + "http_headers": map[string]interface{}{ + "X-Custom-Header": "value", + }, + }, + expectHTTPTransportSet: true, + }, + { + name: "HTTP path prefix set configures transport", + config: map[string]interface{}{ + "http_path_prefix": "/proxy/env", + }, + expectHTTPTransportSet: true, + }, + { + name: "Both HTTP headers and path prefix set", + config: map[string]interface{}{ + "http_headers": map[string]interface{}{ + "X-Auth": "token", + }, + "http_path_prefix": "/proxy", + }, + expectHTTPTransportSet: true, + }, + } + + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + p := DatabricksProvider() + rd := schema.TestResourceDataRaw(t, p.Schema, tc.config) + + result, diags := ConfigureDatabricksClient(context.Background(), rd, nil) + assert.False(t, diags.HasError(), "ConfigureDatabricksClient should not return errors") + + dc, ok := result.(*common.DatabricksClient) + assert.True(t, ok, "result should be a DatabricksClient") + + if tc.expectHTTPTransportSet { + assert.NotNil(t, dc.Config.HTTPTransport, "HTTPTransport should be set") + } else { + assert.Nil(t, dc.Config.HTTPTransport, "HTTPTransport should not be set") + } + }) + } +} + +func TestHTTPConfig_Struct(t *testing.T) { + // Test that HTTPConfig struct can be created and used + cfg := &client.HTTPConfig{ + Headers: map[string]string{ + "X-Header-1": "value1", + "X-Header-2": "value2", + }, + PathPrefix: "/proxy/path", + } + + assert.Len(t, cfg.Headers, 2) + assert.Equal(t, "value1", cfg.Headers["X-Header-1"]) + assert.Equal(t, "/proxy/path", cfg.PathPrefix) +} diff --git a/internal/providers/sdkv2/tests/completeness.md b/internal/providers/sdkv2/tests/completeness.md new file mode 100755 index 0000000000..d525aba235 --- /dev/null +++ b/internal/providers/sdkv2/tests/completeness.md @@ -0,0 +1,3457 @@ +| Resource | Readme | Docs | Acceptance Test | Acceptance File | Resource File | Unit test | +| --- | --- | --- | --- | --- | --- | --- | +| databricks_access_control_rule_set | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_aibi_dashboard_embedding_access_policy_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_aibi_dashboard_embedding_approved_domains_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_alert | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_artifact_allowlist | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_automatic_cluster_update_workspace_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_aws_assume_role_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_aws_bucket_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_aws_crossaccount_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_aws_s3_mount | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_aws_unity_catalog_assume_role_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_aws_unity_catalog_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_azure_adls_gen1_mount | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_azure_adls_gen2_mount | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_azure_blob_mount | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_budget | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_catalog | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_catalog | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_catalog_workspace_binding | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_catalogs | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_cluster | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_cluster | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_cluster_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_cluster_policy | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_clusters | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_compliance_security_profile_workspace_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_connection | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_credential | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_current_config | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_current_metastore | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_current_user | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_custom_app_integration | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_dashboard | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_dbfs_file | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_dbfs_file | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_dbfs_file_paths | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_default_namespace_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_directory | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_directory | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_disable_legacy_access_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_disable_legacy_dbfs_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_disable_legacy_features_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_enhanced_security_monitoring_workspace_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_entitlements | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_external_location | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_external_location | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_external_locations | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_file | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_git_credential | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_global_init_script | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_grant | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_grants | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_group | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_group | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_group_instance_profile | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_group_member | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_group_role | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_instance_pool | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_instance_pool | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_instance_profile | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_instance_profiles | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_ip_access_list | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_job | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_job | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_jobs | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_lakehouse_monitor | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_metastore | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_metastore | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_metastore_assignment | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_metastore_data_access | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_metastores | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mlflow_experiment | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mlflow_experiment | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mlflow_model | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mlflow_model | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mlflow_models | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mlflow_webhook | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_model_serving | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_model_serving_provisioned_throughput | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mount | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_credentials | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mws_credentials | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_customer_managed_keys | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_log_delivery | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_ncc_binding | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_ncc_private_endpoint_rule | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mws_network_connectivity_config | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_network_connectivity_config | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mws_network_connectivity_configs | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_networks | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_permission_assignment | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_private_access_settings | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_storage_configurations | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_vpc_endpoint | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_mws_workspaces | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_mws_workspaces | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_node_type | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_notebook | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_notebook | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_notebook_paths | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_notification_destination | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_obo_token | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_online_table | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_permission_assignment | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_permissions | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_pipeline | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_pipelines | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_provider | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_query | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_recipient | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_registered_model | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_repo | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_restrict_workspace_admins_setting | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_schema | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_schema | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_schemas | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_secret | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_secret_acl | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_secret_scope | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_service_principal | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_service_principal | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_service_principal_role | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_service_principal_secret | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_service_principals | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_spark_version | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_alert | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_dashboard | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_endpoint | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_global_config | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_permissions | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_query | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_table | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_visualization | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_sql_warehouse | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_sql_warehouses | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_sql_widget | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_storage_credential | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_storage_credential | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_storage_credentials | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_system_schema | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_table | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_table | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_tables | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_token | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_user | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_user | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_user_instance_profile | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_user_role | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_vector_search_endpoint | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_vector_search_index | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_views | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_volume | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_volume | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_workspace_binding | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_workspace_conf | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| databricks_workspace_file | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | +| * databricks_zones | ❌ | ❌ (0%) | ❌ (0%) | ❌ | ❌ | ❌ (0%) | + + +| Resource | Field | Docs | Acceptance Test | Unit Test | +| --- | --- | --- | --- | --- | +| databricks_access_control_rule_set | etag (computed) | ❌ | ❌ | ❌ | +| databricks_access_control_rule_set | grant_rules | ❌ | ❌ | ❌ | +| databricks_access_control_rule_set | grant_rules.principals | ❌ | ❌ | ❌ | +| databricks_access_control_rule_set | grant_rules.role | ❌ | ❌ | ❌ | +| databricks_access_control_rule_set | name | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_access_policy_setting | aibi_dashboard_embedding_access_policy | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_access_policy_setting | aibi_dashboard_embedding_access_policy.access_policy_type | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_access_policy_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_access_policy_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_approved_domains_setting | aibi_dashboard_embedding_approved_domains | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_approved_domains_setting | aibi_dashboard_embedding_approved_domains.approved_domains | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_approved_domains_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_aibi_dashboard_embedding_approved_domains_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_alert | condition | ❌ | ❌ | ❌ | +| databricks_alert | condition.empty_result_state | ❌ | ❌ | ❌ | +| databricks_alert | condition.op | ❌ | ❌ | ❌ | +| databricks_alert | condition.operand | ❌ | ❌ | ❌ | +| databricks_alert | condition.operand.column | ❌ | ❌ | ❌ | +| databricks_alert | condition.operand.column.name | ❌ | ❌ | ❌ | +| databricks_alert | condition.threshold | ❌ | ❌ | ❌ | +| databricks_alert | condition.threshold.value | ❌ | ❌ | ❌ | +| databricks_alert | condition.threshold.value.bool_value | ❌ | ❌ | ❌ | +| databricks_alert | condition.threshold.value.double_value | ❌ | ❌ | ❌ | +| databricks_alert | condition.threshold.value.string_value | ❌ | ❌ | ❌ | +| databricks_alert | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_alert | custom_body | ❌ | ❌ | ❌ | +| databricks_alert | custom_subject | ❌ | ❌ | ❌ | +| databricks_alert | display_name | ❌ | ❌ | ❌ | +| databricks_alert | id (computed) | ❌ | ❌ | ❌ | +| databricks_alert | lifecycle_state (computed) | ❌ | ❌ | ❌ | +| databricks_alert | notify_on_ok | ❌ | ❌ | ❌ | +| databricks_alert | owner_user_name | ❌ | ❌ | ❌ | +| databricks_alert | parent_path | ❌ | ❌ | ❌ | +| databricks_alert | query_id | ❌ | ❌ | ❌ | +| databricks_alert | seconds_to_retrigger | ❌ | ❌ | ❌ | +| databricks_alert | state (computed) | ❌ | ❌ | ❌ | +| databricks_alert | trigger_time (computed) | ❌ | ❌ | ❌ | +| databricks_alert | update_time (computed) | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | artifact_matcher | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | artifact_matcher.artifact | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | artifact_matcher.match_type | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | artifact_type | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_artifact_allowlist | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.can_toggle | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.enabled | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.enablement_details (computed) | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.enablement_details.forced_for_compliance_mode | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.enablement_details.unavailable_for_disabled_entitlement | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.enablement_details.unavailable_for_non_enterprise_tier | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule.day_of_week | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule.frequency | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule.window_start_time | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule.window_start_time.hours | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.maintenance_window.week_day_based_schedule.window_start_time.minutes | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | automatic_cluster_update_workspace.restart_even_if_no_updates_available | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_automatic_cluster_update_workspace_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_aws_assume_role_policy | aws_partition | ❌ | ❌ | ❌ | +| databricks_aws_assume_role_policy | databricks_account_id | ❌ | ❌ | ❌ | +| databricks_aws_assume_role_policy | external_id | ❌ | ❌ | ❌ | +| databricks_aws_assume_role_policy | for_log_delivery | ❌ | ❌ | ❌ | +| databricks_aws_assume_role_policy | json (computed) | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | aws_partition | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | bucket | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | databricks_account_id | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | databricks_e2_account_id | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | full_access_role | ❌ | ❌ | ❌ | +| databricks_aws_bucket_policy | json (computed) | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | aws_account_id | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | aws_partition | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | json (computed) | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | pass_roles | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | policy_type | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | region | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | security_group_id | ❌ | ❌ | ❌ | +| databricks_aws_crossaccount_policy | vpc_id | ❌ | ❌ | ❌ | +| databricks_aws_s3_mount | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_aws_s3_mount | instance_profile | ❌ | ❌ | ❌ | +| databricks_aws_s3_mount | mount_name | ❌ | ❌ | ❌ | +| databricks_aws_s3_mount | s3_bucket_name | ❌ | ❌ | ❌ | +| databricks_aws_s3_mount | source (computed) | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | aws_account_id | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | aws_partition | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | external_id | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | id (computed) | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | json (computed) | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | role_name | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_assume_role_policy | unity_catalog_iam_arn (computed) | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | aws_account_id | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | aws_partition | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | bucket_name | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | json (computed) | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | kms_name | ❌ | ❌ | ❌ | +| databricks_aws_unity_catalog_policy | role_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | client_id | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | client_secret_key | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | client_secret_scope | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | cluster_id | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | directory (computed) | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | mount_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | source (computed) | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | spark_conf_prefix | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | storage_resource_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen1_mount | tenant_id | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | client_id | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | client_secret_key | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | client_secret_scope | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | cluster_id | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | container_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | directory (computed) | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | environment | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | initialize_file_system | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | mount_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | source (computed) | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | storage_account_name | ❌ | ❌ | ❌ | +| databricks_azure_adls_gen2_mount | tenant_id | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | auth_type | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | cluster_id | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | container_name | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | directory | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | mount_name | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | source (computed) | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | storage_account_name | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | token_secret_key | ❌ | ❌ | ❌ | +| databricks_azure_blob_mount | token_secret_scope | ❌ | ❌ | ❌ | +| databricks_budget | account_id (computed) | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.action_configurations | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.action_configurations.action_configuration_id (computed) | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.action_configurations.action_type | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.action_configurations.target | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.alert_configuration_id (computed) | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.quantity_threshold | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.quantity_type | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.time_period | ❌ | ❌ | ❌ | +| databricks_budget | alert_configurations.trigger_type | ❌ | ❌ | ❌ | +| databricks_budget | budget_configuration_id (computed) | ❌ | ❌ | ❌ | +| databricks_budget | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_budget | display_name | ❌ | ❌ | ❌ | +| databricks_budget | filter | ❌ | ❌ | ❌ | +| databricks_budget | filter.tags | ❌ | ❌ | ❌ | +| databricks_budget | filter.tags.key | ❌ | ❌ | ❌ | +| databricks_budget | filter.tags.value | ❌ | ❌ | ❌ | +| databricks_budget | filter.tags.value.operator | ❌ | ❌ | ❌ | +| databricks_budget | filter.tags.value.values | ❌ | ❌ | ❌ | +| databricks_budget | filter.workspace_id | ❌ | ❌ | ❌ | +| databricks_budget | filter.workspace_id.operator | ❌ | ❌ | ❌ | +| databricks_budget | filter.workspace_id.values | ❌ | ❌ | ❌ | +| databricks_budget | update_time (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.browse_only | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.catalog_type | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.comment | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.connection_name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.created_at | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.created_by | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.effective_predictive_optimization_flag | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.effective_predictive_optimization_flag.inherited_from_name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.effective_predictive_optimization_flag.inherited_from_type | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.effective_predictive_optimization_flag.value | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.enable_predictive_optimization | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.full_name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.isolation_mode | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.options | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.owner | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.properties | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.provider_name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.provisioning_info | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.provisioning_info.state | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.securable_type | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.share_name | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.storage_location | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.storage_root | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.updated_at | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_info.updated_by | ❌ | ❌ | ❌ | +| databricks_catalog | id (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | name | ❌ | ❌ | ❌ | +| databricks_catalog | provider_config | ❌ | ❌ | ❌ | +| databricks_catalog | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_catalog | browse_only | ❌ | ❌ | ❌ | +| databricks_catalog | catalog_type (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | comment | ❌ | ❌ | ❌ | +| databricks_catalog | connection_name | ❌ | ❌ | ❌ | +| databricks_catalog | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | effective_predictive_optimization_flag (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | effective_predictive_optimization_flag.inherited_from_name | ❌ | ❌ | ❌ | +| databricks_catalog | effective_predictive_optimization_flag.inherited_from_type | ❌ | ❌ | ❌ | +| databricks_catalog | effective_predictive_optimization_flag.value | ❌ | ❌ | ❌ | +| databricks_catalog | enable_predictive_optimization (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | force_destroy | ❌ | ❌ | ❌ | +| databricks_catalog | full_name (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | isolation_mode (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | name | ❌ | ❌ | ❌ | +| databricks_catalog | options | ❌ | ❌ | ❌ | +| databricks_catalog | owner (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | properties | ❌ | ❌ | ❌ | +| databricks_catalog | provider_name | ❌ | ❌ | ❌ | +| databricks_catalog | provisioning_info | ❌ | ❌ | ❌ | +| databricks_catalog | provisioning_info.state | ❌ | ❌ | ❌ | +| databricks_catalog | securable_type (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | share_name | ❌ | ❌ | ❌ | +| databricks_catalog | storage_location (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | storage_root | ❌ | ❌ | ❌ | +| databricks_catalog | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_catalog | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_catalog_workspace_binding | binding_type | ❌ | ❌ | ❌ | +| databricks_catalog_workspace_binding | catalog_name | ❌ | ❌ | ❌ | +| databricks_catalog_workspace_binding | securable_name (computed) | ❌ | ❌ | ❌ | +| databricks_catalog_workspace_binding | securable_type | ❌ | ❌ | ❌ | +| databricks_catalog_workspace_binding | workspace_id | ❌ | ❌ | ❌ | +| databricks_catalogs | ids (computed) | ❌ | ❌ | ❌ | +| databricks_catalogs | provider_config | ❌ | ❌ | ❌ | +| databricks_catalogs | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | apply_policy_default_values | ❌ | ❌ | ❌ | +| databricks_cluster | autoscale | ❌ | ❌ | ❌ | +| databricks_cluster | autoscale.max_workers | ❌ | ❌ | ❌ | +| databricks_cluster | autoscale.min_workers | ❌ | ❌ | ❌ | +| databricks_cluster | autotermination_minutes | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.ebs_volume_count | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.ebs_volume_iops | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.ebs_volume_size | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.ebs_volume_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_cluster | aws_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.log_analytics_info | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.log_analytics_info.log_analytics_primary_key | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.log_analytics_info.log_analytics_workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.s3.region | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info.local_mount_dir_path | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info.network_filesystem_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info.network_filesystem_info.mount_options | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info.network_filesystem_info.server_address | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_mount_info.remote_mount_dir_path | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_name | ❌ | ❌ | ❌ | +| databricks_cluster | custom_tags | ❌ | ❌ | ❌ | +| databricks_cluster | data_security_mode | ❌ | ❌ | ❌ | +| databricks_cluster | default_tags (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | docker_image | ❌ | ❌ | ❌ | +| databricks_cluster | docker_image.basic_auth | ❌ | ❌ | ❌ | +| databricks_cluster | docker_image.basic_auth.password | ❌ | ❌ | ❌ | +| databricks_cluster | docker_image.basic_auth.username | ❌ | ❌ | ❌ | +| databricks_cluster | docker_image.url | ❌ | ❌ | ❌ | +| databricks_cluster | driver_instance_pool_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | driver_node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | enable_elastic_disk (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | enable_local_disk_encryption (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.boot_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.google_service_account | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.local_ssd_count | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.use_preemptible_executors | ❌ | ❌ | ❌ | +| databricks_cluster | gcp_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | idempotency_token | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.abfss | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.abfss.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.file | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.file.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.gcs | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.gcs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.s3.region | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.workspace | ❌ | ❌ | ❌ | +| databricks_cluster | init_scripts.workspace.destination | ❌ | ❌ | ❌ | +| databricks_cluster | instance_pool_id | ❌ | ❌ | ❌ | +| databricks_cluster | is_pinned | ❌ | ❌ | ❌ | +| databricks_cluster | is_single_node | ❌ | ❌ | ❌ | +| databricks_cluster | kind | ❌ | ❌ | ❌ | +| databricks_cluster | library | ❌ | ❌ | ❌ | +| databricks_cluster | library.cran | ❌ | ❌ | ❌ | +| databricks_cluster | library.cran.package | ❌ | ❌ | ❌ | +| databricks_cluster | library.cran.repo | ❌ | ❌ | ❌ | +| databricks_cluster | library.egg | ❌ | ❌ | ❌ | +| databricks_cluster | library.jar | ❌ | ❌ | ❌ | +| databricks_cluster | library.maven | ❌ | ❌ | ❌ | +| databricks_cluster | library.maven.coordinates | ❌ | ❌ | ❌ | +| databricks_cluster | library.maven.exclusions | ❌ | ❌ | ❌ | +| databricks_cluster | library.maven.repo | ❌ | ❌ | ❌ | +| databricks_cluster | library.pypi | ❌ | ❌ | ❌ | +| databricks_cluster | library.pypi.package | ❌ | ❌ | ❌ | +| databricks_cluster | library.pypi.repo | ❌ | ❌ | ❌ | +| databricks_cluster | library.requirements | ❌ | ❌ | ❌ | +| databricks_cluster | library.whl | ❌ | ❌ | ❌ | +| databricks_cluster | no_wait | ❌ | ❌ | ❌ | +| databricks_cluster | node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | num_workers | ❌ | ❌ | ❌ | +| databricks_cluster | policy_id | ❌ | ❌ | ❌ | +| databricks_cluster | provider_config | ❌ | ❌ | ❌ | +| databricks_cluster | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | remote_disk_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | runtime_engine | ❌ | ❌ | ❌ | +| databricks_cluster | single_user_name | ❌ | ❌ | ❌ | +| databricks_cluster | spark_conf | ❌ | ❌ | ❌ | +| databricks_cluster | spark_env_vars | ❌ | ❌ | ❌ | +| databricks_cluster | spark_version | ❌ | ❌ | ❌ | +| databricks_cluster | ssh_public_keys | ❌ | ❌ | ❌ | +| databricks_cluster | state (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | total_initial_remote_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | url (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | use_ml_runtime | ❌ | ❌ | ❌ | +| databricks_cluster | workload_type | ❌ | ❌ | ❌ | +| databricks_cluster | workload_type.clients | ❌ | ❌ | ❌ | +| databricks_cluster | workload_type.clients.jobs | ❌ | ❌ | ❌ | +| databricks_cluster | workload_type.clients.notebooks | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.autoscale | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.autoscale.max_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.autoscale.min_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.autotermination_minutes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.ebs_volume_count | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.ebs_volume_iops | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.ebs_volume_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.ebs_volume_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.aws_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.log_analytics_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.log_analytics_info.log_analytics_primary_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.log_analytics_info.log_analytics_workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_cores | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.s3.region | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_status | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_status.last_attempted | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_log_status.last_exception | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_memory_mb | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_name | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.cluster_source | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.creator_user_name | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.custom_tags | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.data_security_mode | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.default_tags | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.docker_image | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.docker_image.basic_auth | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.docker_image.basic_auth.password | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.docker_image.basic_auth.username | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.docker_image.url | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.host_private_ip | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.instance_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.node_aws_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.node_aws_attributes.is_spot | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.node_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.private_ip | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.public_dns | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver.start_timestamp | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver_instance_pool_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.driver_node_type_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.enable_elastic_disk | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.enable_local_disk_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.host_private_ip | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.instance_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.node_aws_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.node_aws_attributes.is_spot | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.node_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.private_ip | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.public_dns | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.executors.start_timestamp | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.boot_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.google_service_account | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.local_ssd_count | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.use_preemptible_executors | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.gcp_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.abfss | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.abfss.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.file | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.file.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.gcs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.gcs.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.s3.region | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.workspace | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.init_scripts.workspace.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.instance_pool_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.is_single_node | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.jdbc_port | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.kind | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.last_restarted_time | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.last_state_loss_time | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.node_type_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.num_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.policy_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.remote_disk_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.runtime_engine | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.single_user_name | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spark_conf | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spark_context_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spark_env_vars | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spark_version | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.apply_policy_default_values | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.autoscale | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.autoscale.max_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.autoscale.min_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.ebs_volume_count | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.ebs_volume_iops | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.ebs_volume_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.ebs_volume_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.aws_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.log_analytics_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.spot_bid_max_price.log_analytics_primary_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.azure_attributes.spot_bid_max_price.log_analytics_workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_log_conf.volumes.region | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info.local_mount_dir_path | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info.local_mount_dir_path.mount_options | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info.local_mount_dir_path.server_address | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info.network_filesystem_info | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_mount_info.remote_mount_dir_path | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.cluster_name | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.custom_tags | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.data_security_mode | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.docker_image | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.docker_image.basic_auth | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.docker_image.url | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.docker_image.url.password | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.docker_image.url.username | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.driver_instance_pool_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.driver_node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.enable_elastic_disk (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.enable_local_disk_encryption (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.availability | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.boot_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.google_service_account | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.local_ssd_count | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.use_preemptible_executors | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.gcp_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.idempotency_token | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.abfss | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.dbfs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.file | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.gcs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3 | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.s3.region | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.volumes | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.init_scripts.workspace | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.instance_pool_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.is_single_node | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.kind | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.cran | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.egg | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.coordinates | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.exclusions | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.package | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.package | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.jar.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.maven | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.provider_config | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.pypi | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.requirements | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.library.whl | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.num_workers | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.policy_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.provider_config | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.remote_disk_throughput | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.runtime_engine | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.single_user_name | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.spark_conf | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.spark_env_vars | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.spark_version | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.ssh_public_keys | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.total_initial_remote_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.use_ml_runtime | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.workload_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.workload_type.clients | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.workload_type.clients.jobs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.spec.workload_type.clients.notebooks | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.ssh_public_keys | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.start_time | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.state | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.state_message | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.terminated_time | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.termination_reason | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.termination_reason.code | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.termination_reason.parameters | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.termination_reason.type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.total_initial_remote_disk_size | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.use_ml_runtime | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.workload_type | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.workload_type.clients | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.workload_type.clients.jobs | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_info.workload_type.clients.notebooks | ❌ | ❌ | ❌ | +| databricks_cluster | cluster_name (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster | provider_config | ❌ | ❌ | ❌ | +| databricks_cluster | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster_policy | definition (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | description (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | is_default (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | max_clusters_per_user (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | name (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | policy_family_definition_overrides (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | policy_family_id (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | provider_config | ❌ | ❌ | ❌ | +| databricks_cluster_policy | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster_policy | definition (computed) | ❌ | ❌ | ❌ | +| databricks_cluster_policy | description | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.cran | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.cran.package | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.cran.repo | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.egg | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.jar | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.maven | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.maven.coordinates | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.maven.exclusions | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.maven.repo | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.provider_config | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.pypi | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.pypi.package | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.pypi.repo | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.requirements | ❌ | ❌ | ❌ | +| databricks_cluster_policy | libraries.whl | ❌ | ❌ | ❌ | +| databricks_cluster_policy | max_clusters_per_user | ❌ | ❌ | ❌ | +| databricks_cluster_policy | name | ❌ | ❌ | ❌ | +| databricks_cluster_policy | policy_family_definition_overrides | ❌ | ❌ | ❌ | +| databricks_cluster_policy | policy_family_id | ❌ | ❌ | ❌ | +| databricks_cluster_policy | policy_id (computed) | ❌ | ❌ | ❌ | +| databricks_clusters | cluster_name_contains | ❌ | ❌ | ❌ | +| databricks_clusters | filter_by | ❌ | ❌ | ❌ | +| databricks_clusters | filter_by.cluster_sources | ❌ | ❌ | ❌ | +| databricks_clusters | filter_by.cluster_states | ❌ | ❌ | ❌ | +| databricks_clusters | filter_by.is_pinned | ❌ | ❌ | ❌ | +| databricks_clusters | filter_by.policy_id | ❌ | ❌ | ❌ | +| databricks_clusters | id (computed) | ❌ | ❌ | ❌ | +| databricks_clusters | ids (computed) | ❌ | ❌ | ❌ | +| databricks_clusters | provider_config | ❌ | ❌ | ❌ | +| databricks_clusters | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_compliance_security_profile_workspace_setting | compliance_security_profile_workspace | ❌ | ❌ | ❌ | +| databricks_compliance_security_profile_workspace_setting | compliance_security_profile_workspace.compliance_standards | ❌ | ❌ | ❌ | +| databricks_compliance_security_profile_workspace_setting | compliance_security_profile_workspace.is_enabled | ❌ | ❌ | ❌ | +| databricks_compliance_security_profile_workspace_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_compliance_security_profile_workspace_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_connection | comment | ❌ | ❌ | ❌ | +| databricks_connection | connection_id (computed) | ❌ | ❌ | ❌ | +| databricks_connection | connection_type | ❌ | ❌ | ❌ | +| databricks_connection | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_connection | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_connection | credential_type (computed) | ❌ | ❌ | ❌ | +| databricks_connection | full_name (computed) | ❌ | ❌ | ❌ | +| databricks_connection | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_connection | name | ❌ | ❌ | ❌ | +| databricks_connection | options | ❌ | ❌ | ❌ | +| databricks_connection | owner (computed) | ❌ | ❌ | ❌ | +| databricks_connection | properties | ❌ | ❌ | ❌ | +| databricks_connection | provisioning_info (computed) | ❌ | ❌ | ❌ | +| databricks_connection | provisioning_info.state | ❌ | ❌ | ❌ | +| databricks_connection | read_only (computed) | ❌ | ❌ | ❌ | +| databricks_connection | securable_type (computed) | ❌ | ❌ | ❌ | +| databricks_connection | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_connection | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_connection | url (computed) | ❌ | ❌ | ❌ | +| databricks_credential | aws_iam_role | ❌ | ❌ | ❌ | +| databricks_credential | aws_iam_role.external_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | aws_iam_role.role_arn | ❌ | ❌ | ❌ | +| databricks_credential | aws_iam_role.unity_catalog_iam_arn (computed) | ❌ | ❌ | ❌ | +| databricks_credential | azure_managed_identity | ❌ | ❌ | ❌ | +| databricks_credential | azure_managed_identity.access_connector_id | ❌ | ❌ | ❌ | +| databricks_credential | azure_managed_identity.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | azure_managed_identity.managed_identity_id | ❌ | ❌ | ❌ | +| databricks_credential | azure_service_principal | ❌ | ❌ | ❌ | +| databricks_credential | azure_service_principal.application_id | ❌ | ❌ | ❌ | +| databricks_credential | azure_service_principal.client_secret | ❌ | ❌ | ❌ | +| databricks_credential | azure_service_principal.directory_id | ❌ | ❌ | ❌ | +| databricks_credential | comment | ❌ | ❌ | ❌ | +| databricks_credential | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_credential | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_credential | credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | databricks_gcp_service_account (computed) | ❌ | ❌ | ❌ | +| databricks_credential | databricks_gcp_service_account.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | databricks_gcp_service_account.email (computed) | ❌ | ❌ | ❌ | +| databricks_credential | databricks_gcp_service_account.private_key_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | force_destroy | ❌ | ❌ | ❌ | +| databricks_credential | force_update | ❌ | ❌ | ❌ | +| databricks_credential | full_name (computed) | ❌ | ❌ | ❌ | +| databricks_credential | id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | isolation_mode (computed) | ❌ | ❌ | ❌ | +| databricks_credential | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_credential | name | ❌ | ❌ | ❌ | +| databricks_credential | owner (computed) | ❌ | ❌ | ❌ | +| databricks_credential | purpose | ❌ | ❌ | ❌ | +| databricks_credential | read_only | ❌ | ❌ | ❌ | +| databricks_credential | skip_validation | ❌ | ❌ | ❌ | +| databricks_credential | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_credential | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_credential | used_for_managed_storage (computed) | ❌ | ❌ | ❌ | +| databricks_current_config | account_id (computed) | ❌ | ❌ | ❌ | +| databricks_current_config | auth_type (computed) | ❌ | ❌ | ❌ | +| databricks_current_config | cloud_type (computed) | ❌ | ❌ | ❌ | +| databricks_current_config | host (computed) | ❌ | ❌ | ❌ | +| databricks_current_config | is_account (computed) | ❌ | ❌ | ❌ | +| databricks_current_metastore | id (computed) | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info (computed) | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.cloud | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.created_at | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.created_by | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.default_data_access_config_id | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.delta_sharing_organization_name | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.delta_sharing_recipient_token_lifetime_in_seconds | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.delta_sharing_scope | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.external_access_enabled | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.global_metastore_id | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.name | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.owner | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.privilege_model_version | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.region | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.storage_root | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.storage_root_credential_id | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.storage_root_credential_name | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.updated_at | ❌ | ❌ | ❌ | +| databricks_current_metastore | metastore_info.updated_by | ❌ | ❌ | ❌ | +| databricks_current_metastore | provider_config | ❌ | ❌ | ❌ | +| databricks_current_metastore | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_current_user | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | alphanumeric (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | external_id (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | home (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | repos (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | user_name (computed) | ❌ | ❌ | ❌ | +| databricks_current_user | workspace_url (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | client_id (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | client_secret (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | confidential | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | creator_username (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | integration_id (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | name | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | redirect_urls | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | scopes | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | token_access_policy | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | token_access_policy.absolute_session_lifetime_in_minutes (computed) | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | token_access_policy.access_token_ttl_in_minutes | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | token_access_policy.enable_single_use_refresh_tokens | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | token_access_policy.refresh_token_ttl_in_minutes | ❌ | ❌ | ❌ | +| databricks_custom_app_integration | user_authorized_scopes | ❌ | ❌ | ❌ | +| databricks_dashboard | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | dashboard_change_detected | ❌ | ❌ | ❌ | +| databricks_dashboard | dashboard_id (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | display_name | ❌ | ❌ | ❌ | +| databricks_dashboard | embed_credentials | ❌ | ❌ | ❌ | +| databricks_dashboard | etag (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | file_path | ❌ | ❌ | ❌ | +| databricks_dashboard | lifecycle_state (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | md5 (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | parent_path | ❌ | ❌ | ❌ | +| databricks_dashboard | path (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | serialized_dashboard | ❌ | ❌ | ❌ | +| databricks_dashboard | update_time (computed) | ❌ | ❌ | ❌ | +| databricks_dashboard | warehouse_id | ❌ | ❌ | ❌ | +| databricks_dbfs_file | content_base64 | ❌ | ❌ | ❌ | +| databricks_dbfs_file | dbfs_path (computed) | ❌ | ❌ | ❌ | +| databricks_dbfs_file | file_size (computed) | ❌ | ❌ | ❌ | +| databricks_dbfs_file | md5 | ❌ | ❌ | ❌ | +| databricks_dbfs_file | path | ❌ | ❌ | ❌ | +| databricks_dbfs_file | source | ❌ | ❌ | ❌ | +| databricks_dbfs_file | content (computed) | ❌ | ❌ | ❌ | +| databricks_dbfs_file | file_size (computed) | ❌ | ❌ | ❌ | +| databricks_dbfs_file | limit_file_size | ❌ | ❌ | ❌ | +| databricks_dbfs_file | path | ❌ | ❌ | ❌ | +| databricks_dbfs_file_paths | path | ❌ | ❌ | ❌ | +| databricks_dbfs_file_paths | path_list (computed) | ❌ | ❌ | ❌ | +| databricks_dbfs_file_paths | path_list.file_size | ❌ | ❌ | ❌ | +| databricks_dbfs_file_paths | path_list.path | ❌ | ❌ | ❌ | +| databricks_dbfs_file_paths | recursive | ❌ | ❌ | ❌ | +| databricks_default_namespace_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_default_namespace_setting | namespace | ❌ | ❌ | ❌ | +| databricks_default_namespace_setting | namespace.value | ❌ | ❌ | ❌ | +| databricks_default_namespace_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_directory | id (computed) | ❌ | ❌ | ❌ | +| databricks_directory | object_id (computed) | ❌ | ❌ | ❌ | +| databricks_directory | path | ❌ | ❌ | ❌ | +| databricks_directory | provider_config | ❌ | ❌ | ❌ | +| databricks_directory | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_directory | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_directory | delete_recursive | ❌ | ❌ | ❌ | +| databricks_directory | object_id (computed) | ❌ | ❌ | ❌ | +| databricks_directory | path | ❌ | ❌ | ❌ | +| databricks_directory | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_access_setting | disable_legacy_access | ❌ | ❌ | ❌ | +| databricks_disable_legacy_access_setting | disable_legacy_access.value | ❌ | ❌ | ❌ | +| databricks_disable_legacy_access_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_access_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_dbfs_setting | disable_legacy_dbfs | ❌ | ❌ | ❌ | +| databricks_disable_legacy_dbfs_setting | disable_legacy_dbfs.value | ❌ | ❌ | ❌ | +| databricks_disable_legacy_dbfs_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_dbfs_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_features_setting | disable_legacy_features | ❌ | ❌ | ❌ | +| databricks_disable_legacy_features_setting | disable_legacy_features.value | ❌ | ❌ | ❌ | +| databricks_disable_legacy_features_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_disable_legacy_features_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_enhanced_security_monitoring_workspace_setting | enhanced_security_monitoring_workspace | ❌ | ❌ | ❌ | +| databricks_enhanced_security_monitoring_workspace_setting | enhanced_security_monitoring_workspace.is_enabled | ❌ | ❌ | ❌ | +| databricks_enhanced_security_monitoring_workspace_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_enhanced_security_monitoring_workspace_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_entitlements | allow_cluster_create | ❌ | ❌ | ❌ | +| databricks_entitlements | allow_instance_pool_create | ❌ | ❌ | ❌ | +| databricks_entitlements | databricks_sql_access | ❌ | ❌ | ❌ | +| databricks_entitlements | group_id | ❌ | ❌ | ❌ | +| databricks_entitlements | service_principal_id | ❌ | ❌ | ❌ | +| databricks_entitlements | user_id | ❌ | ❌ | ❌ | +| databricks_entitlements | workspace_access | ❌ | ❌ | ❌ | +| databricks_entitlements | workspace_consume | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.browse_only | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.comment | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.created_at | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.created_by | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.credential_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.credential_name | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.enable_file_events | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.encryption_details | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.encryption_details.sse_encryption_details | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.encryption_details.sse_encryption_details.algorithm | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.encryption_details.sse_encryption_details.aws_kms_key_arn | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.fallback | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_aqs | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_aqs.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_aqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_aqs.resource_group | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_aqs.subscription_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_pubsub | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_pubsub.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_pubsub.subscription_name | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_sqs | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_sqs.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.managed_sqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_aqs | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_aqs.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_aqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_aqs.resource_group | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_aqs.subscription_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_pubsub | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_pubsub.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_pubsub.subscription_name | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_sqs | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_sqs.managed_resource_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.file_event_queue.provided_sqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.isolation_mode | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.name | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.owner | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.read_only | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.updated_at | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.updated_by | ❌ | ❌ | ❌ | +| databricks_external_location | external_location_info.url | ❌ | ❌ | ❌ | +| databricks_external_location | id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | name | ❌ | ❌ | ❌ | +| databricks_external_location | provider_config | ❌ | ❌ | ❌ | +| databricks_external_location | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_external_location | browse_only (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | comment | ❌ | ❌ | ❌ | +| databricks_external_location | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | credential_name | ❌ | ❌ | ❌ | +| databricks_external_location | enable_file_events | ❌ | ❌ | ❌ | +| databricks_external_location | encryption_details | ❌ | ❌ | ❌ | +| databricks_external_location | encryption_details.sse_encryption_details | ❌ | ❌ | ❌ | +| databricks_external_location | encryption_details.sse_encryption_details.algorithm | ❌ | ❌ | ❌ | +| databricks_external_location | encryption_details.sse_encryption_details.aws_kms_key_arn | ❌ | ❌ | ❌ | +| databricks_external_location | fallback | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_aqs | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_aqs.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_aqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_aqs.resource_group | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_aqs.subscription_id | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_pubsub | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_pubsub.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_pubsub.subscription_name | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_sqs | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_sqs.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.managed_sqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_aqs | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_aqs.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_aqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_aqs.resource_group | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_aqs.subscription_id | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_pubsub | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_pubsub.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_pubsub.subscription_name | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_sqs | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_sqs.managed_resource_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | file_event_queue.provided_sqs.queue_url | ❌ | ❌ | ❌ | +| databricks_external_location | force_destroy | ❌ | ❌ | ❌ | +| databricks_external_location | force_update | ❌ | ❌ | ❌ | +| databricks_external_location | isolation_mode (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | name | ❌ | ❌ | ❌ | +| databricks_external_location | owner (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | read_only | ❌ | ❌ | ❌ | +| databricks_external_location | skip_validation | ❌ | ❌ | ❌ | +| databricks_external_location | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_external_location | url | ❌ | ❌ | ❌ | +| databricks_external_locations | names (computed) | ❌ | ❌ | ❌ | +| databricks_external_locations | provider_config | ❌ | ❌ | ❌ | +| databricks_external_locations | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_file | content_base64 | ❌ | ❌ | ❌ | +| databricks_file | file_size (computed) | ❌ | ❌ | ❌ | +| databricks_file | md5 | ❌ | ❌ | ❌ | +| databricks_file | modification_time (computed) | ❌ | ❌ | ❌ | +| databricks_file | path | ❌ | ❌ | ❌ | +| databricks_file | remote_file_modified | ❌ | ❌ | ❌ | +| databricks_file | source | ❌ | ❌ | ❌ | +| databricks_git_credential | force | ❌ | ❌ | ❌ | +| databricks_git_credential | git_email | ❌ | ❌ | ❌ | +| databricks_git_credential | git_provider | ❌ | ❌ | ❌ | +| databricks_git_credential | git_username | ❌ | ❌ | ❌ | +| databricks_git_credential | is_default_for_provider | ❌ | ❌ | ❌ | +| databricks_git_credential | name | ❌ | ❌ | ❌ | +| databricks_git_credential | personal_access_token | ❌ | ❌ | ❌ | +| databricks_global_init_script | content_base64 | ❌ | ❌ | ❌ | +| databricks_global_init_script | enabled | ❌ | ❌ | ❌ | +| databricks_global_init_script | md5 | ❌ | ❌ | ❌ | +| databricks_global_init_script | name | ❌ | ❌ | ❌ | +| databricks_global_init_script | position (computed) | ❌ | ❌ | ❌ | +| databricks_global_init_script | source | ❌ | ❌ | ❌ | +| databricks_grant | catalog | ❌ | ❌ | ❌ | +| databricks_grant | credential | ❌ | ❌ | ❌ | +| databricks_grant | external_location | ❌ | ❌ | ❌ | +| databricks_grant | foreign_connection | ❌ | ❌ | ❌ | +| databricks_grant | function | ❌ | ❌ | ❌ | +| databricks_grant | metastore | ❌ | ❌ | ❌ | +| databricks_grant | model | ❌ | ❌ | ❌ | +| databricks_grant | pipeline | ❌ | ❌ | ❌ | +| databricks_grant | principal | ❌ | ❌ | ❌ | +| databricks_grant | privileges | ❌ | ❌ | ❌ | +| databricks_grant | recipient | ❌ | ❌ | ❌ | +| databricks_grant | schema | ❌ | ❌ | ❌ | +| databricks_grant | share | ❌ | ❌ | ❌ | +| databricks_grant | storage_credential | ❌ | ❌ | ❌ | +| databricks_grant | table | ❌ | ❌ | ❌ | +| databricks_grant | volume | ❌ | ❌ | ❌ | +| databricks_grants | catalog | ❌ | ❌ | ❌ | +| databricks_grants | credential | ❌ | ❌ | ❌ | +| databricks_grants | external_location | ❌ | ❌ | ❌ | +| databricks_grants | foreign_connection | ❌ | ❌ | ❌ | +| databricks_grants | function | ❌ | ❌ | ❌ | +| databricks_grants | grant | ❌ | ❌ | ❌ | +| databricks_grants | grant.principal | ❌ | ❌ | ❌ | +| databricks_grants | grant.privileges | ❌ | ❌ | ❌ | +| databricks_grants | metastore | ❌ | ❌ | ❌ | +| databricks_grants | model | ❌ | ❌ | ❌ | +| databricks_grants | pipeline | ❌ | ❌ | ❌ | +| databricks_grants | recipient | ❌ | ❌ | ❌ | +| databricks_grants | schema | ❌ | ❌ | ❌ | +| databricks_grants | share | ❌ | ❌ | ❌ | +| databricks_grants | storage_credential | ❌ | ❌ | ❌ | +| databricks_grants | table | ❌ | ❌ | ❌ | +| databricks_grants | volume | ❌ | ❌ | ❌ | +| databricks_group | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_group | allow_cluster_create | ❌ | ❌ | ❌ | +| databricks_group | allow_instance_pool_create | ❌ | ❌ | ❌ | +| databricks_group | child_groups (computed) | ❌ | ❌ | ❌ | +| databricks_group | databricks_sql_access | ❌ | ❌ | ❌ | +| databricks_group | display_name | ❌ | ❌ | ❌ | +| databricks_group | external_id (computed) | ❌ | ❌ | ❌ | +| databricks_group | groups (computed) | ❌ | ❌ | ❌ | +| databricks_group | instance_profiles (computed) | ❌ | ❌ | ❌ | +| databricks_group | members (computed) | ❌ | ❌ | ❌ | +| databricks_group | recursive | ❌ | ❌ | ❌ | +| databricks_group | service_principals (computed) | ❌ | ❌ | ❌ | +| databricks_group | users (computed) | ❌ | ❌ | ❌ | +| databricks_group | workspace_access | ❌ | ❌ | ❌ | +| databricks_group | workspace_consume | ❌ | ❌ | ❌ | +| databricks_group | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_group | allow_cluster_create | ❌ | ❌ | ❌ | +| databricks_group | allow_instance_pool_create | ❌ | ❌ | ❌ | +| databricks_group | databricks_sql_access | ❌ | ❌ | ❌ | +| databricks_group | display_name | ❌ | ❌ | ❌ | +| databricks_group | external_id | ❌ | ❌ | ❌ | +| databricks_group | force | ❌ | ❌ | ❌ | +| databricks_group | url (computed) | ❌ | ❌ | ❌ | +| databricks_group | workspace_access | ❌ | ❌ | ❌ | +| databricks_group | workspace_consume | ❌ | ❌ | ❌ | +| databricks_group_instance_profile | group_id | ❌ | ❌ | ❌ | +| databricks_group_instance_profile | instance_profile_id | ❌ | ❌ | ❌ | +| databricks_group_member | group_id | ❌ | ❌ | ❌ | +| databricks_group_member | member_id | ❌ | ❌ | ❌ | +| databricks_group_role | group_id | ❌ | ❌ | ❌ | +| databricks_group_role | role | ❌ | ❌ | ❌ | +| databricks_instance_pool | name | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.aws_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.aws_attributes.zone_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.azure_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.custom_tags | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.default_tags (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec.disk_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec.disk_size | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec.disk_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec.disk_type.azure_disk_volume_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.disk_spec.disk_type.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.enable_elastic_disk | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.gcp_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.gcp_attributes.gcp_availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.gcp_attributes.local_ssd_count (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.gcp_attributes.zone_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.idle_instance_autotermination_minutes | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_on_demand_option | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_on_demand_option.allocation_strategy | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_on_demand_option.instance_pools_to_use_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_spot_option | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_spot_option.allocation_strategy | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.fleet_spot_option.instance_pools_to_use_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.launch_template_override | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.launch_template_override.availability_zone | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_fleet_attributes.launch_template_override.instance_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.instance_pool_name | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.max_capacity | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.min_idle_instances | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.node_type_id | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_docker_image | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_docker_image.basic_auth | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_docker_image.basic_auth.password | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_docker_image.basic_auth.username | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_docker_image.url | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.preloaded_spark_versions | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.state | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.stats | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.stats.idle_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.stats.pending_idle_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.stats.pending_used_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | pool_info.stats.used_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | aws_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_instance_pool | aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_instance_pool | aws_attributes.zone_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | azure_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_instance_pool | custom_tags | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec.disk_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec.disk_size | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec.disk_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec.disk_type.azure_disk_volume_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | disk_spec.disk_type.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | enable_elastic_disk | ❌ | ❌ | ❌ | +| databricks_instance_pool | gcp_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | gcp_attributes.gcp_availability | ❌ | ❌ | ❌ | +| databricks_instance_pool | gcp_attributes.local_ssd_count (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | gcp_attributes.zone_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | idle_instance_autotermination_minutes | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_on_demand_option | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_on_demand_option.allocation_strategy | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_on_demand_option.instance_pools_to_use_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_spot_option | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_spot_option.allocation_strategy | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.fleet_spot_option.instance_pools_to_use_count | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.launch_template_override | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.launch_template_override.availability_zone | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_fleet_attributes.launch_template_override.instance_type | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_id (computed) | ❌ | ❌ | ❌ | +| databricks_instance_pool | instance_pool_name | ❌ | ❌ | ❌ | +| databricks_instance_pool | max_capacity | ❌ | ❌ | ❌ | +| databricks_instance_pool | min_idle_instances | ❌ | ❌ | ❌ | +| databricks_instance_pool | node_type_id | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_docker_image | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_docker_image.basic_auth | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_docker_image.basic_auth.password | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_docker_image.basic_auth.username | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_docker_image.url | ❌ | ❌ | ❌ | +| databricks_instance_pool | preloaded_spark_versions | ❌ | ❌ | ❌ | +| databricks_instance_profile | iam_role_arn | ❌ | ❌ | ❌ | +| databricks_instance_profile | instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_instance_profile | is_meta_instance_profile | ❌ | ❌ | ❌ | +| databricks_instance_profile | skip_validation (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | instance_profiles (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | instance_profiles.arn (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | instance_profiles.is_meta (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | instance_profiles.name (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | instance_profiles.role_arn (computed) | ❌ | ❌ | ❌ | +| databricks_instance_profiles | provider_config | ❌ | ❌ | ❌ | +| databricks_instance_profiles | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_ip_access_list | enabled | ❌ | ❌ | ❌ | +| databricks_ip_access_list | ip_addresses | ❌ | ❌ | ❌ | +| databricks_ip_access_list | label | ❌ | ❌ | ❌ | +| databricks_ip_access_list | list_type | ❌ | ❌ | ❌ | +| databricks_job | id (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_id (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_name (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_settings (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_settings.created_time | ❌ | ❌ | ❌ | +| databricks_job | job_settings.creator_user_name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.job_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.run_as_user_name (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.continuous | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.continuous.pause_status | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.catalog | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.commands | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.profiles_directory | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.project_directory | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.schema | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.source | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.dbt_task.warehouse_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.deployment | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.deployment.kind | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.deployment.metadata_file_path | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.description | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.edit_mode | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.no_alert_for_skipped_runs | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.on_duration_warning_threshold_exceeded | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.on_failure | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.on_start | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.on_streaming_backlog_exceeded | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.email_notifications.on_success | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.environment_key | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.spec | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.spec.client | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.spec.dependencies | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.spec.environment_version | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.environment.spec.java_dependencies | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.existing_cluster_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.format (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.branch | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.commit | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.commit.dirty_state | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.commit.import_from_git_branch | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.commit.job_config_path | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.job_source | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.provider | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.tag | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.git_source.url | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.health | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.health.rules | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.health.rules.metric | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.health.rules.op | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.health.rules.value | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.job_cluster | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.job_cluster.job_cluster_key | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.cran | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.egg | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.coordinates | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.exclusions | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.package | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.package | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.repo | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.jar.workspace_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.maven | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.provider_config | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.pypi | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.requirements | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.library.whl | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.max_concurrent_runs | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.max_retries | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.min_retry_interval_millis | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notebook_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notebook_task.base_parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notebook_task.notebook_path | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notebook_task.source | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notebook_task.warehouse_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notification_settings | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notification_settings.no_alert_for_canceled_runs | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.notification_settings.no_alert_for_skipped_runs | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.parameter | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.parameter.default | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.parameter.name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.pipeline_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.pipeline_task.full_refresh | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.pipeline_task.pipeline_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.python_wheel_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.python_wheel_task.entry_point | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.python_wheel_task.named_parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.python_wheel_task.package_name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.python_wheel_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.queue | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.queue.enabled | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.retry_on_timeout | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_as (computed) | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_as.service_principal_name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_as.user_name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_job_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_job_task.job_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.run_job_task.job_parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.schedule | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.schedule.pause_status | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.schedule.quartz_cron_expression | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.schedule.timezone_id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_jar_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_jar_task.jar_uri | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_jar_task.main_class_name | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_jar_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_python_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_python_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_python_task.python_file | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_python_task.source | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_submit_task | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.spark_submit_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.tags | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.timeout_seconds | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.condition | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.interval | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.min_time_between_triggers_seconds | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.min_time_between_triggers_seconds | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.table_names | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.unit | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.url | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.wait_after_last_change_seconds | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.file_arrival.wait_after_last_change_seconds | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.pause_status | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.periodic | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.trigger.table_update | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_duration_warning_threshold_exceeded | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_failure | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_start | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_streaming_backlog_exceeded | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_job | job_settings.settings.webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_job | name (computed) | ❌ | ❌ | ❌ | +| databricks_job | always_running | ❌ | ❌ | ❌ | +| databricks_job | budget_policy_id | ❌ | ❌ | ❌ | +| databricks_job | continuous | ❌ | ❌ | ❌ | +| databricks_job | continuous.pause_status | ❌ | ❌ | ❌ | +| databricks_job | continuous.task_retry_mode | ❌ | ❌ | ❌ | +| databricks_job | control_run_state | ❌ | ❌ | ❌ | +| databricks_job | dbt_task | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.catalog | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.commands | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.profiles_directory | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.project_directory | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.schema | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.source | ❌ | ❌ | ❌ | +| databricks_job | dbt_task.warehouse_id | ❌ | ❌ | ❌ | +| databricks_job | deployment | ❌ | ❌ | ❌ | +| databricks_job | deployment.kind | ❌ | ❌ | ❌ | +| databricks_job | deployment.metadata_file_path | ❌ | ❌ | ❌ | +| databricks_job | description | ❌ | ❌ | ❌ | +| databricks_job | edit_mode | ❌ | ❌ | ❌ | +| databricks_job | email_notifications | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.no_alert_for_skipped_runs | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.on_duration_warning_threshold_exceeded | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.on_failure | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.on_start | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.on_streaming_backlog_exceeded | ❌ | ❌ | ❌ | +| databricks_job | email_notifications.on_success | ❌ | ❌ | ❌ | +| databricks_job | environment | ❌ | ❌ | ❌ | +| databricks_job | environment.environment_key | ❌ | ❌ | ❌ | +| databricks_job | environment.spec | ❌ | ❌ | ❌ | +| databricks_job | environment.spec.client | ❌ | ❌ | ❌ | +| databricks_job | environment.spec.dependencies | ❌ | ❌ | ❌ | +| databricks_job | environment.spec.environment_version | ❌ | ❌ | ❌ | +| databricks_job | environment.spec.java_dependencies | ❌ | ❌ | ❌ | +| databricks_job | existing_cluster_id | ❌ | ❌ | ❌ | +| databricks_job | format (computed) | ❌ | ❌ | ❌ | +| databricks_job | git_source | ❌ | ❌ | ❌ | +| databricks_job | git_source.branch | ❌ | ❌ | ❌ | +| databricks_job | git_source.commit | ❌ | ❌ | ❌ | +| databricks_job | git_source.git_snapshot | ❌ | ❌ | ❌ | +| databricks_job | git_source.git_snapshot.used_commit | ❌ | ❌ | ❌ | +| databricks_job | git_source.job_source | ❌ | ❌ | ❌ | +| databricks_job | git_source.job_source.dirty_state | ❌ | ❌ | ❌ | +| databricks_job | git_source.job_source.import_from_git_branch | ❌ | ❌ | ❌ | +| databricks_job | git_source.job_source.job_config_path | ❌ | ❌ | ❌ | +| databricks_job | git_source.provider | ❌ | ❌ | ❌ | +| databricks_job | git_source.tag | ❌ | ❌ | ❌ | +| databricks_job | git_source.url | ❌ | ❌ | ❌ | +| databricks_job | health | ❌ | ❌ | ❌ | +| databricks_job | health.rules | ❌ | ❌ | ❌ | +| databricks_job | health.rules.metric | ❌ | ❌ | ❌ | +| databricks_job | health.rules.op | ❌ | ❌ | ❌ | +| databricks_job | health.rules.value | ❌ | ❌ | ❌ | +| databricks_job | job_cluster | ❌ | ❌ | ❌ | +| databricks_job | job_cluster.job_cluster_key | ❌ | ❌ | ❌ | +| databricks_job | library | ❌ | ❌ | ❌ | +| databricks_job | library.cran | ❌ | ❌ | ❌ | +| databricks_job | library.cran.package | ❌ | ❌ | ❌ | +| databricks_job | library.cran.repo | ❌ | ❌ | ❌ | +| databricks_job | library.egg | ❌ | ❌ | ❌ | +| databricks_job | library.jar | ❌ | ❌ | ❌ | +| databricks_job | library.maven | ❌ | ❌ | ❌ | +| databricks_job | library.maven.coordinates | ❌ | ❌ | ❌ | +| databricks_job | library.maven.exclusions | ❌ | ❌ | ❌ | +| databricks_job | library.maven.repo | ❌ | ❌ | ❌ | +| databricks_job | library.provider_config | ❌ | ❌ | ❌ | +| databricks_job | library.provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_job | library.pypi | ❌ | ❌ | ❌ | +| databricks_job | library.pypi.package | ❌ | ❌ | ❌ | +| databricks_job | library.pypi.repo | ❌ | ❌ | ❌ | +| databricks_job | library.requirements | ❌ | ❌ | ❌ | +| databricks_job | library.whl | ❌ | ❌ | ❌ | +| databricks_job | max_concurrent_runs | ❌ | ❌ | ❌ | +| databricks_job | max_retries | ❌ | ❌ | ❌ | +| databricks_job | min_retry_interval_millis | ❌ | ❌ | ❌ | +| databricks_job | name | ❌ | ❌ | ❌ | +| databricks_job | notebook_task | ❌ | ❌ | ❌ | +| databricks_job | notebook_task.base_parameters | ❌ | ❌ | ❌ | +| databricks_job | notebook_task.notebook_path | ❌ | ❌ | ❌ | +| databricks_job | notebook_task.source | ❌ | ❌ | ❌ | +| databricks_job | notebook_task.warehouse_id | ❌ | ❌ | ❌ | +| databricks_job | notification_settings | ❌ | ❌ | ❌ | +| databricks_job | notification_settings.no_alert_for_canceled_runs | ❌ | ❌ | ❌ | +| databricks_job | notification_settings.no_alert_for_skipped_runs | ❌ | ❌ | ❌ | +| databricks_job | parameter | ❌ | ❌ | ❌ | +| databricks_job | parameter.default | ❌ | ❌ | ❌ | +| databricks_job | parameter.name | ❌ | ❌ | ❌ | +| databricks_job | performance_target | ❌ | ❌ | ❌ | +| databricks_job | pipeline_task | ❌ | ❌ | ❌ | +| databricks_job | pipeline_task.full_refresh | ❌ | ❌ | ❌ | +| databricks_job | pipeline_task.pipeline_id | ❌ | ❌ | ❌ | +| databricks_job | provider_config | ❌ | ❌ | ❌ | +| databricks_job | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_job | python_wheel_task | ❌ | ❌ | ❌ | +| databricks_job | python_wheel_task.entry_point | ❌ | ❌ | ❌ | +| databricks_job | python_wheel_task.named_parameters | ❌ | ❌ | ❌ | +| databricks_job | python_wheel_task.package_name | ❌ | ❌ | ❌ | +| databricks_job | python_wheel_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | queue | ❌ | ❌ | ❌ | +| databricks_job | queue.enabled | ❌ | ❌ | ❌ | +| databricks_job | retry_on_timeout | ❌ | ❌ | ❌ | +| databricks_job | run_as (computed) | ❌ | ❌ | ❌ | +| databricks_job | run_as.service_principal_name | ❌ | ❌ | ❌ | +| databricks_job | run_as.user_name | ❌ | ❌ | ❌ | +| databricks_job | run_job_task | ❌ | ❌ | ❌ | +| databricks_job | run_job_task.job_id | ❌ | ❌ | ❌ | +| databricks_job | run_job_task.job_parameters | ❌ | ❌ | ❌ | +| databricks_job | schedule | ❌ | ❌ | ❌ | +| databricks_job | schedule.pause_status | ❌ | ❌ | ❌ | +| databricks_job | schedule.quartz_cron_expression | ❌ | ❌ | ❌ | +| databricks_job | schedule.timezone_id | ❌ | ❌ | ❌ | +| databricks_job | spark_jar_task | ❌ | ❌ | ❌ | +| databricks_job | spark_jar_task.jar_uri | ❌ | ❌ | ❌ | +| databricks_job | spark_jar_task.main_class_name | ❌ | ❌ | ❌ | +| databricks_job | spark_jar_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | spark_python_task | ❌ | ❌ | ❌ | +| databricks_job | spark_python_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | spark_python_task.python_file | ❌ | ❌ | ❌ | +| databricks_job | spark_python_task.source | ❌ | ❌ | ❌ | +| databricks_job | spark_submit_task | ❌ | ❌ | ❌ | +| databricks_job | spark_submit_task.parameters | ❌ | ❌ | ❌ | +| databricks_job | tags | ❌ | ❌ | ❌ | +| databricks_job | timeout_seconds | ❌ | ❌ | ❌ | +| databricks_job | trigger | ❌ | ❌ | ❌ | +| databricks_job | trigger.file_arrival | ❌ | ❌ | ❌ | +| databricks_job | trigger.file_arrival.min_time_between_triggers_seconds | ❌ | ❌ | ❌ | +| databricks_job | trigger.file_arrival.url | ❌ | ❌ | ❌ | +| databricks_job | trigger.file_arrival.wait_after_last_change_seconds | ❌ | ❌ | ❌ | +| databricks_job | trigger.pause_status | ❌ | ❌ | ❌ | +| databricks_job | trigger.periodic | ❌ | ❌ | ❌ | +| databricks_job | trigger.periodic.interval | ❌ | ❌ | ❌ | +| databricks_job | trigger.periodic.unit | ❌ | ❌ | ❌ | +| databricks_job | trigger.table_update | ❌ | ❌ | ❌ | +| databricks_job | trigger.table_update.condition | ❌ | ❌ | ❌ | +| databricks_job | trigger.table_update.min_time_between_triggers_seconds | ❌ | ❌ | ❌ | +| databricks_job | trigger.table_update.table_names | ❌ | ❌ | ❌ | +| databricks_job | trigger.table_update.wait_after_last_change_seconds | ❌ | ❌ | ❌ | +| databricks_job | url (computed) | ❌ | ❌ | ❌ | +| databricks_job | usage_policy_id | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_duration_warning_threshold_exceeded | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_duration_warning_threshold_exceeded.id | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_failure | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_failure.id | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_start | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_start.id | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_streaming_backlog_exceeded | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_streaming_backlog_exceeded.id | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_success | ❌ | ❌ | ❌ | +| databricks_job | webhook_notifications.on_success.id | ❌ | ❌ | ❌ | +| databricks_jobs | ids (computed) | ❌ | ❌ | ❌ | +| databricks_jobs | job_name_contains | ❌ | ❌ | ❌ | +| databricks_jobs | key | ❌ | ❌ | ❌ | +| databricks_jobs | provider_config | ❌ | ❌ | ❌ | +| databricks_jobs | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | assets_dir | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | baseline_table_name | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics.definition | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics.input_columns | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics.name | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics.output_data_type | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | custom_metrics.type | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | dashboard_id (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | data_classification_config | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | data_classification_config.enabled | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | drift_metrics_table_name (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.granularities | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.label_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.model_id_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.prediction_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.prediction_proba_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.problem_type | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | inference_log.timestamp_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | latest_monitor_failure_msg | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | monitor_version (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | notifications | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | notifications.on_failure | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | notifications.on_failure.email_addresses | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | notifications.on_new_classification_tag_detected | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | notifications.on_new_classification_tag_detected.email_addresses | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | output_schema_name | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | profile_metrics_table_name (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | schedule | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | schedule.pause_status (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | schedule.quartz_cron_expression | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | schedule.timezone_id | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | skip_builtin_dashboard | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | slicing_exprs | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | snapshot | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | status (computed) | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | table_name | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | time_series | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | time_series.granularities | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | time_series.timestamp_col | ❌ | ❌ | ❌ | +| databricks_lakehouse_monitor | warehouse_id | ❌ | ❌ | ❌ | +| databricks_metastore | id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.cloud | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.created_at | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.created_by | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.default_data_access_config_id | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.delta_sharing_organization_name | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.delta_sharing_recipient_token_lifetime_in_seconds | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.delta_sharing_scope | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.external_access_enabled | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.global_metastore_id | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.name | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.owner | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.privilege_model_version | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.region | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.storage_root | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.storage_root_credential_id | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.storage_root_credential_name | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.updated_at | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_info.updated_by | ❌ | ❌ | ❌ | +| databricks_metastore | name (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | region (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | cloud (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | default_data_access_config_id | ❌ | ❌ | ❌ | +| databricks_metastore | delta_sharing_organization_name | ❌ | ❌ | ❌ | +| databricks_metastore | delta_sharing_recipient_token_lifetime_in_seconds | ❌ | ❌ | ❌ | +| databricks_metastore | delta_sharing_scope | ❌ | ❌ | ❌ | +| databricks_metastore | force_destroy | ❌ | ❌ | ❌ | +| databricks_metastore | global_metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | name | ❌ | ❌ | ❌ | +| databricks_metastore | owner (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | region (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | storage_root | ❌ | ❌ | ❌ | +| databricks_metastore | storage_root_credential_id | ❌ | ❌ | ❌ | +| databricks_metastore | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_metastore | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_assignment | default_catalog_name (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_assignment | metastore_id | ❌ | ❌ | ❌ | +| databricks_metastore_assignment | workspace_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | aws_iam_role | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | aws_iam_role.external_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | aws_iam_role.role_arn | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | aws_iam_role.unity_catalog_iam_arn (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_managed_identity | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_managed_identity.access_connector_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_managed_identity.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_managed_identity.managed_identity_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_service_principal | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_service_principal.application_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_service_principal.client_secret | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | azure_service_principal.directory_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | cloudflare_api_token | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | cloudflare_api_token.access_key_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | cloudflare_api_token.account_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | cloudflare_api_token.secret_access_key | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | comment | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | databricks_gcp_service_account (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | databricks_gcp_service_account.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | databricks_gcp_service_account.email (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | force_destroy | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | force_update | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | gcp_service_account_key | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | gcp_service_account_key.email | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | gcp_service_account_key.private_key | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | gcp_service_account_key.private_key_id | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | is_default | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | isolation_mode (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | name | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | owner (computed) | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | read_only | ❌ | ❌ | ❌ | +| databricks_metastore_data_access | skip_validation | ❌ | ❌ | ❌ | +| databricks_metastores | ids (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | artifact_location | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | description | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | experiment_id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | last_update_time (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | lifecycle_stage (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | name | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags.key | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags.value | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | artifact_location (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | experiment_id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | last_update_time (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | lifecycle_stage (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | name (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | provider_config | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags.key | ❌ | ❌ | ❌ | +| databricks_mlflow_experiment | tags.value | ❌ | ❌ | ❌ | +| databricks_mlflow_model | description | ❌ | ❌ | ❌ | +| databricks_mlflow_model | name | ❌ | ❌ | ❌ | +| databricks_mlflow_model | registered_model_id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags.key | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags.value | ❌ | ❌ | ❌ | +| databricks_mlflow_model | description (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.creation_timestamp | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.current_stage | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.description | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.last_updated_timestamp | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.name | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.run_id | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.run_link | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.source | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.status | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.status_message | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.tags | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.tags.key | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.tags.value | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.user_id | ❌ | ❌ | ❌ | +| databricks_mlflow_model | latest_versions.version | ❌ | ❌ | ❌ | +| databricks_mlflow_model | name | ❌ | ❌ | ❌ | +| databricks_mlflow_model | permission_level (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | provider_config | ❌ | ❌ | ❌ | +| databricks_mlflow_model | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags.key | ❌ | ❌ | ❌ | +| databricks_mlflow_model | tags.value | ❌ | ❌ | ❌ | +| databricks_mlflow_model | user_id (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_models | names (computed) | ❌ | ❌ | ❌ | +| databricks_mlflow_models | provider_config | ❌ | ❌ | ❌ | +| databricks_mlflow_models | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | description | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | events | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | http_url_spec | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | http_url_spec.authorization | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | http_url_spec.enable_ssl_verification | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | http_url_spec.secret | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | http_url_spec.url | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | job_spec | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | job_spec.access_token | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | job_spec.job_id | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | job_spec.workspace_url | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | model_name | ❌ | ❌ | ❌ | +| databricks_mlflow_webhook | status | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.fallback_config | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.fallback_config.enabled | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input.invalid_keywords | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input.invalid_keywords.behavior | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input.pii | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input.safety | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.input.valid_topics | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output.invalid_keywords | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output.pii | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output.pii.behavior | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output.safety | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.guardrails.output.valid_topics | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.inference_table_config | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.inference_table_config.catalog_name | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.inference_table_config.enabled | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.inference_table_config.schema_name | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.inference_table_config.table_name_prefix | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits.calls | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits.key | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits.principal | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits.renewal_period | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.rate_limits.tokens | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.usage_tracking_config | ❌ | ❌ | ❌ | +| databricks_model_serving | ai_gateway.usage_tracking_config.enabled | ❌ | ❌ | ❌ | +| databricks_model_serving | budget_policy_id | ❌ | ❌ | ❌ | +| databricks_model_serving | config (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.auto_capture_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.auto_capture_config.catalog_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.auto_capture_config.enabled (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.auto_capture_config.schema_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.auto_capture_config.table_name_prefix (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.entity_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.entity_version | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.environment_vars | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.ai21labs_api_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.ai21labs_api_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.anthropic_api_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.anthropic_api_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.api_key_auth | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.api_key_auth.key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.api_key_auth.value | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.api_key_auth.value_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.aws_access_key_id | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.aws_access_key_id_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.aws_region | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.aws_secret_access_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.aws_secret_access_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.bearer_token_auth | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.bearer_token_auth.token | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.bearer_token_auth.token_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.bedrock_provider | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.cohere_api_base | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.cohere_api_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.cohere_api_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.custom_provider_url | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.databricks_api_token | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.databricks_api_token_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.databricks_workspace_url | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.microsoft_entra_client_id | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.microsoft_entra_client_secret | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.microsoft_entra_client_secret_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.microsoft_entra_tenant_id | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_api_base | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_api_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_api_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_api_type | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_api_version | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_deployment_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.openai_organization | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.palm_api_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.palm_api_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.private_key | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.private_key_plaintext | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.project_id | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.ai21labs_config.region | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.amazon_bedrock_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.anthropic_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.cohere_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.custom_provider_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.databricks_model_serving_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.google_cloud_vertex_ai_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.openai_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.palm_config | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.external_model.provider | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.max_provisioned_concurrency | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.max_provisioned_throughput | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.min_provisioned_concurrency | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.min_provisioned_throughput | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.name (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.provisioned_model_units | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.scale_to_zero_enabled | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.workload_size | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_entities.workload_type (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.environment_vars | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.max_provisioned_concurrency | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.max_provisioned_throughput | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.min_provisioned_concurrency | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.min_provisioned_throughput | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.model_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.model_version | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.name (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.provisioned_model_units | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.scale_to_zero_enabled | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.workload_size | ❌ | ❌ | ❌ | +| databricks_model_serving | config.served_models.workload_type (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.traffic_config (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | config.traffic_config.routes | ❌ | ❌ | ❌ | +| databricks_model_serving | config.traffic_config.routes.served_entity_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.traffic_config.routes.served_model_name | ❌ | ❌ | ❌ | +| databricks_model_serving | config.traffic_config.routes.traffic_percentage | ❌ | ❌ | ❌ | +| databricks_model_serving | description | ❌ | ❌ | ❌ | +| databricks_model_serving | email_notifications | ❌ | ❌ | ❌ | +| databricks_model_serving | email_notifications.on_update_failure | ❌ | ❌ | ❌ | +| databricks_model_serving | email_notifications.on_update_success | ❌ | ❌ | ❌ | +| databricks_model_serving | endpoint_url (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | name | ❌ | ❌ | ❌ | +| databricks_model_serving | rate_limits | ❌ | ❌ | ❌ | +| databricks_model_serving | rate_limits.calls | ❌ | ❌ | ❌ | +| databricks_model_serving | rate_limits.key | ❌ | ❌ | ❌ | +| databricks_model_serving | rate_limits.renewal_period | ❌ | ❌ | ❌ | +| databricks_model_serving | route_optimized | ❌ | ❌ | ❌ | +| databricks_model_serving | serving_endpoint_id (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving | tags | ❌ | ❌ | ❌ | +| databricks_model_serving | tags.key | ❌ | ❌ | ❌ | +| databricks_model_serving | tags.value | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.fallback_config | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.fallback_config.enabled | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input.invalid_keywords | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input.pii (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input.safety | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input.valid_topics | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.input.valid_topics.behavior (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output.invalid_keywords | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output.pii | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output.safety | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output.valid_topics | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.guardrails.output.valid_topics.behavior | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.inference_table_config | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.inference_table_config.catalog_name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.inference_table_config.enabled | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.inference_table_config.schema_name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.inference_table_config.table_name_prefix | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits.calls | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits.key | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits.principal | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits.renewal_period | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.rate_limits.tokens | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.usage_tracking_config (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | ai_gateway.usage_tracking_config.enabled (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | budget_policy_id | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.served_entities | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.served_entities.entity_name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.served_entities.entity_version | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.served_entities.name (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.served_entities.provisioned_model_units | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.traffic_config (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.traffic_config.routes | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.traffic_config.routes.served_entity_name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.traffic_config.routes.served_model_name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | config.traffic_config.routes.traffic_percentage | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | email_notifications | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | email_notifications.on_update_failure | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | email_notifications.on_update_success | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | name | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | serving_endpoint_id (computed) | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | tags | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | tags.key | ❌ | ❌ | ❌ | +| databricks_model_serving_provisioned_throughput | tags.value | ❌ | ❌ | ❌ | +| databricks_mount | abfs | ❌ | ❌ | ❌ | +| databricks_mount | abfs.client_id | ❌ | ❌ | ❌ | +| databricks_mount | abfs.client_secret_key | ❌ | ❌ | ❌ | +| databricks_mount | abfs.client_secret_scope | ❌ | ❌ | ❌ | +| databricks_mount | abfs.container_name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | abfs.directory | ❌ | ❌ | ❌ | +| databricks_mount | abfs.initialize_file_system | ❌ | ❌ | ❌ | +| databricks_mount | abfs.storage_account_name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | abfs.tenant_id (computed) | ❌ | ❌ | ❌ | +| databricks_mount | adl | ❌ | ❌ | ❌ | +| databricks_mount | adl.client_id | ❌ | ❌ | ❌ | +| databricks_mount | adl.client_secret_key | ❌ | ❌ | ❌ | +| databricks_mount | adl.client_secret_scope | ❌ | ❌ | ❌ | +| databricks_mount | adl.directory | ❌ | ❌ | ❌ | +| databricks_mount | adl.spark_conf_prefix | ❌ | ❌ | ❌ | +| databricks_mount | adl.storage_resource_name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | adl.tenant_id (computed) | ❌ | ❌ | ❌ | +| databricks_mount | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_mount | encryption_type | ❌ | ❌ | ❌ | +| databricks_mount | extra_configs | ❌ | ❌ | ❌ | +| databricks_mount | gs | ❌ | ❌ | ❌ | +| databricks_mount | gs.bucket_name | ❌ | ❌ | ❌ | +| databricks_mount | gs.service_account | ❌ | ❌ | ❌ | +| databricks_mount | name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | resource_id | ❌ | ❌ | ❌ | +| databricks_mount | s3 | ❌ | ❌ | ❌ | +| databricks_mount | s3.bucket_name | ❌ | ❌ | ❌ | +| databricks_mount | s3.instance_profile | ❌ | ❌ | ❌ | +| databricks_mount | source (computed) | ❌ | ❌ | ❌ | +| databricks_mount | uri | ❌ | ❌ | ❌ | +| databricks_mount | wasb | ❌ | ❌ | ❌ | +| databricks_mount | wasb.auth_type | ❌ | ❌ | ❌ | +| databricks_mount | wasb.container_name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | wasb.directory | ❌ | ❌ | ❌ | +| databricks_mount | wasb.storage_account_name (computed) | ❌ | ❌ | ❌ | +| databricks_mount | wasb.token_secret_key | ❌ | ❌ | ❌ | +| databricks_mount | wasb.token_secret_scope | ❌ | ❌ | ❌ | +| databricks_mws_credentials | account_id | ❌ | ❌ | ❌ | +| databricks_mws_credentials | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_credentials | credentials_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_credentials | credentials_name | ❌ | ❌ | ❌ | +| databricks_mws_credentials | external_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_credentials | role_arn | ❌ | ❌ | ❌ | +| databricks_mws_credentials | ids (computed) | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | account_id | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | aws_key_info | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | aws_key_info.key_alias | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | aws_key_info.key_arn | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | aws_key_info.key_region (computed) | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | customer_managed_key_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | gcp_key_info | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | gcp_key_info.kms_key_id | ❌ | ❌ | ❌ | +| databricks_mws_customer_managed_keys | use_cases | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | account_id | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | config_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | config_name | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | credentials_id | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | delivery_path_prefix | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | delivery_start_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | log_type | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | output_format | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | status (computed) | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | storage_configuration_id | ❌ | ❌ | ❌ | +| databricks_mws_log_delivery | workspace_ids_filter | ❌ | ❌ | ❌ | +| databricks_mws_ncc_binding | network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_binding | workspace_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | account_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | connection_state (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | deactivated | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | deactivated_at | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | domain_names | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | enabled (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | endpoint_name (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | endpoint_service | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | group_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | resource_id | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | resource_names | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | rule_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | updated_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_ncc_private_endpoint_rule | vpc_endpoint_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | account_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.aws_stable_ip_rule | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.aws_stable_ip_rule.cidr_blocks | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.subnets | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.target_region | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.target_services | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.account_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.connection_state | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.creation_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.deactivated | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.deactivated_at | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.domain_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.enabled | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.endpoint_service | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.resource_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.rule_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.updated_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.vpc_endpoint_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.connection_state | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.creation_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.deactivated | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.deactivated_at | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.domain_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.endpoint_name | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.group_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.resource_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.rule_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.updated_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | name | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | network_connectivity_config_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | region (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | updated_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | account_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.aws_stable_ip_rule | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.aws_stable_ip_rule.cidr_blocks | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.subnets | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.target_region | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.default_rules.azure_service_endpoint_rule.target_services | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.account_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.connection_state | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.creation_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.deactivated | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.deactivated_at | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.domain_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.enabled | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.endpoint_service | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.resource_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.rule_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.updated_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.aws_private_endpoint_rules.vpc_endpoint_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.connection_state | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.creation_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.deactivated | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.deactivated_at | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.domain_names | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.endpoint_name | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.group_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.network_connectivity_config_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.resource_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.rule_id | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | egress_config.target_rules.azure_private_endpoint_rules.updated_time | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | name | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | network_connectivity_config_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | region | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_config | updated_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_configs | names (computed) | ❌ | ❌ | ❌ | +| databricks_mws_network_connectivity_configs | region | ❌ | ❌ | ❌ | +| databricks_mws_networks | account_id | ❌ | ❌ | ❌ | +| databricks_mws_networks | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_networks | error_messages (computed) | ❌ | ❌ | ❌ | +| databricks_mws_networks | error_messages.error_message | ❌ | ❌ | ❌ | +| databricks_mws_networks | error_messages.error_type | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.network_project_id | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.pod_ip_range_name | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.service_ip_range_name | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.subnet_id | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.subnet_region | ❌ | ❌ | ❌ | +| databricks_mws_networks | gcp_network_info.vpc_id | ❌ | ❌ | ❌ | +| databricks_mws_networks | network_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_networks | network_name | ❌ | ❌ | ❌ | +| databricks_mws_networks | security_group_ids | ❌ | ❌ | ❌ | +| databricks_mws_networks | subnet_ids | ❌ | ❌ | ❌ | +| databricks_mws_networks | vpc_endpoints (computed) | ❌ | ❌ | ❌ | +| databricks_mws_networks | vpc_endpoints.dataplane_relay | ❌ | ❌ | ❌ | +| databricks_mws_networks | vpc_endpoints.rest_api | ❌ | ❌ | ❌ | +| databricks_mws_networks | vpc_id | ❌ | ❌ | ❌ | +| databricks_mws_networks | vpc_status (computed) | ❌ | ❌ | ❌ | +| databricks_mws_networks | workspace_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_permission_assignment | permissions | ❌ | ❌ | ❌ | +| databricks_mws_permission_assignment | principal_id | ❌ | ❌ | ❌ | +| databricks_mws_permission_assignment | workspace_id | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | account_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | allowed_vpc_endpoint_ids | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | private_access_level | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | private_access_settings_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | private_access_settings_name | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | public_access_enabled | ❌ | ❌ | ❌ | +| databricks_mws_private_access_settings | region | ❌ | ❌ | ❌ | +| databricks_mws_storage_configurations | account_id | ❌ | ❌ | ❌ | +| databricks_mws_storage_configurations | bucket_name | ❌ | ❌ | ❌ | +| databricks_mws_storage_configurations | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_storage_configurations | storage_configuration_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_storage_configurations | storage_configuration_name | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | account_id | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | aws_account_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | aws_endpoint_service_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | aws_vpc_endpoint_id | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info.endpoint_region | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info.project_id | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info.psc_connection_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info.psc_endpoint_name | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | gcp_vpc_endpoint_info.service_attachment_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | region | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | state (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | use_case (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | vpc_endpoint_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_vpc_endpoint | vpc_endpoint_name | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | ids (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | account_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | aws_region | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | cloud (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | cloud_resource_container | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | cloud_resource_container.gcp | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | cloud_resource_container.gcp.project_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | compute_mode | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | credentials_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | custom_tags | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | customer_managed_key_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | deployment_name | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | effective_compute_mode (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | expected_workspace_status | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | external_customer_info | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | external_customer_info.authoritative_user_email | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | external_customer_info.authoritative_user_full_name | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | external_customer_info.customer_name | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gcp_managed_network_config | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gcp_managed_network_config.gke_cluster_pod_ip_range | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gcp_managed_network_config.gke_cluster_service_ip_range | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gcp_managed_network_config.subnet_cidr | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gcp_workspace_sa (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gke_config | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gke_config.connectivity_type | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | gke_config.master_ip_range | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | is_no_public_ip_enabled | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | location | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | managed_services_customer_managed_key_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | network_connectivity_config_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | network_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | pricing_tier (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | private_access_settings_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | storage_configuration_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | storage_customer_managed_key_id | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | token | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | token.comment | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | token.lifetime_seconds | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | token.token_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | token.token_value (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | workspace_id (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | workspace_name | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | workspace_status (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | workspace_status_message (computed) | ❌ | ❌ | ❌ | +| databricks_mws_workspaces | workspace_url (computed) | ❌ | ❌ | ❌ | +| databricks_node_type | arm | ❌ | ❌ | ❌ | +| databricks_node_type | category | ❌ | ❌ | ❌ | +| databricks_node_type | fleet | ❌ | ❌ | ❌ | +| databricks_node_type | gb_per_core | ❌ | ❌ | ❌ | +| databricks_node_type | graviton | ❌ | ❌ | ❌ | +| databricks_node_type | id (computed) | ❌ | ❌ | ❌ | +| databricks_node_type | is_io_cache_enabled | ❌ | ❌ | ❌ | +| databricks_node_type | local_disk | ❌ | ❌ | ❌ | +| databricks_node_type | local_disk_min_size | ❌ | ❌ | ❌ | +| databricks_node_type | min_cores | ❌ | ❌ | ❌ | +| databricks_node_type | min_gpus | ❌ | ❌ | ❌ | +| databricks_node_type | min_memory_gb | ❌ | ❌ | ❌ | +| databricks_node_type | photon_driver_capable | ❌ | ❌ | ❌ | +| databricks_node_type | photon_worker_capable | ❌ | ❌ | ❌ | +| databricks_node_type | provider_config | ❌ | ❌ | ❌ | +| databricks_node_type | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_node_type | support_port_forwarding | ❌ | ❌ | ❌ | +| databricks_notebook | content_base64 | ❌ | ❌ | ❌ | +| databricks_notebook | format (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | language (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | md5 | ❌ | ❌ | ❌ | +| databricks_notebook | object_id (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | object_type (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | path | ❌ | ❌ | ❌ | +| databricks_notebook | provider_config | ❌ | ❌ | ❌ | +| databricks_notebook | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_notebook | source | ❌ | ❌ | ❌ | +| databricks_notebook | url (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | content (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | format | ❌ | ❌ | ❌ | +| databricks_notebook | language (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | object_id (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | object_type (computed) | ❌ | ❌ | ❌ | +| databricks_notebook | path | ❌ | ❌ | ❌ | +| databricks_notebook | provider_config | ❌ | ❌ | ❌ | +| databricks_notebook | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_notebook | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_notebook_paths | notebook_path_list (computed) | ❌ | ❌ | ❌ | +| databricks_notebook_paths | notebook_path_list.language | ❌ | ❌ | ❌ | +| databricks_notebook_paths | notebook_path_list.path | ❌ | ❌ | ❌ | +| databricks_notebook_paths | path | ❌ | ❌ | ❌ | +| databricks_notebook_paths | recursive | ❌ | ❌ | ❌ | +| databricks_notification_destination | config | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.email | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.email.addresses | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.password | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.password_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.url | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.url_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.username | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.generic_webhook.username_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.app_id | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.app_id_set | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.auth_secret | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.auth_secret_set | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.channel_url | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.channel_url_set | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.tenant_id | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.tenant_id_set | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.url | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.microsoft_teams.url_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.pagerduty | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.pagerduty.integration_key | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.pagerduty.integration_key_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.channel_id | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.channel_id_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.oauth_token | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.oauth_token_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.url | ❌ | ❌ | ❌ | +| databricks_notification_destination | config.slack.url_set (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | destination_type (computed) | ❌ | ❌ | ❌ | +| databricks_notification_destination | display_name | ❌ | ❌ | ❌ | +| databricks_notification_destination | id (computed) | ❌ | ❌ | ❌ | +| databricks_obo_token | application_id | ❌ | ❌ | ❌ | +| databricks_obo_token | comment | ❌ | ❌ | ❌ | +| databricks_obo_token | lifetime_seconds | ❌ | ❌ | ❌ | +| databricks_obo_token | token_value (computed) | ❌ | ❌ | ❌ | +| databricks_online_table | name | ❌ | ❌ | ❌ | +| databricks_online_table | spec | ❌ | ❌ | ❌ | +| databricks_online_table | spec.perform_full_copy | ❌ | ❌ | ❌ | +| databricks_online_table | spec.pipeline_id (computed) | ❌ | ❌ | ❌ | +| databricks_online_table | spec.primary_key_columns | ❌ | ❌ | ❌ | +| databricks_online_table | spec.run_continuously | ❌ | ❌ | ❌ | +| databricks_online_table | spec.run_triggered | ❌ | ❌ | ❌ | +| databricks_online_table | spec.source_table_full_name | ❌ | ❌ | ❌ | +| databricks_online_table | spec.timeseries_key | ❌ | ❌ | ❌ | +| databricks_online_table | status (computed) | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress.estimated_completion_time_seconds | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress.latest_version_currently_processing | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress.sync_progress_completion | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress.synced_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.initial_pipeline_sync_progress.total_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.last_processed_commit_version | ❌ | ❌ | ❌ | +| databricks_online_table | status.continuous_update_status.timestamp | ❌ | ❌ | ❌ | +| databricks_online_table | status.detailed_state | ❌ | ❌ | ❌ | +| databricks_online_table | status.failed_status | ❌ | ❌ | ❌ | +| databricks_online_table | status.failed_status.last_processed_commit_version | ❌ | ❌ | ❌ | +| databricks_online_table | status.failed_status.timestamp | ❌ | ❌ | ❌ | +| databricks_online_table | status.message | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress.estimated_completion_time_seconds | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress.latest_version_currently_processing | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress.sync_progress_completion | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress.synced_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | status.provisioning_status.initial_pipeline_sync_progress.total_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.last_processed_commit_version | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.timestamp | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress.estimated_completion_time_seconds | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress.latest_version_currently_processing | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress.sync_progress_completion | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress.synced_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | status.triggered_update_status.triggered_update_progress.total_row_count | ❌ | ❌ | ❌ | +| databricks_online_table | table_serving_url (computed) | ❌ | ❌ | ❌ | +| databricks_online_table | unity_catalog_provisioning_state (computed) | ❌ | ❌ | ❌ | +| databricks_permission_assignment | display_name (computed) | ❌ | ❌ | ❌ | +| databricks_permission_assignment | group_name (computed) | ❌ | ❌ | ❌ | +| databricks_permission_assignment | permissions | ❌ | ❌ | ❌ | +| databricks_permission_assignment | principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_permission_assignment | provider_config | ❌ | ❌ | ❌ | +| databricks_permission_assignment | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_permission_assignment | service_principal_name (computed) | ❌ | ❌ | ❌ | +| databricks_permission_assignment | user_name (computed) | ❌ | ❌ | ❌ | +| databricks_permissions | access_control | ❌ | ❌ | ❌ | +| databricks_permissions | access_control.group_name | ❌ | ❌ | ❌ | +| databricks_permissions | access_control.permission_level | ❌ | ❌ | ❌ | +| databricks_permissions | access_control.service_principal_name | ❌ | ❌ | ❌ | +| databricks_permissions | access_control.user_name | ❌ | ❌ | ❌ | +| databricks_permissions | alert_v2_id | ❌ | ❌ | ❌ | +| databricks_permissions | app_name | ❌ | ❌ | ❌ | +| databricks_permissions | authorization | ❌ | ❌ | ❌ | +| databricks_permissions | cluster_id | ❌ | ❌ | ❌ | +| databricks_permissions | cluster_policy_id | ❌ | ❌ | ❌ | +| databricks_permissions | dashboard_id | ❌ | ❌ | ❌ | +| databricks_permissions | database_instance_name | ❌ | ❌ | ❌ | +| databricks_permissions | directory_id | ❌ | ❌ | ❌ | +| databricks_permissions | directory_path | ❌ | ❌ | ❌ | +| databricks_permissions | experiment_id | ❌ | ❌ | ❌ | +| databricks_permissions | instance_pool_id | ❌ | ❌ | ❌ | +| databricks_permissions | job_id | ❌ | ❌ | ❌ | +| databricks_permissions | notebook_id | ❌ | ❌ | ❌ | +| databricks_permissions | notebook_path | ❌ | ❌ | ❌ | +| databricks_permissions | object_type (computed) | ❌ | ❌ | ❌ | +| databricks_permissions | pipeline_id | ❌ | ❌ | ❌ | +| databricks_permissions | registered_model_id | ❌ | ❌ | ❌ | +| databricks_permissions | repo_id | ❌ | ❌ | ❌ | +| databricks_permissions | repo_path | ❌ | ❌ | ❌ | +| databricks_permissions | serving_endpoint_id | ❌ | ❌ | ❌ | +| databricks_permissions | sql_alert_id | ❌ | ❌ | ❌ | +| databricks_permissions | sql_dashboard_id | ❌ | ❌ | ❌ | +| databricks_permissions | sql_endpoint_id | ❌ | ❌ | ❌ | +| databricks_permissions | sql_query_id | ❌ | ❌ | ❌ | +| databricks_permissions | vector_search_endpoint_id | ❌ | ❌ | ❌ | +| databricks_permissions | workspace_file_id | ❌ | ❌ | ❌ | +| databricks_permissions | workspace_file_path | ❌ | ❌ | ❌ | +| databricks_pipeline | allow_duplicate_names | ❌ | ❌ | ❌ | +| databricks_pipeline | budget_policy_id | ❌ | ❌ | ❌ | +| databricks_pipeline | catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | cause (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | channel | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.apply_policy_default_values | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.autoscale | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.autoscale.max_workers | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.autoscale.min_workers | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.autoscale.mode | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.availability | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.ebs_volume_count | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.ebs_volume_iops | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.ebs_volume_size | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.ebs_volume_throughput | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.ebs_volume_type | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.spot_bid_price_percent | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.aws_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.availability | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.log_analytics_info | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.log_analytics_info.log_analytics_primary_key | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.log_analytics_info.log_analytics_workspace_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.azure_attributes.spot_bid_max_price | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.dbfs | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3 | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.s3.region | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.volumes | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.cluster_log_conf.volumes.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.custom_tags | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.driver_instance_pool_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.driver_node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.enable_local_disk_encryption (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes.availability | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes.first_on_demand | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes.google_service_account | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes.local_ssd_count | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.gcp_attributes.zone_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.abfss | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.abfss.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.dbfs | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.dbfs.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.file | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.file.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.gcs | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.gcs.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3 | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.canned_acl | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.enable_encryption | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.encryption_type | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.endpoint | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.kms_key | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.s3.region | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.volumes | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.volumes.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.workspace | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.init_scripts.workspace.destination | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.instance_pool_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.label | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.node_type_id (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.num_workers | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.policy_id | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.spark_conf | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.spark_env_vars | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster.ssh_public_keys | ❌ | ❌ | ❌ | +| databricks_pipeline | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | configuration | ❌ | ❌ | ❌ | +| databricks_pipeline | continuous | ❌ | ❌ | ❌ | +| databricks_pipeline | creator_user_name (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | deployment | ❌ | ❌ | ❌ | +| databricks_pipeline | deployment.kind | ❌ | ❌ | ❌ | +| databricks_pipeline | deployment.metadata_file_path | ❌ | ❌ | ❌ | +| databricks_pipeline | development | ❌ | ❌ | ❌ | +| databricks_pipeline | edition | ❌ | ❌ | ❌ | +| databricks_pipeline | environment | ❌ | ❌ | ❌ | +| databricks_pipeline | environment.dependencies | ❌ | ❌ | ❌ | +| databricks_pipeline | event_log | ❌ | ❌ | ❌ | +| databricks_pipeline | event_log.catalog (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | event_log.name | ❌ | ❌ | ❌ | +| databricks_pipeline | event_log.schema (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | expected_last_modified | ❌ | ❌ | ❌ | +| databricks_pipeline | filters | ❌ | ❌ | ❌ | +| databricks_pipeline | filters.exclude | ❌ | ❌ | ❌ | +| databricks_pipeline | filters.include | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition.connection_id | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition.connection_name | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition.gateway_storage_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition.gateway_storage_name | ❌ | ❌ | ❌ | +| databricks_pipeline | gateway_definition.gateway_storage_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | health (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | id (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.connection_name | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.ingestion_gateway_id | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.netsuite_jar_path | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.destination_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.destination_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.destination_table | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.source_url | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.exclude_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.include_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.primary_keys | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.query_based_connector_config | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.query_based_connector_config.cursor_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.query_based_connector_config.deletion_condition | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.query_based_connector_config.hard_deletion_sync_min_interval_in_seconds | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.salesforce_include_formula_fields | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.scd_type | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.sequence_by | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters.incremental | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters.parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters.parameters.key | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters.parameters.value | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.report.table_configuration.workday_report_parameters.report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.destination_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.destination_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.source_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.source_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.exclude_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.include_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.primary_keys | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.query_based_connector_config | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.query_based_connector_config.cursor_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.query_based_connector_config.deletion_condition | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.query_based_connector_config.hard_deletion_sync_min_interval_in_seconds | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.salesforce_include_formula_fields | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.scd_type | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.sequence_by | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters.incremental | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters.parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters.report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters.report_parameters.key | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.schema.table_configuration.workday_report_parameters.report_parameters.value | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.destination_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.destination_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.destination_table | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.exclude_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.include_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.primary_keys | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.query_based_connector_config | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.query_based_connector_config.cursor_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.query_based_connector_config.deletion_condition | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.query_based_connector_config.hard_deletion_sync_min_interval_in_seconds | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.salesforce_include_formula_fields | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.scd_type | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.sequence_by | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters.incremental | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters.parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters.parameters.key | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters.parameters.value | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_catalog.workday_report_parameters.report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_schema | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.source_table | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.objects.table.table_configuration | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog.postgres | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog.source_catalog | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog.source_catalog.slot_config | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog.source_catalog.slot_config.publication_name | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_configurations.catalog.source_catalog.slot_config.slot_name | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.source_type | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.exclude_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.include_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.primary_keys | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.query_based_connector_config | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.query_based_connector_config.cursor_columns | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.query_based_connector_config.deletion_condition | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.query_based_connector_config.hard_deletion_sync_min_interval_in_seconds | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.salesforce_include_formula_fields | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.scd_type | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.sequence_by | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters.incremental | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters.incremental.key | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters.incremental.value | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters.parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | ingestion_definition.table_configuration.workday_report_parameters.report_parameters | ❌ | ❌ | ❌ | +| databricks_pipeline | last_modified (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | latest_updates (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | latest_updates.creation_time | ❌ | ❌ | ❌ | +| databricks_pipeline | latest_updates.state | ❌ | ❌ | ❌ | +| databricks_pipeline | latest_updates.update_id | ❌ | ❌ | ❌ | +| databricks_pipeline | library | ❌ | ❌ | ❌ | +| databricks_pipeline | library.file | ❌ | ❌ | ❌ | +| databricks_pipeline | library.file.path | ❌ | ❌ | ❌ | +| databricks_pipeline | library.glob | ❌ | ❌ | ❌ | +| databricks_pipeline | library.glob.include | ❌ | ❌ | ❌ | +| databricks_pipeline | library.jar | ❌ | ❌ | ❌ | +| databricks_pipeline | library.maven | ❌ | ❌ | ❌ | +| databricks_pipeline | library.maven.coordinates | ❌ | ❌ | ❌ | +| databricks_pipeline | library.maven.exclusions | ❌ | ❌ | ❌ | +| databricks_pipeline | library.maven.repo | ❌ | ❌ | ❌ | +| databricks_pipeline | library.notebook | ❌ | ❌ | ❌ | +| databricks_pipeline | library.notebook.path | ❌ | ❌ | ❌ | +| databricks_pipeline | library.whl | ❌ | ❌ | ❌ | +| databricks_pipeline | name | ❌ | ❌ | ❌ | +| databricks_pipeline | notification | ❌ | ❌ | ❌ | +| databricks_pipeline | notification.alerts | ❌ | ❌ | ❌ | +| databricks_pipeline | notification.email_recipients | ❌ | ❌ | ❌ | +| databricks_pipeline | photon | ❌ | ❌ | ❌ | +| databricks_pipeline | restart_window | ❌ | ❌ | ❌ | +| databricks_pipeline | restart_window.days_of_week | ❌ | ❌ | ❌ | +| databricks_pipeline | restart_window.start_hour | ❌ | ❌ | ❌ | +| databricks_pipeline | restart_window.time_zone_id | ❌ | ❌ | ❌ | +| databricks_pipeline | root_path | ❌ | ❌ | ❌ | +| databricks_pipeline | run_as | ❌ | ❌ | ❌ | +| databricks_pipeline | run_as.service_principal_name | ❌ | ❌ | ❌ | +| databricks_pipeline | run_as.user_name | ❌ | ❌ | ❌ | +| databricks_pipeline | run_as_user_name (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | schema | ❌ | ❌ | ❌ | +| databricks_pipeline | serverless | ❌ | ❌ | ❌ | +| databricks_pipeline | state (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | storage | ❌ | ❌ | ❌ | +| databricks_pipeline | tags | ❌ | ❌ | ❌ | +| databricks_pipeline | target | ❌ | ❌ | ❌ | +| databricks_pipeline | trigger | ❌ | ❌ | ❌ | +| databricks_pipeline | trigger.cron | ❌ | ❌ | ❌ | +| databricks_pipeline | trigger.cron.quartz_cron_schedule | ❌ | ❌ | ❌ | +| databricks_pipeline | trigger.cron.timezone_id | ❌ | ❌ | ❌ | +| databricks_pipeline | trigger.manual | ❌ | ❌ | ❌ | +| databricks_pipeline | url (computed) | ❌ | ❌ | ❌ | +| databricks_pipeline | usage_policy_id | ❌ | ❌ | ❌ | +| databricks_pipelines | ids (computed) | ❌ | ❌ | ❌ | +| databricks_pipelines | pipeline_name | ❌ | ❌ | ❌ | +| databricks_pipelines | provider_config | ❌ | ❌ | ❌ | +| databricks_pipelines | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_provider | authentication_type | ❌ | ❌ | ❌ | +| databricks_provider | comment | ❌ | ❌ | ❌ | +| databricks_provider | name | ❌ | ❌ | ❌ | +| databricks_provider | recipient_profile_str | ❌ | ❌ | ❌ | +| databricks_query | apply_auto_limit | ❌ | ❌ | ❌ | +| databricks_query | catalog | ❌ | ❌ | ❌ | +| databricks_query | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_query | description | ❌ | ❌ | ❌ | +| databricks_query | display_name | ❌ | ❌ | ❌ | +| databricks_query | id (computed) | ❌ | ❌ | ❌ | +| databricks_query | last_modifier_user_name (computed) | ❌ | ❌ | ❌ | +| databricks_query | lifecycle_state (computed) | ❌ | ❌ | ❌ | +| databricks_query | owner_user_name | ❌ | ❌ | ❌ | +| databricks_query | parameter | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.date_range_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.date_range_value.end | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.date_range_value.start | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.dynamic_date_range_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.precision | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_range_value.start_day_of_week | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_value.date_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_value.dynamic_date_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.date_value.precision | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.enum_options | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.multi_values_options | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.multi_values_options.prefix | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.multi_values_options.separator | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.multi_values_options.suffix | ❌ | ❌ | ❌ | +| databricks_query | parameter.enum_value.values | ❌ | ❌ | ❌ | +| databricks_query | parameter.name | ❌ | ❌ | ❌ | +| databricks_query | parameter.numeric_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.numeric_value.value | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.multi_values_options | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.multi_values_options.prefix | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.multi_values_options.separator | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.multi_values_options.suffix | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.query_id | ❌ | ❌ | ❌ | +| databricks_query | parameter.query_backed_value.values | ❌ | ❌ | ❌ | +| databricks_query | parameter.text_value | ❌ | ❌ | ❌ | +| databricks_query | parameter.text_value.value | ❌ | ❌ | ❌ | +| databricks_query | parameter.title | ❌ | ❌ | ❌ | +| databricks_query | parent_path | ❌ | ❌ | ❌ | +| databricks_query | query_text | ❌ | ❌ | ❌ | +| databricks_query | run_as_mode | ❌ | ❌ | ❌ | +| databricks_query | schema | ❌ | ❌ | ❌ | +| databricks_query | tags | ❌ | ❌ | ❌ | +| databricks_query | update_time (computed) | ❌ | ❌ | ❌ | +| databricks_query | warehouse_id | ❌ | ❌ | ❌ | +| databricks_recipient | activated (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | activation_url (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | authentication_type | ❌ | ❌ | ❌ | +| databricks_recipient | cloud (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | comment | ❌ | ❌ | ❌ | +| databricks_recipient | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | data_recipient_global_metastore_id | ❌ | ❌ | ❌ | +| databricks_recipient | expiration_time | ❌ | ❌ | ❌ | +| databricks_recipient | ip_access_list | ❌ | ❌ | ❌ | +| databricks_recipient | ip_access_list.allowed_ip_addresses | ❌ | ❌ | ❌ | +| databricks_recipient | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | name | ❌ | ❌ | ❌ | +| databricks_recipient | owner | ❌ | ❌ | ❌ | +| databricks_recipient | properties_kvpairs | ❌ | ❌ | ❌ | +| databricks_recipient | properties_kvpairs.properties | ❌ | ❌ | ❌ | +| databricks_recipient | region (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | sharing_code | ❌ | ❌ | ❌ | +| databricks_recipient | tokens (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.activation_url (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.created_at (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.created_by (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.expiration_time (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.id (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | tokens.updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_recipient | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.alias_name | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.catalog_name | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.id | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.model_name | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.schema_name | ❌ | ❌ | ❌ | +| databricks_registered_model | aliases.version_num | ❌ | ❌ | ❌ | +| databricks_registered_model | browse_only | ❌ | ❌ | ❌ | +| databricks_registered_model | catalog_name | ❌ | ❌ | ❌ | +| databricks_registered_model | comment | ❌ | ❌ | ❌ | +| databricks_registered_model | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | created_by (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | full_name (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | name | ❌ | ❌ | ❌ | +| databricks_registered_model | owner (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | schema_name | ❌ | ❌ | ❌ | +| databricks_registered_model | storage_location (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_registered_model | updated_by (computed) | ❌ | ❌ | ❌ | +| databricks_repo | branch (computed) | ❌ | ❌ | ❌ | +| databricks_repo | commit_hash (computed) | ❌ | ❌ | ❌ | +| databricks_repo | git_provider (computed) | ❌ | ❌ | ❌ | +| databricks_repo | path (computed) | ❌ | ❌ | ❌ | +| databricks_repo | sparse_checkout | ❌ | ❌ | ❌ | +| databricks_repo | sparse_checkout.patterns | ❌ | ❌ | ❌ | +| databricks_repo | tag | ❌ | ❌ | ❌ | +| databricks_repo | url | ❌ | ❌ | ❌ | +| databricks_repo | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_restrict_workspace_admins_setting | etag (computed) | ❌ | ❌ | ❌ | +| databricks_restrict_workspace_admins_setting | restrict_workspace_admins | ❌ | ❌ | ❌ | +| databricks_restrict_workspace_admins_setting | restrict_workspace_admins.status | ❌ | ❌ | ❌ | +| databricks_restrict_workspace_admins_setting | setting_name (computed) | ❌ | ❌ | ❌ | +| databricks_schema | id (computed) | ❌ | ❌ | ❌ | +| databricks_schema | name | ❌ | ❌ | ❌ | +| databricks_schema | provider_config | ❌ | ❌ | ❌ | +| databricks_schema | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_schema | schema_info (computed) | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.browse_only | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.catalog_name | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.catalog_type | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.comment | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.created_at | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.created_by | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.effective_predictive_optimization_flag | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.effective_predictive_optimization_flag.inherited_from_name | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.effective_predictive_optimization_flag.inherited_from_type | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.effective_predictive_optimization_flag.value | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.enable_predictive_optimization | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.full_name | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.name | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.owner | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.properties | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.schema_id | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.storage_location | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.storage_root | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.updated_at | ❌ | ❌ | ❌ | +| databricks_schema | schema_info.updated_by | ❌ | ❌ | ❌ | +| databricks_schema | catalog_name | ❌ | ❌ | ❌ | +| databricks_schema | comment | ❌ | ❌ | ❌ | +| databricks_schema | enable_predictive_optimization (computed) | ❌ | ❌ | ❌ | +| databricks_schema | force_destroy | ❌ | ❌ | ❌ | +| databricks_schema | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_schema | name | ❌ | ❌ | ❌ | +| databricks_schema | owner (computed) | ❌ | ❌ | ❌ | +| databricks_schema | properties | ❌ | ❌ | ❌ | +| databricks_schema | schema_id (computed) | ❌ | ❌ | ❌ | +| databricks_schema | storage_root | ❌ | ❌ | ❌ | +| databricks_schemas | catalog_name | ❌ | ❌ | ❌ | +| databricks_schemas | ids (computed) | ❌ | ❌ | ❌ | +| databricks_schemas | provider_config | ❌ | ❌ | ❌ | +| databricks_schemas | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_secret | config_reference (computed) | ❌ | ❌ | ❌ | +| databricks_secret | key | ❌ | ❌ | ❌ | +| databricks_secret | last_updated_timestamp (computed) | ❌ | ❌ | ❌ | +| databricks_secret | scope | ❌ | ❌ | ❌ | +| databricks_secret | string_value | ❌ | ❌ | ❌ | +| databricks_secret_acl | permission | ❌ | ❌ | ❌ | +| databricks_secret_acl | principal | ❌ | ❌ | ❌ | +| databricks_secret_acl | scope | ❌ | ❌ | ❌ | +| databricks_secret_scope | backend_type (computed) | ❌ | ❌ | ❌ | +| databricks_secret_scope | initial_manage_principal | ❌ | ❌ | ❌ | +| databricks_secret_scope | keyvault_metadata | ❌ | ❌ | ❌ | +| databricks_secret_scope | keyvault_metadata.dns_name | ❌ | ❌ | ❌ | +| databricks_secret_scope | keyvault_metadata.resource_id | ❌ | ❌ | ❌ | +| databricks_secret_scope | name | ❌ | ❌ | ❌ | +| databricks_service_principal | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | active (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | application_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | display_name (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | external_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | home (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | repos (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | scim_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | sp_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | active | ❌ | ❌ | ❌ | +| databricks_service_principal | allow_cluster_create | ❌ | ❌ | ❌ | +| databricks_service_principal | allow_instance_pool_create | ❌ | ❌ | ❌ | +| databricks_service_principal | application_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | databricks_sql_access | ❌ | ❌ | ❌ | +| databricks_service_principal | disable_as_user_deletion | ❌ | ❌ | ❌ | +| databricks_service_principal | display_name (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | external_id | ❌ | ❌ | ❌ | +| databricks_service_principal | force | ❌ | ❌ | ❌ | +| databricks_service_principal | force_delete_home_dir | ❌ | ❌ | ❌ | +| databricks_service_principal | force_delete_repos | ❌ | ❌ | ❌ | +| databricks_service_principal | home (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | repos (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal | workspace_access | ❌ | ❌ | ❌ | +| databricks_service_principal | workspace_consume | ❌ | ❌ | ❌ | +| databricks_service_principal_role | role | ❌ | ❌ | ❌ | +| databricks_service_principal_role | service_principal_id | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | create_time (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | expire_time (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | lifetime (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | secret (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | secret_hash (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | service_principal_id | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | status (computed) | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | time_rotating | ❌ | ❌ | ❌ | +| databricks_service_principal_secret | update_time (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | application_ids (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | display_name_contains (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.active (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.application_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.display_name (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.external_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.home (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.repos (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.scim_id (computed) | ❌ | ❌ | ❌ | +| databricks_service_principals | service_principals.sp_id (computed) | ❌ | ❌ | ❌ | +| databricks_spark_version | beta | ❌ | ❌ | ❌ | +| databricks_spark_version | genomics | ❌ | ❌ | ❌ | +| databricks_spark_version | gpu | ❌ | ❌ | ❌ | +| databricks_spark_version | graviton | ❌ | ❌ | ❌ | +| databricks_spark_version | id (computed) | ❌ | ❌ | ❌ | +| databricks_spark_version | latest | ❌ | ❌ | ❌ | +| databricks_spark_version | long_term_support | ❌ | ❌ | ❌ | +| databricks_spark_version | ml | ❌ | ❌ | ❌ | +| databricks_spark_version | photon | ❌ | ❌ | ❌ | +| databricks_spark_version | provider_config | ❌ | ❌ | ❌ | +| databricks_spark_version | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_spark_version | scala | ❌ | ❌ | ❌ | +| databricks_spark_version | spark_version | ❌ | ❌ | ❌ | +| databricks_sql_alert | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_alert | name | ❌ | ❌ | ❌ | +| databricks_sql_alert | options | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.column | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.custom_body | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.custom_subject | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.empty_result_state | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.muted | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.op | ❌ | ❌ | ❌ | +| databricks_sql_alert | options.value | ❌ | ❌ | ❌ | +| databricks_sql_alert | parent | ❌ | ❌ | ❌ | +| databricks_sql_alert | query_id | ❌ | ❌ | ❌ | +| databricks_sql_alert | rearm | ❌ | ❌ | ❌ | +| databricks_sql_alert | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | dashboard_filters_enabled | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | name | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | parent | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | run_as_role | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | tags | ❌ | ❌ | ❌ | +| databricks_sql_dashboard | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | auto_stop_mins | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | channel | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | channel.dbsql_version | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | channel.name | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | cluster_size | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | creator_name (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | data_source_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | enable_photon | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | enable_serverless_compute (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.details | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.failure_reason | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.failure_reason.code | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.failure_reason.parameters | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.failure_reason.type | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.message | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.status | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | health.summary | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | jdbc_url (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | max_num_clusters | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | min_num_clusters | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | name | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | no_wait | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | num_active_sessions (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | num_clusters (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | odbc_params (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | odbc_params.hostname | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | odbc_params.path | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | odbc_params.port | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | odbc_params.protocol | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | spot_instance_policy | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | state (computed) | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | tags | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | tags.custom_tags | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | tags.custom_tags.key | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | tags.custom_tags.value | ❌ | ❌ | ❌ | +| databricks_sql_endpoint | warehouse_type | ❌ | ❌ | ❌ | +| databricks_sql_global_config | data_access_config | ❌ | ❌ | ❌ | +| databricks_sql_global_config | enable_serverless_compute (computed) | ❌ | ❌ | ❌ | +| databricks_sql_global_config | google_service_account | ❌ | ❌ | ❌ | +| databricks_sql_global_config | instance_profile_arn | ❌ | ❌ | ❌ | +| databricks_sql_global_config | security_policy | ❌ | ❌ | ❌ | +| databricks_sql_global_config | sql_config_params | ❌ | ❌ | ❌ | +| databricks_sql_permissions | anonymous_function | ❌ | ❌ | ❌ | +| databricks_sql_permissions | any_file | ❌ | ❌ | ❌ | +| databricks_sql_permissions | catalog | ❌ | ❌ | ❌ | +| databricks_sql_permissions | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_permissions | database | ❌ | ❌ | ❌ | +| databricks_sql_permissions | privilege_assignments | ❌ | ❌ | ❌ | +| databricks_sql_permissions | privilege_assignments.principal | ❌ | ❌ | ❌ | +| databricks_sql_permissions | privilege_assignments.privileges | ❌ | ❌ | ❌ | +| databricks_sql_permissions | table | ❌ | ❌ | ❌ | +| databricks_sql_permissions | view | ❌ | ❌ | ❌ | +| databricks_sql_query | created_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_query | data_source_id | ❌ | ❌ | ❌ | +| databricks_sql_query | description | ❌ | ❌ | ❌ | +| databricks_sql_query | name | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date_range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date_range.range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date_range.range.end | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date_range.range.start | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.date_range.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime_range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime_range.range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime_range.range.end | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime_range.range.start | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetime_range.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec_range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec_range.range | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec_range.range.end | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec_range.range.start | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.datetimesec_range.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.multiple | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.multiple.prefix | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.multiple.separator | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.multiple.suffix | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.options | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.enum.values | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.name | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.number | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.number.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.multiple | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.multiple.prefix | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.multiple.separator | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.multiple.suffix | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.query_id | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.query.values | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.text | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.text.value | ❌ | ❌ | ❌ | +| databricks_sql_query | parameter.title | ❌ | ❌ | ❌ | +| databricks_sql_query | parent | ❌ | ❌ | ❌ | +| databricks_sql_query | query | ❌ | ❌ | ❌ | +| databricks_sql_query | run_as_role | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.continuous | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.continuous.interval_seconds | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.continuous.until_date | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.daily | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.daily.interval_days | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.daily.time_of_day | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.daily.until_date | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.weekly | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.weekly.day_of_week | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.weekly.interval_weeks | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.weekly.time_of_day | ❌ | ❌ | ❌ | +| databricks_sql_query | schedule.weekly.until_date | ❌ | ❌ | ❌ | +| databricks_sql_query | tags | ❌ | ❌ | ❌ | +| databricks_sql_query | updated_at (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | catalog_name | ❌ | ❌ | ❌ | +| databricks_sql_table | cluster_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | cluster_keys | ❌ | ❌ | ❌ | +| databricks_sql_table | column (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | column.comment | ❌ | ❌ | ❌ | +| databricks_sql_table | column.identity | ❌ | ❌ | ❌ | +| databricks_sql_table | column.name | ❌ | ❌ | ❌ | +| databricks_sql_table | column.nullable | ❌ | ❌ | ❌ | +| databricks_sql_table | column.type (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | column.type_json (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | comment | ❌ | ❌ | ❌ | +| databricks_sql_table | data_source_format | ❌ | ❌ | ❌ | +| databricks_sql_table | effective_properties (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | name | ❌ | ❌ | ❌ | +| databricks_sql_table | options | ❌ | ❌ | ❌ | +| databricks_sql_table | owner (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | partitions (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | properties | ❌ | ❌ | ❌ | +| databricks_sql_table | schema_name | ❌ | ❌ | ❌ | +| databricks_sql_table | storage_credential_name | ❌ | ❌ | ❌ | +| databricks_sql_table | storage_location | ❌ | ❌ | ❌ | +| databricks_sql_table | table_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_table | table_type | ❌ | ❌ | ❌ | +| databricks_sql_table | view_definition | ❌ | ❌ | ❌ | +| databricks_sql_table | warehouse_id | ❌ | ❌ | ❌ | +| databricks_sql_visualization | description | ❌ | ❌ | ❌ | +| databricks_sql_visualization | name | ❌ | ❌ | ❌ | +| databricks_sql_visualization | options | ❌ | ❌ | ❌ | +| databricks_sql_visualization | query_id | ❌ | ❌ | ❌ | +| databricks_sql_visualization | query_plan | ❌ | ❌ | ❌ | +| databricks_sql_visualization | type | ❌ | ❌ | ❌ | +| databricks_sql_visualization | visualization_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | auto_stop_mins (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | channel (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | channel.dbsql_version | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | channel.name | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | cluster_size (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | creator_name (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | data_source_id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | enable_photon (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | enable_serverless_compute (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.details | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.failure_reason | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.failure_reason.code | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.failure_reason.parameters | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.failure_reason.type | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.message | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.status | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | health.summary | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | id (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | instance_profile_arn (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | jdbc_url (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | max_num_clusters (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | min_num_clusters (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | name (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | num_active_sessions (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | num_clusters (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | odbc_params (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | odbc_params.hostname | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | odbc_params.path | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | odbc_params.port | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | odbc_params.protocol | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | provider_config | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | spot_instance_policy (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | state (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | tags (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | tags.custom_tags | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | tags.custom_tags.key | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | tags.custom_tags.value | ❌ | ❌ | ❌ | +| databricks_sql_warehouse | warehouse_type (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouses | ids (computed) | ❌ | ❌ | ❌ | +| databricks_sql_warehouses | provider_config | ❌ | ❌ | ❌ | +| databricks_sql_warehouses | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_sql_warehouses | warehouse_name_contains | ❌ | ❌ | ❌ | +| databricks_sql_widget | dashboard_id | ❌ | ❌ | ❌ | +| databricks_sql_widget | description | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.map_to | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.name | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.title | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.type | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.value | ❌ | ❌ | ❌ | +| databricks_sql_widget | parameter.values | ❌ | ❌ | ❌ | +| databricks_sql_widget | position | ❌ | ❌ | ❌ | +| databricks_sql_widget | position.auto_height | ❌ | ❌ | ❌ | +| databricks_sql_widget | position.pos_x | ❌ | ❌ | ❌ | +| databricks_sql_widget | position.pos_y | ❌ | ❌ | ❌ | +| databricks_sql_widget | position.size_x | ❌ | ❌ | ❌ | +| databricks_sql_widget | position.size_y | ❌ | ❌ | ❌ | +| databricks_sql_widget | text | ❌ | ❌ | ❌ | +| databricks_sql_widget | title | ❌ | ❌ | ❌ | +| databricks_sql_widget | visualization_id | ❌ | ❌ | ❌ | +| databricks_sql_widget | widget_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | name | ❌ | ❌ | ❌ | +| databricks_storage_credential | provider_config | ❌ | ❌ | ❌ | +| databricks_storage_credential | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.aws_iam_role | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.aws_iam_role.external_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.aws_iam_role.role_arn | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.aws_iam_role.unity_catalog_iam_arn | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_managed_identity | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_managed_identity.access_connector_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_managed_identity.credential_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_managed_identity.managed_identity_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_service_principal | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_service_principal.application_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_service_principal.client_secret | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.azure_service_principal.directory_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.cloudflare_api_token | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.cloudflare_api_token.access_key_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.cloudflare_api_token.account_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.cloudflare_api_token.secret_access_key | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.comment | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.created_at | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.created_by | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.databricks_gcp_service_account | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.databricks_gcp_service_account.credential_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.databricks_gcp_service_account.email | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.full_name | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.isolation_mode | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.name | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.owner | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.read_only | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.updated_at | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.updated_by | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_info.used_for_managed_storage | ❌ | ❌ | ❌ | +| databricks_storage_credential | aws_iam_role | ❌ | ❌ | ❌ | +| databricks_storage_credential | aws_iam_role.external_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | aws_iam_role.role_arn | ❌ | ❌ | ❌ | +| databricks_storage_credential | aws_iam_role.unity_catalog_iam_arn (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_managed_identity | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_managed_identity.access_connector_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_managed_identity.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_managed_identity.managed_identity_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_service_principal | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_service_principal.application_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_service_principal.client_secret | ❌ | ❌ | ❌ | +| databricks_storage_credential | azure_service_principal.directory_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | cloudflare_api_token | ❌ | ❌ | ❌ | +| databricks_storage_credential | cloudflare_api_token.access_key_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | cloudflare_api_token.account_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | cloudflare_api_token.secret_access_key | ❌ | ❌ | ❌ | +| databricks_storage_credential | comment | ❌ | ❌ | ❌ | +| databricks_storage_credential | databricks_gcp_service_account (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | databricks_gcp_service_account.credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | databricks_gcp_service_account.email (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | force_destroy | ❌ | ❌ | ❌ | +| databricks_storage_credential | force_update | ❌ | ❌ | ❌ | +| databricks_storage_credential | gcp_service_account_key | ❌ | ❌ | ❌ | +| databricks_storage_credential | gcp_service_account_key.email | ❌ | ❌ | ❌ | +| databricks_storage_credential | gcp_service_account_key.private_key | ❌ | ❌ | ❌ | +| databricks_storage_credential | gcp_service_account_key.private_key_id | ❌ | ❌ | ❌ | +| databricks_storage_credential | isolation_mode (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | name | ❌ | ❌ | ❌ | +| databricks_storage_credential | owner (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credential | read_only | ❌ | ❌ | ❌ | +| databricks_storage_credential | skip_validation | ❌ | ❌ | ❌ | +| databricks_storage_credential | storage_credential_id (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credentials | names (computed) | ❌ | ❌ | ❌ | +| databricks_storage_credentials | provider_config | ❌ | ❌ | ❌ | +| databricks_storage_credentials | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_system_schema | auto_enabled (computed) | ❌ | ❌ | ❌ | +| databricks_system_schema | full_name (computed) | ❌ | ❌ | ❌ | +| databricks_system_schema | metastore_id (computed) | ❌ | ❌ | ❌ | +| databricks_system_schema | schema | ❌ | ❌ | ❌ | +| databricks_system_schema | state (computed) | ❌ | ❌ | ❌ | +| databricks_table | id (computed) | ❌ | ❌ | ❌ | +| databricks_table | name | ❌ | ❌ | ❌ | +| databricks_table | provider_config | ❌ | ❌ | ❌ | +| databricks_table | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_table | table_info (computed) | ❌ | ❌ | ❌ | +| databricks_table | table_info.access_point | ❌ | ❌ | ❌ | +| databricks_table | table_info.browse_only | ❌ | ❌ | ❌ | +| databricks_table | table_info.catalog_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.comment | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.mask | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.mask.function_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.mask.using_column_names | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.nullable | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.partition_index | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.position | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_interval_type | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_json | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_precision | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_scale | ❌ | ❌ | ❌ | +| databricks_table | table_info.columns.type_text | ❌ | ❌ | ❌ | +| databricks_table | table_info.comment | ❌ | ❌ | ❌ | +| databricks_table | table_info.created_at | ❌ | ❌ | ❌ | +| databricks_table | table_info.created_by | ❌ | ❌ | ❌ | +| databricks_table | table_info.data_access_configuration_id | ❌ | ❌ | ❌ | +| databricks_table | table_info.data_source_format | ❌ | ❌ | ❌ | +| databricks_table | table_info.deleted_at | ❌ | ❌ | ❌ | +| databricks_table | table_info.delta_runtime_properties_kvpairs | ❌ | ❌ | ❌ | +| databricks_table | table_info.delta_runtime_properties_kvpairs.delta_runtime_properties | ❌ | ❌ | ❌ | +| databricks_table | table_info.effective_predictive_optimization_flag | ❌ | ❌ | ❌ | +| databricks_table | table_info.effective_predictive_optimization_flag.inherited_from_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.effective_predictive_optimization_flag.inherited_from_type | ❌ | ❌ | ❌ | +| databricks_table | table_info.effective_predictive_optimization_flag.value | ❌ | ❌ | ❌ | +| databricks_table | table_info.enable_predictive_optimization | ❌ | ❌ | ❌ | +| databricks_table | table_info.encryption_details | ❌ | ❌ | ❌ | +| databricks_table | table_info.encryption_details.sse_encryption_details | ❌ | ❌ | ❌ | +| databricks_table | table_info.encryption_details.sse_encryption_details.algorithm | ❌ | ❌ | ❌ | +| databricks_table | table_info.encryption_details.sse_encryption_details.aws_kms_key_arn | ❌ | ❌ | ❌ | +| databricks_table | table_info.full_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_table | table_info.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.owner | ❌ | ❌ | ❌ | +| databricks_table | table_info.pipeline_id | ❌ | ❌ | ❌ | +| databricks_table | table_info.properties | ❌ | ❌ | ❌ | +| databricks_table | table_info.row_filter | ❌ | ❌ | ❌ | +| databricks_table | table_info.row_filter.function_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.row_filter.input_column_names | ❌ | ❌ | ❌ | +| databricks_table | table_info.schema_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.assignable_privileges | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.capabilities | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.allowed_values | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.default_value | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.description | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.hint | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_copiable | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_creatable | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_hidden | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_loggable | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_required | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_secret | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.is_updatable | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.oauth_stage | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.options.type | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.securable_kind | ❌ | ❌ | ❌ | +| databricks_table | table_info.securable_kind_manifest.securable_type | ❌ | ❌ | ❌ | +| databricks_table | table_info.sql_path | ❌ | ❌ | ❌ | +| databricks_table | table_info.storage_credential_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.storage_location | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint.child_columns | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint.parent_columns | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint.parent_table | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.foreign_key_constraint.rely | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.named_table_constraint | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.named_table_constraint.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.primary_key_constraint | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.primary_key_constraint.child_columns | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.primary_key_constraint.name | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.primary_key_constraint.rely | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_constraints.primary_key_constraint.timeseries_columns | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_id | ❌ | ❌ | ❌ | +| databricks_table | table_info.table_type | ❌ | ❌ | ❌ | +| databricks_table | table_info.updated_at | ❌ | ❌ | ❌ | +| databricks_table | table_info.updated_by | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_definition | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.connection | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.credential | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.function | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.table | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.table.connection_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.table.credential_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.table.function_full_name | ❌ | ❌ | ❌ | +| databricks_table | table_info.view_dependencies.dependencies.table.table_full_name | ❌ | ❌ | ❌ | +| databricks_table | catalog_name | ❌ | ❌ | ❌ | +| databricks_table | column | ❌ | ❌ | ❌ | +| databricks_table | column.comment | ❌ | ❌ | ❌ | +| databricks_table | column.name | ❌ | ❌ | ❌ | +| databricks_table | column.nullable | ❌ | ❌ | ❌ | +| databricks_table | column.partition_index | ❌ | ❌ | ❌ | +| databricks_table | column.position | ❌ | ❌ | ❌ | +| databricks_table | column.type_interval_type | ❌ | ❌ | ❌ | +| databricks_table | column.type_json | ❌ | ❌ | ❌ | +| databricks_table | column.type_name | ❌ | ❌ | ❌ | +| databricks_table | column.type_precision | ❌ | ❌ | ❌ | +| databricks_table | column.type_scale | ❌ | ❌ | ❌ | +| databricks_table | column.type_text | ❌ | ❌ | ❌ | +| databricks_table | comment | ❌ | ❌ | ❌ | +| databricks_table | data_source_format | ❌ | ❌ | ❌ | +| databricks_table | name | ❌ | ❌ | ❌ | +| databricks_table | owner (computed) | ❌ | ❌ | ❌ | +| databricks_table | properties | ❌ | ❌ | ❌ | +| databricks_table | schema_name | ❌ | ❌ | ❌ | +| databricks_table | storage_credential_name | ❌ | ❌ | ❌ | +| databricks_table | storage_location | ❌ | ❌ | ❌ | +| databricks_table | table_type | ❌ | ❌ | ❌ | +| databricks_table | view_definition | ❌ | ❌ | ❌ | +| databricks_tables | catalog_name | ❌ | ❌ | ❌ | +| databricks_tables | ids (computed) | ❌ | ❌ | ❌ | +| databricks_tables | provider_config | ❌ | ❌ | ❌ | +| databricks_tables | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_tables | schema_name | ❌ | ❌ | ❌ | +| databricks_token | comment | ❌ | ❌ | ❌ | +| databricks_token | creation_time (computed) | ❌ | ❌ | ❌ | +| databricks_token | expiry_time (computed) | ❌ | ❌ | ❌ | +| databricks_token | lifetime_seconds | ❌ | ❌ | ❌ | +| databricks_token | token_id (computed) | ❌ | ❌ | ❌ | +| databricks_token | token_value (computed) | ❌ | ❌ | ❌ | +| databricks_user | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_user | active (computed) | ❌ | ❌ | ❌ | +| databricks_user | alphanumeric (computed) | ❌ | ❌ | ❌ | +| databricks_user | application_id (computed) | ❌ | ❌ | ❌ | +| databricks_user | display_name (computed) | ❌ | ❌ | ❌ | +| databricks_user | external_id (computed) | ❌ | ❌ | ❌ | +| databricks_user | home (computed) | ❌ | ❌ | ❌ | +| databricks_user | repos (computed) | ❌ | ❌ | ❌ | +| databricks_user | user_id | ❌ | ❌ | ❌ | +| databricks_user | user_name | ❌ | ❌ | ❌ | +| databricks_user | acl_principal_id (computed) | ❌ | ❌ | ❌ | +| databricks_user | active | ❌ | ❌ | ❌ | +| databricks_user | allow_cluster_create | ❌ | ❌ | ❌ | +| databricks_user | allow_instance_pool_create | ❌ | ❌ | ❌ | +| databricks_user | databricks_sql_access | ❌ | ❌ | ❌ | +| databricks_user | disable_as_user_deletion (computed) | ❌ | ❌ | ❌ | +| databricks_user | display_name (computed) | ❌ | ❌ | ❌ | +| databricks_user | external_id | ❌ | ❌ | ❌ | +| databricks_user | force | ❌ | ❌ | ❌ | +| databricks_user | force_delete_home_dir | ❌ | ❌ | ❌ | +| databricks_user | force_delete_repos | ❌ | ❌ | ❌ | +| databricks_user | home (computed) | ❌ | ❌ | ❌ | +| databricks_user | repos (computed) | ❌ | ❌ | ❌ | +| databricks_user | user_name | ❌ | ❌ | ❌ | +| databricks_user | workspace_access | ❌ | ❌ | ❌ | +| databricks_user | workspace_consume | ❌ | ❌ | ❌ | +| databricks_user_instance_profile | instance_profile_id | ❌ | ❌ | ❌ | +| databricks_user_instance_profile | user_id | ❌ | ❌ | ❌ | +| databricks_user_role | role | ❌ | ❌ | ❌ | +| databricks_user_role | user_id | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | budget_policy_id (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | creation_timestamp (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | creator (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | effective_budget_policy_id (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | endpoint_id (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | endpoint_status (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | endpoint_status.message | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | endpoint_status.state | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | endpoint_type | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | last_updated_timestamp (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | last_updated_user (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | name | ❌ | ❌ | ❌ | +| databricks_vector_search_endpoint | num_indexes (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_index | creator (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_source_columns | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_source_columns.embedding_model_endpoint_name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_source_columns.model_endpoint_name_for_query | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_source_columns.name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_vector_columns | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_vector_columns.embedding_dimension | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_vector_columns.name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.embedding_writeback_table | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.pipeline_id (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.pipeline_type | ❌ | ❌ | ❌ | +| databricks_vector_search_index | delta_sync_index_spec.source_table | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_source_columns | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_source_columns.embedding_model_endpoint_name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_source_columns.model_endpoint_name_for_query | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_source_columns.name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_vector_columns | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_vector_columns.embedding_dimension | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.embedding_vector_columns.name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | direct_access_index_spec.schema_json | ❌ | ❌ | ❌ | +| databricks_vector_search_index | endpoint_name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | index_type | ❌ | ❌ | ❌ | +| databricks_vector_search_index | name | ❌ | ❌ | ❌ | +| databricks_vector_search_index | primary_key | ❌ | ❌ | ❌ | +| databricks_vector_search_index | status (computed) | ❌ | ❌ | ❌ | +| databricks_vector_search_index | status.index_url | ❌ | ❌ | ❌ | +| databricks_vector_search_index | status.indexed_row_count | ❌ | ❌ | ❌ | +| databricks_vector_search_index | status.message | ❌ | ❌ | ❌ | +| databricks_vector_search_index | status.ready | ❌ | ❌ | ❌ | +| databricks_views | catalog_name | ❌ | ❌ | ❌ | +| databricks_views | ids (computed) | ❌ | ❌ | ❌ | +| databricks_views | provider_config | ❌ | ❌ | ❌ | +| databricks_views | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_views | schema_name | ❌ | ❌ | ❌ | +| databricks_volume | id (computed) | ❌ | ❌ | ❌ | +| databricks_volume | name | ❌ | ❌ | ❌ | +| databricks_volume | provider_config | ❌ | ❌ | ❌ | +| databricks_volume | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_volume | volume_info (computed) | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.access_point | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.browse_only | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.catalog_name | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.comment | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.created_at | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.created_by | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.encryption_details | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.encryption_details.sse_encryption_details | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.encryption_details.sse_encryption_details.algorithm | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.encryption_details.sse_encryption_details.aws_kms_key_arn | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.full_name | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.metastore_id | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.name | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.owner | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.schema_name | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.storage_location | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.updated_at | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.updated_by | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.volume_id | ❌ | ❌ | ❌ | +| databricks_volume | volume_info.volume_type | ❌ | ❌ | ❌ | +| databricks_volume | catalog_name | ❌ | ❌ | ❌ | +| databricks_volume | comment | ❌ | ❌ | ❌ | +| databricks_volume | name | ❌ | ❌ | ❌ | +| databricks_volume | owner (computed) | ❌ | ❌ | ❌ | +| databricks_volume | schema_name | ❌ | ❌ | ❌ | +| databricks_volume | storage_location | ❌ | ❌ | ❌ | +| databricks_volume | volume_path (computed) | ❌ | ❌ | ❌ | +| databricks_volume | volume_type | ❌ | ❌ | ❌ | +| databricks_workspace_binding | binding_type | ❌ | ❌ | ❌ | +| databricks_workspace_binding | catalog_name | ❌ | ❌ | ❌ | +| databricks_workspace_binding | securable_name (computed) | ❌ | ❌ | ❌ | +| databricks_workspace_binding | securable_type | ❌ | ❌ | ❌ | +| databricks_workspace_binding | workspace_id | ❌ | ❌ | ❌ | +| databricks_workspace_conf | custom_config | ❌ | ❌ | ❌ | +| databricks_workspace_file | content_base64 | ❌ | ❌ | ❌ | +| databricks_workspace_file | md5 | ❌ | ❌ | ❌ | +| databricks_workspace_file | object_id (computed) | ❌ | ❌ | ❌ | +| databricks_workspace_file | path | ❌ | ❌ | ❌ | +| databricks_workspace_file | source | ❌ | ❌ | ❌ | +| databricks_workspace_file | url (computed) | ❌ | ❌ | ❌ | +| databricks_workspace_file | workspace_path (computed) | ❌ | ❌ | ❌ | +| databricks_zones | default_zone (computed) | ❌ | ❌ | ❌ | +| databricks_zones | id (computed) | ❌ | ❌ | ❌ | +| databricks_zones | provider_config | ❌ | ❌ | ❌ | +| databricks_zones | provider_config.workspace_id | ❌ | ❌ | ❌ | +| databricks_zones | zones (computed) | ❌ | ❌ | ❌ |