1. Packages
  2. Databricks Provider
  3. API Docs
  4. AccountSettingV2
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
databricks logo
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi

    Public Beta

    Setting is a configurable value or control that determines how a feature or behavior works within the databricks platform.

    See settings-metadata api for list of settings that can be modified using this resource.

    Example Usage

    Getting an account level setting:

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.AccountSettingV2("this", {
        name: "llm_proxy_partner_powered",
        booleanVal: {
            value: false,
        },
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.AccountSettingV2("this",
        name="llm_proxy_partner_powered",
        boolean_val={
            "value": False,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databricks.NewAccountSettingV2(ctx, "this", &databricks.AccountSettingV2Args{
    			Name: pulumi.String("llm_proxy_partner_powered"),
    			BooleanVal: &databricks.AccountSettingV2BooleanValArgs{
    				Value: pulumi.Bool(false),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Databricks.AccountSettingV2("this", new()
        {
            Name = "llm_proxy_partner_powered",
            BooleanVal = new Databricks.Inputs.AccountSettingV2BooleanValArgs
            {
                Value = false,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.AccountSettingV2;
    import com.pulumi.databricks.AccountSettingV2Args;
    import com.pulumi.databricks.inputs.AccountSettingV2BooleanValArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var this_ = new AccountSettingV2("this", AccountSettingV2Args.builder()
                .name("llm_proxy_partner_powered")
                .booleanVal(AccountSettingV2BooleanValArgs.builder()
                    .value(false)
                    .build())
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:AccountSettingV2
        properties:
          name: llm_proxy_partner_powered
          booleanVal:
            value: false
    

    Create AccountSettingV2 Resource

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

    Constructor syntax

    new AccountSettingV2(name: string, args?: AccountSettingV2Args, opts?: CustomResourceOptions);
    @overload
    def AccountSettingV2(resource_name: str,
                         args: Optional[AccountSettingV2Args] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountSettingV2(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         aibi_dashboard_embedding_access_policy: Optional[AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs] = None,
                         aibi_dashboard_embedding_approved_domains: Optional[AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs] = None,
                         automatic_cluster_update_workspace: Optional[AccountSettingV2AutomaticClusterUpdateWorkspaceArgs] = None,
                         boolean_val: Optional[AccountSettingV2BooleanValArgs] = None,
                         effective_aibi_dashboard_embedding_access_policy: Optional[AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs] = None,
                         effective_aibi_dashboard_embedding_approved_domains: Optional[AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs] = None,
                         effective_automatic_cluster_update_workspace: Optional[AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs] = None,
                         effective_personal_compute: Optional[AccountSettingV2EffectivePersonalComputeArgs] = None,
                         effective_restrict_workspace_admins: Optional[AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs] = None,
                         integer_val: Optional[AccountSettingV2IntegerValArgs] = None,
                         name: Optional[str] = None,
                         personal_compute: Optional[AccountSettingV2PersonalComputeArgs] = None,
                         restrict_workspace_admins: Optional[AccountSettingV2RestrictWorkspaceAdminsArgs] = None,
                         string_val: Optional[AccountSettingV2StringValArgs] = None)
    func NewAccountSettingV2(ctx *Context, name string, args *AccountSettingV2Args, opts ...ResourceOption) (*AccountSettingV2, error)
    public AccountSettingV2(string name, AccountSettingV2Args? args = null, CustomResourceOptions? opts = null)
    public AccountSettingV2(String name, AccountSettingV2Args args)
    public AccountSettingV2(String name, AccountSettingV2Args args, CustomResourceOptions options)
    
    type: databricks:AccountSettingV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AccountSettingV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AccountSettingV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AccountSettingV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountSettingV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountSettingV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var accountSettingV2Resource = new Databricks.AccountSettingV2("accountSettingV2Resource", new()
    {
        AibiDashboardEmbeddingAccessPolicy = new Databricks.Inputs.AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs
        {
            AccessPolicyType = "string",
        },
        AibiDashboardEmbeddingApprovedDomains = new Databricks.Inputs.AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs
        {
            ApprovedDomains = new[]
            {
                "string",
            },
        },
        AutomaticClusterUpdateWorkspace = new Databricks.Inputs.AccountSettingV2AutomaticClusterUpdateWorkspaceArgs
        {
            CanToggle = false,
            Enabled = false,
            EnablementDetails = new Databricks.Inputs.AccountSettingV2AutomaticClusterUpdateWorkspaceEnablementDetailsArgs
            {
                ForcedForComplianceMode = false,
                UnavailableForDisabledEntitlement = false,
                UnavailableForNonEnterpriseTier = false,
            },
            MaintenanceWindow = new Databricks.Inputs.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowArgs
            {
                WeekDayBasedSchedule = new Databricks.Inputs.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs
                {
                    DayOfWeek = "string",
                    Frequency = "string",
                    WindowStartTime = new Databricks.Inputs.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs
                    {
                        Hours = 0,
                        Minutes = 0,
                    },
                },
            },
            RestartEvenIfNoUpdatesAvailable = false,
        },
        BooleanVal = new Databricks.Inputs.AccountSettingV2BooleanValArgs
        {
            Value = false,
        },
        EffectiveAibiDashboardEmbeddingAccessPolicy = new Databricks.Inputs.AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs
        {
            AccessPolicyType = "string",
        },
        EffectiveAibiDashboardEmbeddingApprovedDomains = new Databricks.Inputs.AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs
        {
            ApprovedDomains = new[]
            {
                "string",
            },
        },
        EffectiveAutomaticClusterUpdateWorkspace = new Databricks.Inputs.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs
        {
            CanToggle = false,
            Enabled = false,
            EnablementDetails = new Databricks.Inputs.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceEnablementDetailsArgs
            {
                ForcedForComplianceMode = false,
                UnavailableForDisabledEntitlement = false,
                UnavailableForNonEnterpriseTier = false,
            },
            MaintenanceWindow = new Databricks.Inputs.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowArgs
            {
                WeekDayBasedSchedule = new Databricks.Inputs.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs
                {
                    DayOfWeek = "string",
                    Frequency = "string",
                    WindowStartTime = new Databricks.Inputs.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs
                    {
                        Hours = 0,
                        Minutes = 0,
                    },
                },
            },
            RestartEvenIfNoUpdatesAvailable = false,
        },
        EffectivePersonalCompute = new Databricks.Inputs.AccountSettingV2EffectivePersonalComputeArgs
        {
            Value = "string",
        },
        EffectiveRestrictWorkspaceAdmins = new Databricks.Inputs.AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs
        {
            Status = "string",
        },
        IntegerVal = new Databricks.Inputs.AccountSettingV2IntegerValArgs
        {
            Value = 0,
        },
        Name = "string",
        PersonalCompute = new Databricks.Inputs.AccountSettingV2PersonalComputeArgs
        {
            Value = "string",
        },
        RestrictWorkspaceAdmins = new Databricks.Inputs.AccountSettingV2RestrictWorkspaceAdminsArgs
        {
            Status = "string",
        },
        StringVal = new Databricks.Inputs.AccountSettingV2StringValArgs
        {
            Value = "string",
        },
    });
    
    example, err := databricks.NewAccountSettingV2(ctx, "accountSettingV2Resource", &databricks.AccountSettingV2Args{
    	AibiDashboardEmbeddingAccessPolicy: &databricks.AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs{
    		AccessPolicyType: pulumi.String("string"),
    	},
    	AibiDashboardEmbeddingApprovedDomains: &databricks.AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs{
    		ApprovedDomains: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	AutomaticClusterUpdateWorkspace: &databricks.AccountSettingV2AutomaticClusterUpdateWorkspaceArgs{
    		CanToggle: pulumi.Bool(false),
    		Enabled:   pulumi.Bool(false),
    		EnablementDetails: &databricks.AccountSettingV2AutomaticClusterUpdateWorkspaceEnablementDetailsArgs{
    			ForcedForComplianceMode:           pulumi.Bool(false),
    			UnavailableForDisabledEntitlement: pulumi.Bool(false),
    			UnavailableForNonEnterpriseTier:   pulumi.Bool(false),
    		},
    		MaintenanceWindow: &databricks.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowArgs{
    			WeekDayBasedSchedule: &databricks.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs{
    				DayOfWeek: pulumi.String("string"),
    				Frequency: pulumi.String("string"),
    				WindowStartTime: &databricks.AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs{
    					Hours:   pulumi.Int(0),
    					Minutes: pulumi.Int(0),
    				},
    			},
    		},
    		RestartEvenIfNoUpdatesAvailable: pulumi.Bool(false),
    	},
    	BooleanVal: &databricks.AccountSettingV2BooleanValArgs{
    		Value: pulumi.Bool(false),
    	},
    	EffectiveAibiDashboardEmbeddingAccessPolicy: &databricks.AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs{
    		AccessPolicyType: pulumi.String("string"),
    	},
    	EffectiveAibiDashboardEmbeddingApprovedDomains: &databricks.AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs{
    		ApprovedDomains: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	EffectiveAutomaticClusterUpdateWorkspace: &databricks.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs{
    		CanToggle: pulumi.Bool(false),
    		Enabled:   pulumi.Bool(false),
    		EnablementDetails: &databricks.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceEnablementDetailsArgs{
    			ForcedForComplianceMode:           pulumi.Bool(false),
    			UnavailableForDisabledEntitlement: pulumi.Bool(false),
    			UnavailableForNonEnterpriseTier:   pulumi.Bool(false),
    		},
    		MaintenanceWindow: &databricks.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowArgs{
    			WeekDayBasedSchedule: &databricks.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs{
    				DayOfWeek: pulumi.String("string"),
    				Frequency: pulumi.String("string"),
    				WindowStartTime: &databricks.AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs{
    					Hours:   pulumi.Int(0),
    					Minutes: pulumi.Int(0),
    				},
    			},
    		},
    		RestartEvenIfNoUpdatesAvailable: pulumi.Bool(false),
    	},
    	EffectivePersonalCompute: &databricks.AccountSettingV2EffectivePersonalComputeArgs{
    		Value: pulumi.String("string"),
    	},
    	EffectiveRestrictWorkspaceAdmins: &databricks.AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs{
    		Status: pulumi.String("string"),
    	},
    	IntegerVal: &databricks.AccountSettingV2IntegerValArgs{
    		Value: pulumi.Int(0),
    	},
    	Name: pulumi.String("string"),
    	PersonalCompute: &databricks.AccountSettingV2PersonalComputeArgs{
    		Value: pulumi.String("string"),
    	},
    	RestrictWorkspaceAdmins: &databricks.AccountSettingV2RestrictWorkspaceAdminsArgs{
    		Status: pulumi.String("string"),
    	},
    	StringVal: &databricks.AccountSettingV2StringValArgs{
    		Value: pulumi.String("string"),
    	},
    })
    
    var accountSettingV2Resource = new AccountSettingV2("accountSettingV2Resource", AccountSettingV2Args.builder()
        .aibiDashboardEmbeddingAccessPolicy(AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs.builder()
            .accessPolicyType("string")
            .build())
        .aibiDashboardEmbeddingApprovedDomains(AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs.builder()
            .approvedDomains("string")
            .build())
        .automaticClusterUpdateWorkspace(AccountSettingV2AutomaticClusterUpdateWorkspaceArgs.builder()
            .canToggle(false)
            .enabled(false)
            .enablementDetails(AccountSettingV2AutomaticClusterUpdateWorkspaceEnablementDetailsArgs.builder()
                .forcedForComplianceMode(false)
                .unavailableForDisabledEntitlement(false)
                .unavailableForNonEnterpriseTier(false)
                .build())
            .maintenanceWindow(AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowArgs.builder()
                .weekDayBasedSchedule(AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs.builder()
                    .dayOfWeek("string")
                    .frequency("string")
                    .windowStartTime(AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs.builder()
                        .hours(0)
                        .minutes(0)
                        .build())
                    .build())
                .build())
            .restartEvenIfNoUpdatesAvailable(false)
            .build())
        .booleanVal(AccountSettingV2BooleanValArgs.builder()
            .value(false)
            .build())
        .effectiveAibiDashboardEmbeddingAccessPolicy(AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs.builder()
            .accessPolicyType("string")
            .build())
        .effectiveAibiDashboardEmbeddingApprovedDomains(AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs.builder()
            .approvedDomains("string")
            .build())
        .effectiveAutomaticClusterUpdateWorkspace(AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs.builder()
            .canToggle(false)
            .enabled(false)
            .enablementDetails(AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceEnablementDetailsArgs.builder()
                .forcedForComplianceMode(false)
                .unavailableForDisabledEntitlement(false)
                .unavailableForNonEnterpriseTier(false)
                .build())
            .maintenanceWindow(AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowArgs.builder()
                .weekDayBasedSchedule(AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs.builder()
                    .dayOfWeek("string")
                    .frequency("string")
                    .windowStartTime(AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs.builder()
                        .hours(0)
                        .minutes(0)
                        .build())
                    .build())
                .build())
            .restartEvenIfNoUpdatesAvailable(false)
            .build())
        .effectivePersonalCompute(AccountSettingV2EffectivePersonalComputeArgs.builder()
            .value("string")
            .build())
        .effectiveRestrictWorkspaceAdmins(AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs.builder()
            .status("string")
            .build())
        .integerVal(AccountSettingV2IntegerValArgs.builder()
            .value(0)
            .build())
        .name("string")
        .personalCompute(AccountSettingV2PersonalComputeArgs.builder()
            .value("string")
            .build())
        .restrictWorkspaceAdmins(AccountSettingV2RestrictWorkspaceAdminsArgs.builder()
            .status("string")
            .build())
        .stringVal(AccountSettingV2StringValArgs.builder()
            .value("string")
            .build())
        .build());
    
    account_setting_v2_resource = databricks.AccountSettingV2("accountSettingV2Resource",
        aibi_dashboard_embedding_access_policy={
            "access_policy_type": "string",
        },
        aibi_dashboard_embedding_approved_domains={
            "approved_domains": ["string"],
        },
        automatic_cluster_update_workspace={
            "can_toggle": False,
            "enabled": False,
            "enablement_details": {
                "forced_for_compliance_mode": False,
                "unavailable_for_disabled_entitlement": False,
                "unavailable_for_non_enterprise_tier": False,
            },
            "maintenance_window": {
                "week_day_based_schedule": {
                    "day_of_week": "string",
                    "frequency": "string",
                    "window_start_time": {
                        "hours": 0,
                        "minutes": 0,
                    },
                },
            },
            "restart_even_if_no_updates_available": False,
        },
        boolean_val={
            "value": False,
        },
        effective_aibi_dashboard_embedding_access_policy={
            "access_policy_type": "string",
        },
        effective_aibi_dashboard_embedding_approved_domains={
            "approved_domains": ["string"],
        },
        effective_automatic_cluster_update_workspace={
            "can_toggle": False,
            "enabled": False,
            "enablement_details": {
                "forced_for_compliance_mode": False,
                "unavailable_for_disabled_entitlement": False,
                "unavailable_for_non_enterprise_tier": False,
            },
            "maintenance_window": {
                "week_day_based_schedule": {
                    "day_of_week": "string",
                    "frequency": "string",
                    "window_start_time": {
                        "hours": 0,
                        "minutes": 0,
                    },
                },
            },
            "restart_even_if_no_updates_available": False,
        },
        effective_personal_compute={
            "value": "string",
        },
        effective_restrict_workspace_admins={
            "status": "string",
        },
        integer_val={
            "value": 0,
        },
        name="string",
        personal_compute={
            "value": "string",
        },
        restrict_workspace_admins={
            "status": "string",
        },
        string_val={
            "value": "string",
        })
    
    const accountSettingV2Resource = new databricks.AccountSettingV2("accountSettingV2Resource", {
        aibiDashboardEmbeddingAccessPolicy: {
            accessPolicyType: "string",
        },
        aibiDashboardEmbeddingApprovedDomains: {
            approvedDomains: ["string"],
        },
        automaticClusterUpdateWorkspace: {
            canToggle: false,
            enabled: false,
            enablementDetails: {
                forcedForComplianceMode: false,
                unavailableForDisabledEntitlement: false,
                unavailableForNonEnterpriseTier: false,
            },
            maintenanceWindow: {
                weekDayBasedSchedule: {
                    dayOfWeek: "string",
                    frequency: "string",
                    windowStartTime: {
                        hours: 0,
                        minutes: 0,
                    },
                },
            },
            restartEvenIfNoUpdatesAvailable: false,
        },
        booleanVal: {
            value: false,
        },
        effectiveAibiDashboardEmbeddingAccessPolicy: {
            accessPolicyType: "string",
        },
        effectiveAibiDashboardEmbeddingApprovedDomains: {
            approvedDomains: ["string"],
        },
        effectiveAutomaticClusterUpdateWorkspace: {
            canToggle: false,
            enabled: false,
            enablementDetails: {
                forcedForComplianceMode: false,
                unavailableForDisabledEntitlement: false,
                unavailableForNonEnterpriseTier: false,
            },
            maintenanceWindow: {
                weekDayBasedSchedule: {
                    dayOfWeek: "string",
                    frequency: "string",
                    windowStartTime: {
                        hours: 0,
                        minutes: 0,
                    },
                },
            },
            restartEvenIfNoUpdatesAvailable: false,
        },
        effectivePersonalCompute: {
            value: "string",
        },
        effectiveRestrictWorkspaceAdmins: {
            status: "string",
        },
        integerVal: {
            value: 0,
        },
        name: "string",
        personalCompute: {
            value: "string",
        },
        restrictWorkspaceAdmins: {
            status: "string",
        },
        stringVal: {
            value: "string",
        },
    });
    
    type: databricks:AccountSettingV2
    properties:
        aibiDashboardEmbeddingAccessPolicy:
            accessPolicyType: string
        aibiDashboardEmbeddingApprovedDomains:
            approvedDomains:
                - string
        automaticClusterUpdateWorkspace:
            canToggle: false
            enabled: false
            enablementDetails:
                forcedForComplianceMode: false
                unavailableForDisabledEntitlement: false
                unavailableForNonEnterpriseTier: false
            maintenanceWindow:
                weekDayBasedSchedule:
                    dayOfWeek: string
                    frequency: string
                    windowStartTime:
                        hours: 0
                        minutes: 0
            restartEvenIfNoUpdatesAvailable: false
        booleanVal:
            value: false
        effectiveAibiDashboardEmbeddingAccessPolicy:
            accessPolicyType: string
        effectiveAibiDashboardEmbeddingApprovedDomains:
            approvedDomains:
                - string
        effectiveAutomaticClusterUpdateWorkspace:
            canToggle: false
            enabled: false
            enablementDetails:
                forcedForComplianceMode: false
                unavailableForDisabledEntitlement: false
                unavailableForNonEnterpriseTier: false
            maintenanceWindow:
                weekDayBasedSchedule:
                    dayOfWeek: string
                    frequency: string
                    windowStartTime:
                        hours: 0
                        minutes: 0
            restartEvenIfNoUpdatesAvailable: false
        effectivePersonalCompute:
            value: string
        effectiveRestrictWorkspaceAdmins:
            status: string
        integerVal:
            value: 0
        name: string
        personalCompute:
            value: string
        restrictWorkspaceAdmins:
            status: string
        stringVal:
            value: string
    

    AccountSettingV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AccountSettingV2 resource accepts the following input properties:

    AibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    AibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    AutomaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    BooleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    EffectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    EffectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    EffectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    EffectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    EffectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    IntegerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    Name string
    Name of the setting
    PersonalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    RestrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    StringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    AibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    AibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    AutomaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspaceArgs
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    BooleanVal AccountSettingV2BooleanValArgs
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    EffectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    EffectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    EffectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    EffectivePersonalCompute AccountSettingV2EffectivePersonalComputeArgs
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    EffectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    IntegerVal AccountSettingV2IntegerValArgs
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    Name string
    Name of the setting
    PersonalCompute AccountSettingV2PersonalComputeArgs
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    RestrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdminsArgs
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    StringVal AccountSettingV2StringValArgs
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    integerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name String
    Name of the setting
    personalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    integerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name string
    Name of the setting
    personalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibi_dashboard_embedding_access_policy AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibi_dashboard_embedding_approved_domains AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automatic_cluster_update_workspace AccountSettingV2AutomaticClusterUpdateWorkspaceArgs
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    boolean_val AccountSettingV2BooleanValArgs
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effective_aibi_dashboard_embedding_access_policy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effective_aibi_dashboard_embedding_approved_domains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effective_automatic_cluster_update_workspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effective_personal_compute AccountSettingV2EffectivePersonalComputeArgs
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effective_restrict_workspace_admins AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    integer_val AccountSettingV2IntegerValArgs
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name str
    Name of the setting
    personal_compute AccountSettingV2PersonalComputeArgs
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrict_workspace_admins AccountSettingV2RestrictWorkspaceAdminsArgs
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    string_val AccountSettingV2StringValArgs
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy Property Map
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains Property Map
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace Property Map
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal Property Map
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy Property Map
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains Property Map
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace Property Map
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectivePersonalCompute Property Map
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins Property Map
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    integerVal Property Map
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name String
    Name of the setting
    personalCompute Property Map
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins Property Map
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal Property Map
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value

    Outputs

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

    EffectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    EffectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    EffectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    Id string
    The provider-assigned unique ID for this managed resource.
    EffectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    EffectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    EffectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    Id string
    The provider-assigned unique ID for this managed resource.
    effectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    id String
    The provider-assigned unique ID for this managed resource.
    effectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    id string
    The provider-assigned unique ID for this managed resource.
    effective_boolean_val AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effective_integer_val AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effective_string_val AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    id str
    The provider-assigned unique ID for this managed resource.
    effectiveBooleanVal Property Map
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal Property Map
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectiveStringVal Property Map
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AccountSettingV2 Resource

    Get an existing AccountSettingV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AccountSettingV2State, opts?: CustomResourceOptions): AccountSettingV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aibi_dashboard_embedding_access_policy: Optional[AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs] = None,
            aibi_dashboard_embedding_approved_domains: Optional[AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs] = None,
            automatic_cluster_update_workspace: Optional[AccountSettingV2AutomaticClusterUpdateWorkspaceArgs] = None,
            boolean_val: Optional[AccountSettingV2BooleanValArgs] = None,
            effective_aibi_dashboard_embedding_access_policy: Optional[AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs] = None,
            effective_aibi_dashboard_embedding_approved_domains: Optional[AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs] = None,
            effective_automatic_cluster_update_workspace: Optional[AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs] = None,
            effective_boolean_val: Optional[AccountSettingV2EffectiveBooleanValArgs] = None,
            effective_integer_val: Optional[AccountSettingV2EffectiveIntegerValArgs] = None,
            effective_personal_compute: Optional[AccountSettingV2EffectivePersonalComputeArgs] = None,
            effective_restrict_workspace_admins: Optional[AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs] = None,
            effective_string_val: Optional[AccountSettingV2EffectiveStringValArgs] = None,
            integer_val: Optional[AccountSettingV2IntegerValArgs] = None,
            name: Optional[str] = None,
            personal_compute: Optional[AccountSettingV2PersonalComputeArgs] = None,
            restrict_workspace_admins: Optional[AccountSettingV2RestrictWorkspaceAdminsArgs] = None,
            string_val: Optional[AccountSettingV2StringValArgs] = None) -> AccountSettingV2
    func GetAccountSettingV2(ctx *Context, name string, id IDInput, state *AccountSettingV2State, opts ...ResourceOption) (*AccountSettingV2, error)
    public static AccountSettingV2 Get(string name, Input<string> id, AccountSettingV2State? state, CustomResourceOptions? opts = null)
    public static AccountSettingV2 get(String name, Output<String> id, AccountSettingV2State state, CustomResourceOptions options)
    resources:  _:    type: databricks:AccountSettingV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    AibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    AutomaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    BooleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    EffectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    EffectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    EffectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    EffectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    EffectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    EffectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    EffectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    EffectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    IntegerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    Name string
    Name of the setting
    PersonalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    RestrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    StringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    AibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    AibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    AutomaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspaceArgs
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    BooleanVal AccountSettingV2BooleanValArgs
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    EffectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    EffectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    EffectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    EffectiveBooleanVal AccountSettingV2EffectiveBooleanValArgs
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    EffectiveIntegerVal AccountSettingV2EffectiveIntegerValArgs
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    EffectivePersonalCompute AccountSettingV2EffectivePersonalComputeArgs
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    EffectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    EffectiveStringVal AccountSettingV2EffectiveStringValArgs
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    IntegerVal AccountSettingV2IntegerValArgs
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    Name string
    Name of the setting
    PersonalCompute AccountSettingV2PersonalComputeArgs
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    RestrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdminsArgs
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    StringVal AccountSettingV2StringValArgs
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    effectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    integerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name String
    Name of the setting
    personalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy AccountSettingV2AibiDashboardEmbeddingAccessPolicy
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains AccountSettingV2AibiDashboardEmbeddingApprovedDomains
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace AccountSettingV2AutomaticClusterUpdateWorkspace
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal AccountSettingV2BooleanVal
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectiveBooleanVal AccountSettingV2EffectiveBooleanVal
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal AccountSettingV2EffectiveIntegerVal
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectivePersonalCompute AccountSettingV2EffectivePersonalCompute
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins AccountSettingV2EffectiveRestrictWorkspaceAdmins
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    effectiveStringVal AccountSettingV2EffectiveStringVal
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    integerVal AccountSettingV2IntegerVal
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name string
    Name of the setting
    personalCompute AccountSettingV2PersonalCompute
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins AccountSettingV2RestrictWorkspaceAdmins
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal AccountSettingV2StringVal
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibi_dashboard_embedding_access_policy AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibi_dashboard_embedding_approved_domains AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automatic_cluster_update_workspace AccountSettingV2AutomaticClusterUpdateWorkspaceArgs
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    boolean_val AccountSettingV2BooleanValArgs
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effective_aibi_dashboard_embedding_access_policy AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effective_aibi_dashboard_embedding_approved_domains AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effective_automatic_cluster_update_workspace AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effective_boolean_val AccountSettingV2EffectiveBooleanValArgs
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effective_integer_val AccountSettingV2EffectiveIntegerValArgs
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effective_personal_compute AccountSettingV2EffectivePersonalComputeArgs
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effective_restrict_workspace_admins AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    effective_string_val AccountSettingV2EffectiveStringValArgs
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    integer_val AccountSettingV2IntegerValArgs
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name str
    Name of the setting
    personal_compute AccountSettingV2PersonalComputeArgs
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrict_workspace_admins AccountSettingV2RestrictWorkspaceAdminsArgs
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    string_val AccountSettingV2StringValArgs
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value
    aibiDashboardEmbeddingAccessPolicy Property Map
    Setting value for aibi_dashboard_embedding_access_policy setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_access_policy for final setting value
    aibiDashboardEmbeddingApprovedDomains Property Map
    Setting value for aibi_dashboard_embedding_approved_domains setting. This is the setting value set by consumers, check effective_aibi_dashboard_embedding_approved_domains for final setting value
    automaticClusterUpdateWorkspace Property Map
    Setting value for automatic_cluster_update_workspace setting. This is the setting value set by consumers, check effective_automatic_cluster_update_workspace for final setting value
    booleanVal Property Map
    Setting value for boolean type setting. This is the setting value set by consumers, check effective_boolean_val for final setting value
    effectiveAibiDashboardEmbeddingAccessPolicy Property Map
    Effective setting value for aibi_dashboard_embedding_access_policy setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_access_policy
    effectiveAibiDashboardEmbeddingApprovedDomains Property Map
    Effective setting value for aibi_dashboard_embedding_approved_domains setting. This is the final effective value of setting. To set a value use aibi_dashboard_embedding_approved_domains
    effectiveAutomaticClusterUpdateWorkspace Property Map
    Effective setting value for automatic_cluster_update_workspace setting. This is the final effective value of setting. To set a value use automatic_cluster_update_workspace
    effectiveBooleanVal Property Map
    (BooleanMessage) - Effective setting value for boolean type setting. This is the final effective value of setting. To set a value use boolean_val
    effectiveIntegerVal Property Map
    (IntegerMessage) - Effective setting value for integer type setting. This is the final effective value of setting. To set a value use integer_val
    effectivePersonalCompute Property Map
    Effective setting value for personal_compute setting. This is the final effective value of setting. To set a value use personal_compute
    effectiveRestrictWorkspaceAdmins Property Map
    Effective setting value for restrict_workspace_admins setting. This is the final effective value of setting. To set a value use restrict_workspace_admins
    effectiveStringVal Property Map
    (StringMessage) - Effective setting value for string type setting. This is the final effective value of setting. To set a value use string_val
    integerVal Property Map
    Setting value for integer type setting. This is the setting value set by consumers, check effective_integer_val for final setting value
    name String
    Name of the setting
    personalCompute Property Map
    Setting value for personal_compute setting. This is the setting value set by consumers, check effective_personal_compute for final setting value
    restrictWorkspaceAdmins Property Map
    Setting value for restrict_workspace_admins setting. This is the setting value set by consumers, check effective_restrict_workspace_admins for final setting value
    stringVal Property Map
    Setting value for string type setting. This is the setting value set by consumers, check effective_string_val for final setting value

    Supporting Types

    AccountSettingV2AibiDashboardEmbeddingAccessPolicy, AccountSettingV2AibiDashboardEmbeddingAccessPolicyArgs

    AccessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    AccessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType String
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    access_policy_type str
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType String
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS

    AccountSettingV2AibiDashboardEmbeddingApprovedDomains, AccountSettingV2AibiDashboardEmbeddingApprovedDomainsArgs

    ApprovedDomains List<string>
    approvedDomains List<String>
    approved_domains Sequence[str]
    approvedDomains List<String>

    AccountSettingV2AutomaticClusterUpdateWorkspace, AccountSettingV2AutomaticClusterUpdateWorkspaceArgs

    AccountSettingV2AutomaticClusterUpdateWorkspaceEnablementDetails, AccountSettingV2AutomaticClusterUpdateWorkspaceEnablementDetailsArgs

    ForcedForComplianceMode bool
    The feature is force enabled if compliance mode is active
    UnavailableForDisabledEntitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    UnavailableForNonEnterpriseTier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    ForcedForComplianceMode bool
    The feature is force enabled if compliance mode is active
    UnavailableForDisabledEntitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    UnavailableForNonEnterpriseTier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode Boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement Boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier Boolean
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier boolean
    The feature is unavailable if the customer doesn't have enterprise tier
    forced_for_compliance_mode bool
    The feature is force enabled if compliance mode is active
    unavailable_for_disabled_entitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailable_for_non_enterprise_tier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode Boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement Boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier Boolean
    The feature is unavailable if the customer doesn't have enterprise tier

    AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindow, AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowArgs

    AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule, AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs

    DayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    Frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    WindowStartTime AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    DayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    Frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    WindowStartTime AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek String
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency String
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    day_of_week str
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency str
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    window_start_time AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek String
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency String
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime Property Map

    AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime, AccountSettingV2AutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs

    Hours int
    Minutes int
    Hours int
    Minutes int
    hours Integer
    minutes Integer
    hours number
    minutes number
    hours int
    minutes int
    hours Number
    minutes Number

    AccountSettingV2BooleanVal, AccountSettingV2BooleanValArgs

    Value bool
    Value bool
    value Boolean
    value boolean
    value bool
    value Boolean

    AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicy, AccountSettingV2EffectiveAibiDashboardEmbeddingAccessPolicyArgs

    AccessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    AccessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType String
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType string
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    access_policy_type str
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS
    accessPolicyType String
    Possible values are: ALLOW_ALL_DOMAINS, ALLOW_APPROVED_DOMAINS, DENY_ALL_DOMAINS

    AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomains, AccountSettingV2EffectiveAibiDashboardEmbeddingApprovedDomainsArgs

    ApprovedDomains List<string>
    approvedDomains List<String>
    approved_domains Sequence[str]
    approvedDomains List<String>

    AccountSettingV2EffectiveAutomaticClusterUpdateWorkspace, AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceArgs

    AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceEnablementDetails, AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceEnablementDetailsArgs

    ForcedForComplianceMode bool
    The feature is force enabled if compliance mode is active
    UnavailableForDisabledEntitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    UnavailableForNonEnterpriseTier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    ForcedForComplianceMode bool
    The feature is force enabled if compliance mode is active
    UnavailableForDisabledEntitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    UnavailableForNonEnterpriseTier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode Boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement Boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier Boolean
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier boolean
    The feature is unavailable if the customer doesn't have enterprise tier
    forced_for_compliance_mode bool
    The feature is force enabled if compliance mode is active
    unavailable_for_disabled_entitlement bool
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailable_for_non_enterprise_tier bool
    The feature is unavailable if the customer doesn't have enterprise tier
    forcedForComplianceMode Boolean
    The feature is force enabled if compliance mode is active
    unavailableForDisabledEntitlement Boolean
    The feature is unavailable if the corresponding entitlement disabled (see getShieldEntitlementEnable)
    unavailableForNonEnterpriseTier Boolean
    The feature is unavailable if the customer doesn't have enterprise tier

    AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindow, AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowArgs

    AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedSchedule, AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleArgs

    DayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    Frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    WindowStartTime AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    DayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    Frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    WindowStartTime AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek String
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency String
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek string
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency string
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    day_of_week str
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency str
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    window_start_time AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime
    dayOfWeek String
    Possible values are: FRIDAY, MONDAY, SATURDAY, SUNDAY, THURSDAY, TUESDAY, WEDNESDAY
    frequency String
    Possible values are: EVERY_WEEK, FIRST_AND_THIRD_OF_MONTH, FIRST_OF_MONTH, FOURTH_OF_MONTH, SECOND_AND_FOURTH_OF_MONTH, SECOND_OF_MONTH, THIRD_OF_MONTH
    windowStartTime Property Map

    AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTime, AccountSettingV2EffectiveAutomaticClusterUpdateWorkspaceMaintenanceWindowWeekDayBasedScheduleWindowStartTimeArgs

    Hours int
    Minutes int
    Hours int
    Minutes int
    hours Integer
    minutes Integer
    hours number
    minutes number
    hours int
    minutes int
    hours Number
    minutes Number

    AccountSettingV2EffectiveBooleanVal, AccountSettingV2EffectiveBooleanValArgs

    Value bool
    Value bool
    value Boolean
    value boolean
    value bool
    value Boolean

    AccountSettingV2EffectiveIntegerVal, AccountSettingV2EffectiveIntegerValArgs

    Value int
    Value int
    value Integer
    value number
    value int
    value Number

    AccountSettingV2EffectivePersonalCompute, AccountSettingV2EffectivePersonalComputeArgs

    Value string
    Value string
    value String
    value string
    value str
    value String

    AccountSettingV2EffectiveRestrictWorkspaceAdmins, AccountSettingV2EffectiveRestrictWorkspaceAdminsArgs

    Status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    Status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status String
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status str
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status String
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS

    AccountSettingV2EffectiveStringVal, AccountSettingV2EffectiveStringValArgs

    Value string
    Value string
    value String
    value string
    value str
    value String

    AccountSettingV2IntegerVal, AccountSettingV2IntegerValArgs

    Value int
    Value int
    value Integer
    value number
    value int
    value Number

    AccountSettingV2PersonalCompute, AccountSettingV2PersonalComputeArgs

    Value string
    Value string
    value String
    value string
    value str
    value String

    AccountSettingV2RestrictWorkspaceAdmins, AccountSettingV2RestrictWorkspaceAdminsArgs

    Status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    Status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status String
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status string
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status str
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS
    status String
    Possible values are: ALLOW_ALL, RESTRICT_TOKENS_AND_JOB_RUN_AS

    AccountSettingV2StringVal, AccountSettingV2StringValArgs

    Value string
    Value string
    value String
    value string
    value str
    value String

    Import

    As of Pulumi v1.5, resources can be imported through configuration.

    hcl

    import {

    id = “name”

    to = databricks_account_setting_v2.this

    }

    If you are using an older version of Pulumi, import the resource using the pulumi import command as follows:

    $ pulumi import databricks:index/accountSettingV2:AccountSettingV2 this "name"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate