1. Packages
  2. Databricks Provider
  3. API Docs
  4. getMwsNetworkConnectivityConfig
Databricks v1.63.0 published on Thursday, Mar 13, 2025 by Pulumi

databricks.getMwsNetworkConnectivityConfig

Explore with Pulumi AI

databricks logo
Databricks v1.63.0 published on Thursday, Mar 13, 2025 by Pulumi

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

    Retrieves information about databricks.MwsNetworkConnectivityConfig in Databricks Account.

    Example Usage

    Fetching information about a network connectivity configuration in Databricks Account

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = databricks.getMwsNetworkConnectivityConfig({
        name: "ncc",
    });
    export const config = _this;
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.get_mws_network_connectivity_config(name="ncc")
    pulumi.export("config", this)
    
    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 {
    		this, err := databricks.LookupMwsNetworkConnectivityConfig(ctx, &databricks.LookupMwsNetworkConnectivityConfigArgs{
    			Name: "ncc",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("config", this)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = Databricks.GetMwsNetworkConnectivityConfig.Invoke(new()
        {
            Name = "ncc",
        });
    
        return new Dictionary<string, object?>
        {
            ["config"] = @this,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.DatabricksFunctions;
    import com.pulumi.databricks.inputs.GetMwsNetworkConnectivityConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var this = DatabricksFunctions.getMwsNetworkConnectivityConfig(GetMwsNetworkConnectivityConfigArgs.builder()
                .name("ncc")
                .build());
    
            ctx.export("config", this_);
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: databricks:getMwsNetworkConnectivityConfig
          arguments:
            name: ncc
    outputs:
      config: ${this}
    

    The following resources are used in the same context:

    • databricks.getMwsNetworkConnectivityConfigs to get names of all network connectivity configurations.
    • databricks.MwsNetworkConnectivityConfig to manage network connectivity configuration.

    Using getMwsNetworkConnectivityConfig

    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 getMwsNetworkConnectivityConfig(args: GetMwsNetworkConnectivityConfigArgs, opts?: InvokeOptions): Promise<GetMwsNetworkConnectivityConfigResult>
    function getMwsNetworkConnectivityConfigOutput(args: GetMwsNetworkConnectivityConfigOutputArgs, opts?: InvokeOptions): Output<GetMwsNetworkConnectivityConfigResult>
    def get_mws_network_connectivity_config(account_id: Optional[str] = None,
                                            creation_time: Optional[int] = None,
                                            egress_config: Optional[GetMwsNetworkConnectivityConfigEgressConfig] = None,
                                            name: Optional[str] = None,
                                            network_connectivity_config_id: Optional[str] = None,
                                            region: Optional[str] = None,
                                            updated_time: Optional[int] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetMwsNetworkConnectivityConfigResult
    def get_mws_network_connectivity_config_output(account_id: Optional[pulumi.Input[str]] = None,
                                            creation_time: Optional[pulumi.Input[int]] = None,
                                            egress_config: Optional[pulumi.Input[GetMwsNetworkConnectivityConfigEgressConfigArgs]] = None,
                                            name: Optional[pulumi.Input[str]] = None,
                                            network_connectivity_config_id: Optional[pulumi.Input[str]] = None,
                                            region: Optional[pulumi.Input[str]] = None,
                                            updated_time: Optional[pulumi.Input[int]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetMwsNetworkConnectivityConfigResult]
    func LookupMwsNetworkConnectivityConfig(ctx *Context, args *LookupMwsNetworkConnectivityConfigArgs, opts ...InvokeOption) (*LookupMwsNetworkConnectivityConfigResult, error)
    func LookupMwsNetworkConnectivityConfigOutput(ctx *Context, args *LookupMwsNetworkConnectivityConfigOutputArgs, opts ...InvokeOption) LookupMwsNetworkConnectivityConfigResultOutput

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

    public static class GetMwsNetworkConnectivityConfig 
    {
        public static Task<GetMwsNetworkConnectivityConfigResult> InvokeAsync(GetMwsNetworkConnectivityConfigArgs args, InvokeOptions? opts = null)
        public static Output<GetMwsNetworkConnectivityConfigResult> Invoke(GetMwsNetworkConnectivityConfigInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMwsNetworkConnectivityConfigResult> getMwsNetworkConnectivityConfig(GetMwsNetworkConnectivityConfigArgs args, InvokeOptions options)
    public static Output<GetMwsNetworkConnectivityConfigResult> getMwsNetworkConnectivityConfig(GetMwsNetworkConnectivityConfigArgs args, InvokeOptions options)
    
    fn::invoke:
      function: databricks:index/getMwsNetworkConnectivityConfig:getMwsNetworkConnectivityConfig
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Name of the network connectivity configuration.
    AccountId string
    The Databricks account ID associated with this network configuration.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    EgressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    Region string
    The region of the network connectivity configuration.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    Name string
    Name of the network connectivity configuration.
    AccountId string
    The Databricks account ID associated with this network configuration.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    EgressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    Region string
    The region of the network connectivity configuration.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    name String
    Name of the network connectivity configuration.
    accountId String
    The Databricks account ID associated with this network configuration.
    creationTime Integer
    Time in epoch milliseconds when this object was created.
    egressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    region String
    The region of the network connectivity configuration.
    updatedTime Integer
    Time in epoch milliseconds when the network was updated.
    name string
    Name of the network connectivity configuration.
    accountId string
    The Databricks account ID associated with this network configuration.
    creationTime number
    Time in epoch milliseconds when this object was created.
    egressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    networkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    region string
    The region of the network connectivity configuration.
    updatedTime number
    Time in epoch milliseconds when the network was updated.
    name str
    Name of the network connectivity configuration.
    account_id str
    The Databricks account ID associated with this network configuration.
    creation_time int
    Time in epoch milliseconds when this object was created.
    egress_config GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    network_connectivity_config_id str
    The Databricks network connectivity configuration ID.
    region str
    The region of the network connectivity configuration.
    updated_time int
    Time in epoch milliseconds when the network was updated.
    name String
    Name of the network connectivity configuration.
    accountId String
    The Databricks account ID associated with this network configuration.
    creationTime Number
    Time in epoch milliseconds when this object was created.
    egressConfig Property Map
    Array of egress configuration objects.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    region String
    The region of the network connectivity configuration.
    updatedTime Number
    Time in epoch milliseconds when the network was updated.

    getMwsNetworkConnectivityConfig Result

    The following output properties are available:

    AccountId string
    The Databricks account ID associated with this network configuration.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    EgressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the network connectivity configuration.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    Region string
    The region of the network connectivity configuration.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    AccountId string
    The Databricks account ID associated with this network configuration.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    EgressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the network connectivity configuration.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    Region string
    The region of the network connectivity configuration.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    accountId String
    The Databricks account ID associated with this network configuration.
    creationTime Integer
    Time in epoch milliseconds when this object was created.
    egressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the network connectivity configuration.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    region String
    The region of the network connectivity configuration.
    updatedTime Integer
    Time in epoch milliseconds when the network was updated.
    accountId string
    The Databricks account ID associated with this network configuration.
    creationTime number
    Time in epoch milliseconds when this object was created.
    egressConfig GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the network connectivity configuration.
    networkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    region string
    The region of the network connectivity configuration.
    updatedTime number
    Time in epoch milliseconds when the network was updated.
    account_id str
    The Databricks account ID associated with this network configuration.
    creation_time int
    Time in epoch milliseconds when this object was created.
    egress_config GetMwsNetworkConnectivityConfigEgressConfig
    Array of egress configuration objects.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the network connectivity configuration.
    network_connectivity_config_id str
    The Databricks network connectivity configuration ID.
    region str
    The region of the network connectivity configuration.
    updated_time int
    Time in epoch milliseconds when the network was updated.
    accountId String
    The Databricks account ID associated with this network configuration.
    creationTime Number
    Time in epoch milliseconds when this object was created.
    egressConfig Property Map
    Array of egress configuration objects.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the network connectivity configuration.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    region String
    The region of the network connectivity configuration.
    updatedTime Number
    Time in epoch milliseconds when the network was updated.

    Supporting Types

    GetMwsNetworkConnectivityConfigEgressConfig

    defaultRules Property Map
    Array of default rules.
    targetRules Property Map
    Array of target rules.

    GetMwsNetworkConnectivityConfigEgressConfigDefaultRules

    AwsStableIpRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    AzureServiceEndpointRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule
    Array of Azure service endpoint rules.
    AwsStableIpRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    AzureServiceEndpointRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule
    Array of Azure service endpoint rules.
    awsStableIpRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    azureServiceEndpointRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule
    Array of Azure service endpoint rules.
    awsStableIpRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    azureServiceEndpointRule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule
    Array of Azure service endpoint rules.
    aws_stable_ip_rule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    azure_service_endpoint_rule GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule
    Array of Azure service endpoint rules.
    awsStableIpRule Property Map
    The stable AWS IP CIDR blocks. You can use these to configure the firewall of your resources to allow traffic from your Databricks workspace.
    azureServiceEndpointRule Property Map
    Array of Azure service endpoint rules.

    GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAwsStableIpRule

    CidrBlocks List<string>
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
    CidrBlocks []string
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
    cidrBlocks List<String>
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
    cidrBlocks string[]
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
    cidr_blocks Sequence[str]
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.
    cidrBlocks List<String>
    The list of stable IP CIDR blocks from which Databricks network traffic originates when accessing your resources.

    GetMwsNetworkConnectivityConfigEgressConfigDefaultRulesAzureServiceEndpointRule

    Subnets List<string>
    Array of strings representing the subnet IDs.
    TargetRegion string
    The target region for the service endpoint.
    TargetServices List<string>
    Array of target services.
    Subnets []string
    Array of strings representing the subnet IDs.
    TargetRegion string
    The target region for the service endpoint.
    TargetServices []string
    Array of target services.
    subnets List<String>
    Array of strings representing the subnet IDs.
    targetRegion String
    The target region for the service endpoint.
    targetServices List<String>
    Array of target services.
    subnets string[]
    Array of strings representing the subnet IDs.
    targetRegion string
    The target region for the service endpoint.
    targetServices string[]
    Array of target services.
    subnets Sequence[str]
    Array of strings representing the subnet IDs.
    target_region str
    The target region for the service endpoint.
    target_services Sequence[str]
    Array of target services.
    subnets List<String>
    Array of strings representing the subnet IDs.
    targetRegion String
    The target region for the service endpoint.
    targetServices List<String>
    Array of target services.

    GetMwsNetworkConnectivityConfigEgressConfigTargetRules

    azurePrivateEndpointRules List<Property Map>
    Array of private endpoint rule objects.

    GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivateEndpointRule

    ConnectionState string
    The current status of this private endpoint.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    Deactivated bool
    Whether this private endpoint is deactivated.
    DeactivatedAt int
    Time in epoch milliseconds when this object was deactivated.
    EndpointName string
    The name of the Azure private endpoint resource.
    GroupId string
    The sub-resource type (group ID) of the target resource.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    ResourceId string
    The Azure resource ID of the target resource.
    RuleId string
    The ID of a private endpoint rule.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    ConnectionState string
    The current status of this private endpoint.
    CreationTime int
    Time in epoch milliseconds when this object was created.
    Deactivated bool
    Whether this private endpoint is deactivated.
    DeactivatedAt int
    Time in epoch milliseconds when this object was deactivated.
    EndpointName string
    The name of the Azure private endpoint resource.
    GroupId string
    The sub-resource type (group ID) of the target resource.
    NetworkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    ResourceId string
    The Azure resource ID of the target resource.
    RuleId string
    The ID of a private endpoint rule.
    UpdatedTime int
    Time in epoch milliseconds when the network was updated.
    connectionState String
    The current status of this private endpoint.
    creationTime Integer
    Time in epoch milliseconds when this object was created.
    deactivated Boolean
    Whether this private endpoint is deactivated.
    deactivatedAt Integer
    Time in epoch milliseconds when this object was deactivated.
    endpointName String
    The name of the Azure private endpoint resource.
    groupId String
    The sub-resource type (group ID) of the target resource.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    resourceId String
    The Azure resource ID of the target resource.
    ruleId String
    The ID of a private endpoint rule.
    updatedTime Integer
    Time in epoch milliseconds when the network was updated.
    connectionState string
    The current status of this private endpoint.
    creationTime number
    Time in epoch milliseconds when this object was created.
    deactivated boolean
    Whether this private endpoint is deactivated.
    deactivatedAt number
    Time in epoch milliseconds when this object was deactivated.
    endpointName string
    The name of the Azure private endpoint resource.
    groupId string
    The sub-resource type (group ID) of the target resource.
    networkConnectivityConfigId string
    The Databricks network connectivity configuration ID.
    resourceId string
    The Azure resource ID of the target resource.
    ruleId string
    The ID of a private endpoint rule.
    updatedTime number
    Time in epoch milliseconds when the network was updated.
    connection_state str
    The current status of this private endpoint.
    creation_time int
    Time in epoch milliseconds when this object was created.
    deactivated bool
    Whether this private endpoint is deactivated.
    deactivated_at int
    Time in epoch milliseconds when this object was deactivated.
    endpoint_name str
    The name of the Azure private endpoint resource.
    group_id str
    The sub-resource type (group ID) of the target resource.
    network_connectivity_config_id str
    The Databricks network connectivity configuration ID.
    resource_id str
    The Azure resource ID of the target resource.
    rule_id str
    The ID of a private endpoint rule.
    updated_time int
    Time in epoch milliseconds when the network was updated.
    connectionState String
    The current status of this private endpoint.
    creationTime Number
    Time in epoch milliseconds when this object was created.
    deactivated Boolean
    Whether this private endpoint is deactivated.
    deactivatedAt Number
    Time in epoch milliseconds when this object was deactivated.
    endpointName String
    The name of the Azure private endpoint resource.
    groupId String
    The sub-resource type (group ID) of the target resource.
    networkConnectivityConfigId String
    The Databricks network connectivity configuration ID.
    resourceId String
    The Azure resource ID of the target resource.
    ruleId String
    The ID of a private endpoint rule.
    updatedTime Number
    Time in epoch milliseconds when the network was updated.

    Package Details

    Repository
    databricks pulumi/pulumi-databricks
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the databricks Terraform Provider.
    databricks logo
    Databricks v1.63.0 published on Thursday, Mar 13, 2025 by Pulumi