1. Packages
  2. Packages
  3. Databricks Provider
  4. API Docs
  5. getAccountNetworkPolicies
Viewing docs for Databricks v1.94.0
published on Friday, May 29, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.94.0
published on Friday, May 29, 2026 by Pulumi

    GA

    This data source can be used to fetch the list of network policies.

    Note This data source can only be used with an account-level provider!

    Example Usage

    Getting a list of all network policies:

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const all = databricks.getAccountNetworkPolicies({});
    
    import pulumi
    import pulumi_databricks as databricks
    
    all = databricks.get_account_network_policies()
    
    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.GetAccountNetworkPolicies(ctx, map[string]interface{}{}, nil)
    		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 all = Databricks.GetAccountNetworkPolicies.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.DatabricksFunctions;
    import java.util.ArrayList;
    import java.util.Arrays;
    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) {
            final var all = DatabricksFunctions.getAccountNetworkPolicies(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
    
        }
    }
    
    variables:
      all:
        fn::invoke:
          function: databricks:getAccountNetworkPolicies
          arguments: {}
    
    pulumi {
      required_providers {
        databricks = {
          source = "pulumi/databricks"
        }
      }
    }
    
    data "databricks_getaccountnetworkpolicies" "all" {
    }
    

    Using getAccountNetworkPolicies

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getAccountNetworkPolicies(opts?: InvokeOptions): Promise<GetAccountNetworkPoliciesResult>
    function getAccountNetworkPoliciesOutput(opts?: InvokeOptions): Output<GetAccountNetworkPoliciesResult>
    def get_account_network_policies(opts: Optional[InvokeOptions] = None) -> GetAccountNetworkPoliciesResult
    def get_account_network_policies_output(opts: Optional[InvokeOptions] = None) -> Output[GetAccountNetworkPoliciesResult]
    func GetAccountNetworkPolicies(ctx *Context, opts ...InvokeOption) (*GetAccountNetworkPoliciesResult, error)
    func GetAccountNetworkPoliciesOutput(ctx *Context, opts ...InvokeOption) GetAccountNetworkPoliciesResultOutput

    > Note: This function is named GetAccountNetworkPolicies in the Go SDK.

    public static class GetAccountNetworkPolicies 
    {
        public static Task<GetAccountNetworkPoliciesResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetAccountNetworkPoliciesResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAccountNetworkPoliciesResult> getAccountNetworkPolicies(InvokeOptions options)
    public static Output<GetAccountNetworkPoliciesResult> getAccountNetworkPolicies(InvokeOptions options)
    
    fn::invoke:
      function: databricks:index/getAccountNetworkPolicies:getAccountNetworkPolicies
      arguments:
        # arguments dictionary
    data "databricks_getaccountnetworkpolicies" "name" {
        # arguments
    }

    getAccountNetworkPolicies Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetAccountNetworkPoliciesItem>
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetAccountNetworkPoliciesItem
    id string
    The provider-assigned unique ID for this managed resource.
    items list(object)
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetAccountNetworkPoliciesItem>
    id string
    The provider-assigned unique ID for this managed resource.
    items GetAccountNetworkPoliciesItem[]
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetAccountNetworkPoliciesItem]
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>

    Supporting Types

    GetAccountNetworkPoliciesItem

    AccountId string
    (string) - The associated account ID for this Network Policy object
    Egress GetAccountNetworkPoliciesItemEgress
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    Ingress GetAccountNetworkPoliciesItemIngress
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    IngressDryRun GetAccountNetworkPoliciesItemIngressDryRun
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    NetworkPolicyId string
    (string) - The unique identifier for the network policy
    AccountId string
    (string) - The associated account ID for this Network Policy object
    Egress GetAccountNetworkPoliciesItemEgress
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    Ingress GetAccountNetworkPoliciesItemIngress
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    IngressDryRun GetAccountNetworkPoliciesItemIngressDryRun
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    NetworkPolicyId string
    (string) - The unique identifier for the network policy
    account_id string
    (string) - The associated account ID for this Network Policy object
    egress object
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    ingress object
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    ingress_dry_run object
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    network_policy_id string
    (string) - The unique identifier for the network policy
    accountId String
    (string) - The associated account ID for this Network Policy object
    egress GetAccountNetworkPoliciesItemEgress
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    ingress GetAccountNetworkPoliciesItemIngress
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    ingressDryRun GetAccountNetworkPoliciesItemIngressDryRun
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    networkPolicyId String
    (string) - The unique identifier for the network policy
    accountId string
    (string) - The associated account ID for this Network Policy object
    egress GetAccountNetworkPoliciesItemEgress
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    ingress GetAccountNetworkPoliciesItemIngress
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    ingressDryRun GetAccountNetworkPoliciesItemIngressDryRun
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    networkPolicyId string
    (string) - The unique identifier for the network policy
    account_id str
    (string) - The associated account ID for this Network Policy object
    egress GetAccountNetworkPoliciesItemEgress
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    ingress GetAccountNetworkPoliciesItemIngress
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    ingress_dry_run GetAccountNetworkPoliciesItemIngressDryRun
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    network_policy_id str
    (string) - The unique identifier for the network policy
    accountId String
    (string) - The associated account ID for this Network Policy object
    egress Property Map
    (NetworkPolicyEgress) - The network policies applying for egress traffic
    ingress Property Map
    (CustomerFacingIngressNetworkPolicy) - The network policies applying for ingress traffic
    ingressDryRun Property Map
    (CustomerFacingIngressNetworkPolicy) - The ingress policy for dry run mode. Dry run will always run even if the request is allowed by the ingress policy. When this field is set, the policy will be evaluated and emit logs only without blocking requests
    networkPolicyId String
    (string) - The unique identifier for the network policy

    GetAccountNetworkPoliciesItemEgress

    NetworkAccess GetAccountNetworkPoliciesItemEgressNetworkAccess
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    NetworkAccess GetAccountNetworkPoliciesItemEgressNetworkAccess
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    network_access object
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    networkAccess GetAccountNetworkPoliciesItemEgressNetworkAccess
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    networkAccess GetAccountNetworkPoliciesItemEgressNetworkAccess
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    network_access GetAccountNetworkPoliciesItemEgressNetworkAccess
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet
    networkAccess Property Map
    (EgressNetworkPolicyNetworkAccessPolicy) - The access policy enforced for egress traffic to the internet

    GetAccountNetworkPoliciesItemEgressNetworkAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowedInternetDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    AllowedStorageDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    BlockedInternetDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    PolicyEnforcement GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowedInternetDestinations []GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    AllowedStorageDestinations []GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    BlockedInternetDestinations []GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    PolicyEnforcement GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowed_internet_destinations list(object)
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    allowed_storage_destinations list(object)
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    blocked_internet_destinations list(object)
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    policy_enforcement object
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowedInternetDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    allowedStorageDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    blockedInternetDestinations List<GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    policyEnforcement GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowedInternetDestinations GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination[]
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    allowedStorageDestinations GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination[]
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    blockedInternetDestinations GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination[]
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    policyEnforcement GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowed_internet_destinations Sequence[GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination]
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    allowed_storage_destinations Sequence[GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination]
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    blocked_internet_destinations Sequence[GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination]
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    policy_enforcement GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowedInternetDestinations List<Property Map>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    allowedStorageDestinations List<Property Map>
    (list of EgressNetworkPolicyNetworkAccessPolicyStorageDestination) - List of storage destinations that serverless workloads are allowed to access when in RESTRICTED_ACCESS mode
    blockedInternetDestinations List<Property Map>
    (list of EgressNetworkPolicyNetworkAccessPolicyInternetDestination) - List of internet destinations that serverless workloads are blocked from accessing. These destinations are enforced when restriction mode is RESTRICTED_ACCESS or DRY_RUN. Currently supports DNS_NAME type only; IP_RANGE support is planned
    policyEnforcement Property Map
    (EgressNetworkPolicyNetworkAccessPolicyPolicyEnforcement) - Optional. When policyEnforcement is not provided, we default to ENFORCE_MODE_ALL_SERVICES

    GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedInternetDestination

    Destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    InternetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    Destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    InternetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internet_destination_type string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination String
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType String
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination str
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internet_destination_type str
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination String
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType String
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME

    GetAccountNetworkPoliciesItemEgressNetworkAccessAllowedStorageDestination

    AzureStorageAccount string
    (string) - The Azure storage account name
    AzureStorageService string
    (string) - The Azure storage service type (blob, dfs, etc.)
    BucketName string
    (string)
    Region string
    (string)
    StorageDestinationType string
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    AzureStorageAccount string
    (string) - The Azure storage account name
    AzureStorageService string
    (string) - The Azure storage service type (blob, dfs, etc.)
    BucketName string
    (string)
    Region string
    (string)
    StorageDestinationType string
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    azure_storage_account string
    (string) - The Azure storage account name
    azure_storage_service string
    (string) - The Azure storage service type (blob, dfs, etc.)
    bucket_name string
    (string)
    region string
    (string)
    storage_destination_type string
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    azureStorageAccount String
    (string) - The Azure storage account name
    azureStorageService String
    (string) - The Azure storage service type (blob, dfs, etc.)
    bucketName String
    (string)
    region String
    (string)
    storageDestinationType String
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    azureStorageAccount string
    (string) - The Azure storage account name
    azureStorageService string
    (string) - The Azure storage service type (blob, dfs, etc.)
    bucketName string
    (string)
    region string
    (string)
    storageDestinationType string
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    azure_storage_account str
    (string) - The Azure storage account name
    azure_storage_service str
    (string) - The Azure storage service type (blob, dfs, etc.)
    bucket_name str
    (string)
    region str
    (string)
    storage_destination_type str
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE
    azureStorageAccount String
    (string) - The Azure storage account name
    azureStorageService String
    (string) - The Azure storage service type (blob, dfs, etc.)
    bucketName String
    (string)
    region String
    (string)
    storageDestinationType String
    (string) - The type of storage destination. Possible values are: AWS_S3, AZURE_STORAGE, GOOGLE_CLOUD_STORAGE

    GetAccountNetworkPoliciesItemEgressNetworkAccessBlockedInternetDestination

    Destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    InternetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    Destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    InternetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internet_destination_type string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination String
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType String
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination string
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType string
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination str
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internet_destination_type str
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME
    destination String
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    internetDestinationType String
    (string) - The type of internet destination. Currently only DNS_NAME is supported. Possible values are: DNS_NAME

    GetAccountNetworkPoliciesItemEgressNetworkAccessPolicyEnforcement

    DryRunModeProductFilters List<string>
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    EnforcementMode string
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    DryRunModeProductFilters []string
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    EnforcementMode string
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    dry_run_mode_product_filters list(string)
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    enforcement_mode string
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    dryRunModeProductFilters List<String>
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    enforcementMode String
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    dryRunModeProductFilters string[]
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    enforcementMode string
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    dry_run_mode_product_filters Sequence[str]
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    enforcement_mode str
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED
    dryRunModeProductFilters List<String>
    (list of string) - When empty, it means dry run for all products. When non-empty, it means dry run for specific products and for the other products, they will run in enforced mode
    enforcementMode String
    (string) - The mode of policy enforcement. ENFORCED blocks traffic that violates policy, while DRY_RUN only logs violations without blocking. When not specified, defaults to ENFORCED. Possible values are: DRY_RUN, ENFORCED

    GetAccountNetworkPoliciesItemIngress

    CrossWorkspaceAccess GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    PrivateAccess GetAccountNetworkPoliciesItemIngressPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    PublicAccess GetAccountNetworkPoliciesItemIngressPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    CrossWorkspaceAccess GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    PrivateAccess GetAccountNetworkPoliciesItemIngressPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    PublicAccess GetAccountNetworkPoliciesItemIngressPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    cross_workspace_access object
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    private_access object
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    public_access object
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess GetAccountNetworkPoliciesItemIngressPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess GetAccountNetworkPoliciesItemIngressPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess GetAccountNetworkPoliciesItemIngressPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess GetAccountNetworkPoliciesItemIngressPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    cross_workspace_access GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    private_access GetAccountNetworkPoliciesItemIngressPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    public_access GetAccountNetworkPoliciesItemIngressPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess Property Map
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess Property Map
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess Property Map
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOrigin

    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces object
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces

    WorkspaceIds List<int>
    (list of integer)
    WorkspaceIds []int
    (list of integer)
    workspace_ids list(number)
    (list of integer)
    workspaceIds List<Integer>
    (list of integer)
    workspaceIds number[]
    (list of integer)
    workspace_ids Sequence[int]
    (list of integer)
    workspaceIds List<Number>
    (list of integer)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOrigin

    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces object
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match

    GetAccountNetworkPoliciesItemIngressCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces

    WorkspaceIds List<int>
    (list of integer)
    WorkspaceIds []int
    (list of integer)
    workspace_ids list(number)
    (list of integer)
    workspaceIds List<Integer>
    (list of integer)
    workspaceIds number[]
    (list of integer)
    workspace_ids Sequence[int]
    (list of integer)
    workspaceIds List<Number>
    (list of integer)

    GetAccountNetworkPoliciesItemIngressDryRun

    CrossWorkspaceAccess GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    PrivateAccess GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    PublicAccess GetAccountNetworkPoliciesItemIngressDryRunPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    CrossWorkspaceAccess GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    PrivateAccess GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    PublicAccess GetAccountNetworkPoliciesItemIngressDryRunPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    cross_workspace_access object
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    private_access object
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    public_access object
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess GetAccountNetworkPoliciesItemIngressDryRunPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess GetAccountNetworkPoliciesItemIngressDryRunPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    cross_workspace_access GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    private_access GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    public_access GetAccountNetworkPoliciesItemIngressDryRunPublicAccess
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access
    crossWorkspaceAccess Property Map
    (CustomerFacingIngressNetworkPolicyCrossWorkspaceAccess)
    privateAccess Property Map
    (CustomerFacingIngressNetworkPolicyPrivateAccess) - The network policy restrictions for private access to the workspace. Configures how registered private endpoints are allowed or denied access
    publicAccess Property Map
    (CustomerFacingIngressNetworkPolicyPublicAccess) - The network policy restrictions for public access to the workspace. Configures how public internet traffic is allowed or denied access

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOrigin

    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces object
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessAllowRuleOriginSelectedWorkspaces

    WorkspaceIds List<int>
    (list of integer)
    WorkspaceIds []int
    (list of integer)
    workspace_ids list(number)
    (list of integer)
    workspaceIds List<Integer>
    (list of integer)
    workspaceIds number[]
    (list of integer)
    workspace_ids Sequence[int]
    (list of integer)
    workspaceIds List<Number>
    (list of integer)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOrigin

    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    AllSourceWorkspaces bool
    (boolean) - Matches all source workspaces
    SelectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces object
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    all_source_workspaces bool
    (boolean) - Matches all source workspaces
    selected_workspaces GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match
    allSourceWorkspaces Boolean
    (boolean) - Matches all source workspaces
    selectedWorkspaces Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceIdList) - Specific source workspace IDs to match

    GetAccountNetworkPoliciesItemIngressDryRunCrossWorkspaceAccessDenyRuleOriginSelectedWorkspaces

    WorkspaceIds List<int>
    (list of integer)
    WorkspaceIds []int
    (list of integer)
    workspace_ids list(number)
    (list of integer)
    workspaceIds List<Integer>
    (list of integer)
    workspaceIds number[]
    (list of integer)
    workspace_ids Sequence[int]
    (list of integer)
    workspaceIds List<Number>
    (list of integer)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOrigin

    all_private_access bool
    (boolean)
    all_registered_endpoints bool
    (boolean)
    azure_workspace_private_link bool
    (boolean)
    endpoints object
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints Property Map
    (CustomerFacingIngressNetworkPolicyEndpoints)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessAllowRuleOriginEndpoints

    EndpointIds List<string>
    (list of string)
    EndpointIds []string
    (list of string)
    endpoint_ids list(string)
    (list of string)
    endpointIds List<String>
    (list of string)
    endpointIds string[]
    (list of string)
    endpoint_ids Sequence[str]
    (list of string)
    endpointIds List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOrigin

    all_private_access bool
    (boolean)
    all_registered_endpoints bool
    (boolean)
    azure_workspace_private_link bool
    (boolean)
    endpoints object
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints Property Map
    (CustomerFacingIngressNetworkPolicyEndpoints)

    GetAccountNetworkPoliciesItemIngressDryRunPrivateAccessDenyRuleOriginEndpoints

    EndpointIds List<string>
    (list of string)
    EndpointIds []string
    (list of string)
    endpoint_ids list(string)
    (list of string)
    endpointIds List<String>
    (list of string)
    endpointIds string[]
    (list of string)
    endpoint_ids Sequence[str]
    (list of string)
    endpointIds List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOrigin

    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginExcludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessAllowRuleOriginIncludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOrigin

    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginExcludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressDryRunPublicAccessDenyRuleOriginIncludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressPrivateAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOrigin

    all_private_access bool
    (boolean)
    all_registered_endpoints bool
    (boolean)
    azure_workspace_private_link bool
    (boolean)
    endpoints object
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOriginEndpoints
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess boolean
    (boolean)
    allRegisteredEndpoints boolean
    (boolean)
    azureWorkspacePrivateLink boolean
    (boolean)
    endpoints GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOriginEndpoints
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints Property Map
    (CustomerFacingIngressNetworkPolicyEndpoints)

    GetAccountNetworkPoliciesItemIngressPrivateAccessAllowRuleOriginEndpoints

    EndpointIds List<string>
    (list of string)
    EndpointIds []string
    (list of string)
    endpoint_ids list(string)
    (list of string)
    endpointIds List<String>
    (list of string)
    endpointIds string[]
    (list of string)
    endpoint_ids Sequence[str]
    (list of string)
    endpointIds List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOrigin

    all_private_access bool
    (boolean)
    all_registered_endpoints bool
    (boolean)
    azure_workspace_private_link bool
    (boolean)
    endpoints object
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOriginEndpoints
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess boolean
    (boolean)
    allRegisteredEndpoints boolean
    (boolean)
    azureWorkspacePrivateLink boolean
    (boolean)
    endpoints GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOriginEndpoints
    (CustomerFacingIngressNetworkPolicyEndpoints)
    allPrivateAccess Boolean
    (boolean)
    allRegisteredEndpoints Boolean
    (boolean)
    azureWorkspacePrivateLink Boolean
    (boolean)
    endpoints Property Map
    (CustomerFacingIngressNetworkPolicyEndpoints)

    GetAccountNetworkPoliciesItemIngressPrivateAccessDenyRuleOriginEndpoints

    EndpointIds List<string>
    (list of string)
    EndpointIds []string
    (list of string)
    endpoint_ids list(string)
    (list of string)
    endpointIds List<String>
    (list of string)
    endpointIds string[]
    (list of string)
    endpoint_ids Sequence[str]
    (list of string)
    endpointIds List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPublicAccess

    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules List<GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules List<GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    RestrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    AllowRules []GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    DenyRules []GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules list(object)
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode string
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule[]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restriction_mode str
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allow_rules Sequence[GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    deny_rules Sequence[GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule]
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    restrictionMode String
    (string) - The restriction mode that controls how serverless workloads can access the internet. Possible values are: FULL_ACCESS, RESTRICTED_ACCESS
    allowRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)
    denyRules List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyPublicIngressRule)

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRule

    Authentication GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOrigin

    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginExcludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressPublicAccessAllowRuleOriginIncludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRule

    Authentication GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    Authentication GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    Destination GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    Label string
    (string) - The label for this ingress rule
    Origin GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication object
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination object
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin object
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label string
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label str
    (string) - The label for this ingress rule
    origin GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)
    authentication Property Map
    (CustomerFacingIngressNetworkPolicyAuthentication)
    destination Property Map
    (string) - The internet destination to which access will be allowed. Format dependent on the destination type
    label String
    (string) - The label for this ingress rule
    origin Property Map
    (CustomerFacingIngressNetworkPolicyPublicRequestOrigin)

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthentication

    Identities List<GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    Identities []GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    IdentityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities list(object)
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity[]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType string
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities Sequence[GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity]
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identity_type str
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES
    identities List<Property Map>
    (list of CustomerFacingIngressNetworkPolicyAuthenticationIdentity) - Valid only when IdentityType is IDENTITY_TYPE_SELECTED_IDENTITIES
    identityType String
    (string) - Possible values are: IDENTITY_TYPE_ALL_SERVICE_PRINCIPALS, IDENTITY_TYPE_ALL_USERS, IDENTITY_TYPE_SELECTED_IDENTITIES

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleAuthenticationIdentity

    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    PrincipalId int
    (integer)
    PrincipalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id number
    (integer)
    principal_type string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Integer
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId number
    (integer)
    principalType string
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principal_id int
    (integer)
    principal_type str
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER
    principalId Number
    (integer)
    principalType String
    (string) - Possible values are: PRINCIPAL_TYPE_SERVICE_PRINCIPAL, PRINCIPAL_TYPE_USER

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestination

    AccountApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    AccountApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    AccountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    AccountUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    AllDestinations bool
    (boolean) - Must be set to true
    AppsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    LakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    WorkspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    WorkspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api object
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one object
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui object
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime object
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime object
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api object
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui object
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations boolean
    (boolean) - Must be set to true
    appsRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    account_api GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    account_databricks_one GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    account_ui GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    all_destinations bool
    (boolean) - Must be set to true
    apps_runtime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebase_runtime GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspace_api GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspace_ui GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)
    accountApi Property Map
    (CustomerFacingIngressNetworkPolicyAccountApiDestination)
    accountDatabricksOne Property Map
    (CustomerFacingIngressNetworkPolicyAccountDatabricksOneDestination)
    accountUi Property Map
    (CustomerFacingIngressNetworkPolicyAccountUiDestination)
    allDestinations Boolean
    (boolean) - Must be set to true
    appsRuntime Property Map
    (CustomerFacingIngressNetworkPolicyAppsRuntimeDestination)
    lakebaseRuntime Property Map
    (CustomerFacingIngressNetworkPolicyLakebaseRuntimeDestination)
    workspaceApi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceApiDestination)
    workspaceUi Property Map
    (CustomerFacingIngressNetworkPolicyWorkspaceUiDestination)

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountDatabricksOne

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAccountUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationAppsRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationLakebaseRuntime

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceApi

    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes List<string>
    (list of string)
    ScopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    Scopes []string
    (list of string)
    scope_qualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes list(string)
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)
    scopeQualifier string
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes string[]
    (list of string)
    scope_qualifier str
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes Sequence[str]
    (list of string)
    scopeQualifier String
    (string) - Qualifies the breadth of API access for the listed scopes. See ApiScopeQualifier. Possible values are: API_SCOPE_QUALIFIER_ALL, API_SCOPE_QUALIFIER_READ
    scopes List<String>
    (list of string)

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleDestinationWorkspaceUi

    AllDestinations bool
    (boolean) - Must be set to true
    AllDestinations bool
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true
    allDestinations boolean
    (boolean) - Must be set to true
    all_destinations bool
    (boolean) - Must be set to true
    allDestinations Boolean
    (boolean) - Must be set to true

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOrigin

    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    AllIpRanges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    ExcludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    IncludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges object
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    all_ip_ranges bool
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excluded_ip_ranges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    included_ip_ranges GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs
    allIpRanges Boolean
    (boolean) - Matches all IPv4 and IPv6 ranges (both public and private)
    excludedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Excluded means: all public IP ranges except this one
    includedIpRanges Property Map
    (CustomerFacingIngressNetworkPolicyIpRanges) - Will not allow IP ranges with private IPs

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginExcludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    GetAccountNetworkPoliciesItemIngressPublicAccessDenyRuleOriginIncludedIpRanges

    IpRanges List<string>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    IpRanges []string
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges list(string)
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges string[]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ip_ranges Sequence[str]
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now
    ipRanges List<String>
    (list of string) - We only support IPv4 and IPv4 CIDR notation for now

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v1.94.0
    published on Friday, May 29, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial