1. Packages
  2. Databricks Provider
  3. API Docs
  4. Endpoint
Databricks v1.86.0 published on Tuesday, Feb 17, 2026 by Pulumi
databricks logo
Databricks v1.86.0 published on Tuesday, Feb 17, 2026 by Pulumi

    Private Preview

    Endpoint resource manages network connectivity endpoints for private access to Databricks workspaces.

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

    Example Usage

    Example for Azure cloud

    This is an example for creating an endpoint in Azure cloud:

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const _this = new databricks.Endpoint("this", {
        accountId: "eae3abf6-1496-494e-9983-4660a5ad5aab",
        endpointName: "my-private-endpoint",
        region: "westus",
        azurePrivateEndpointInfo: {
            privateEndpointName: "my-pe",
            privateEndpointResourceGuid: "12345678-1234-1234-1234-123456789abc",
        },
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    this = databricks.Endpoint("this",
        account_id="eae3abf6-1496-494e-9983-4660a5ad5aab",
        endpoint_name="my-private-endpoint",
        region="westus",
        azure_private_endpoint_info={
            "private_endpoint_name": "my-pe",
            "private_endpoint_resource_guid": "12345678-1234-1234-1234-123456789abc",
        })
    
    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.NewEndpoint(ctx, "this", &databricks.EndpointArgs{
    			AccountId:    "eae3abf6-1496-494e-9983-4660a5ad5aab",
    			EndpointName: "my-private-endpoint",
    			Region:       pulumi.String("westus"),
    			AzurePrivateEndpointInfo: &databricks.EndpointAzurePrivateEndpointInfoArgs{
    				PrivateEndpointName:         pulumi.String("my-pe"),
    				PrivateEndpointResourceGuid: pulumi.String("12345678-1234-1234-1234-123456789abc"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Databricks = Pulumi.Databricks;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Databricks.Endpoint("this", new()
        {
            AccountId = "eae3abf6-1496-494e-9983-4660a5ad5aab",
            EndpointName = "my-private-endpoint",
            Region = "westus",
            AzurePrivateEndpointInfo = new Databricks.Inputs.EndpointAzurePrivateEndpointInfoArgs
            {
                PrivateEndpointName = "my-pe",
                PrivateEndpointResourceGuid = "12345678-1234-1234-1234-123456789abc",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.Endpoint;
    import com.pulumi.databricks.EndpointArgs;
    import com.pulumi.databricks.inputs.EndpointAzurePrivateEndpointInfoArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var this_ = new Endpoint("this", EndpointArgs.builder()
                .accountId("eae3abf6-1496-494e-9983-4660a5ad5aab")
                .endpointName("my-private-endpoint")
                .region("westus")
                .azurePrivateEndpointInfo(EndpointAzurePrivateEndpointInfoArgs.builder()
                    .privateEndpointName("my-pe")
                    .privateEndpointResourceGuid("12345678-1234-1234-1234-123456789abc")
                    .build())
                .build());
    
        }
    }
    
    resources:
      this:
        type: databricks:Endpoint
        properties:
          accountId: eae3abf6-1496-494e-9983-4660a5ad5aab
          endpointName: my-private-endpoint
          region: westus
          azurePrivateEndpointInfo:
            privateEndpointName: my-pe
            privateEndpointResourceGuid: 12345678-1234-1234-1234-123456789abc
    

    Create Endpoint Resource

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

    Constructor syntax

    new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);
    @overload
    def Endpoint(resource_name: str,
                 args: EndpointArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Endpoint(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 display_name: Optional[str] = None,
                 parent: Optional[str] = None,
                 region: Optional[str] = None,
                 azure_private_endpoint_info: Optional[EndpointAzurePrivateEndpointInfoArgs] = None)
    func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)
    public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
    public Endpoint(String name, EndpointArgs args)
    public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
    
    type: databricks:Endpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Constructor example

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

    var endpointResource = new Databricks.Endpoint("endpointResource", new()
    {
        DisplayName = "string",
        Parent = "string",
        Region = "string",
        AzurePrivateEndpointInfo = new Databricks.Inputs.EndpointAzurePrivateEndpointInfoArgs
        {
            PrivateEndpointName = "string",
            PrivateEndpointResourceGuid = "string",
            PrivateEndpointResourceId = "string",
            PrivateLinkServiceId = "string",
        },
    });
    
    example, err := databricks.NewEndpoint(ctx, "endpointResource", &databricks.EndpointArgs{
    	DisplayName: pulumi.String("string"),
    	Parent:      pulumi.String("string"),
    	Region:      pulumi.String("string"),
    	AzurePrivateEndpointInfo: &databricks.EndpointAzurePrivateEndpointInfoArgs{
    		PrivateEndpointName:         pulumi.String("string"),
    		PrivateEndpointResourceGuid: pulumi.String("string"),
    		PrivateEndpointResourceId:   pulumi.String("string"),
    		PrivateLinkServiceId:        pulumi.String("string"),
    	},
    })
    
    var endpointResource = new Endpoint("endpointResource", EndpointArgs.builder()
        .displayName("string")
        .parent("string")
        .region("string")
        .azurePrivateEndpointInfo(EndpointAzurePrivateEndpointInfoArgs.builder()
            .privateEndpointName("string")
            .privateEndpointResourceGuid("string")
            .privateEndpointResourceId("string")
            .privateLinkServiceId("string")
            .build())
        .build());
    
    endpoint_resource = databricks.Endpoint("endpointResource",
        display_name="string",
        parent="string",
        region="string",
        azure_private_endpoint_info={
            "private_endpoint_name": "string",
            "private_endpoint_resource_guid": "string",
            "private_endpoint_resource_id": "string",
            "private_link_service_id": "string",
        })
    
    const endpointResource = new databricks.Endpoint("endpointResource", {
        displayName: "string",
        parent: "string",
        region: "string",
        azurePrivateEndpointInfo: {
            privateEndpointName: "string",
            privateEndpointResourceGuid: "string",
            privateEndpointResourceId: "string",
            privateLinkServiceId: "string",
        },
    });
    
    type: databricks:Endpoint
    properties:
        azurePrivateEndpointInfo:
            privateEndpointName: string
            privateEndpointResourceGuid: string
            privateEndpointResourceId: string
            privateLinkServiceId: string
        displayName: string
        parent: string
        region: string
    

    Endpoint Resource Properties

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

    Inputs

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

    The Endpoint resource accepts the following input properties:

    DisplayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    Parent string
    Region string
    The cloud provider region where this endpoint is located
    AzurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    DisplayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    Parent string
    Region string
    The cloud provider region where this endpoint is located
    AzurePrivateEndpointInfo EndpointAzurePrivateEndpointInfoArgs
    Info for an Azure private endpoint
    displayName String
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    parent String
    region String
    The cloud provider region where this endpoint is located
    azurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    displayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    parent string
    region string
    The cloud provider region where this endpoint is located
    azurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    display_name str
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    parent str
    region str
    The cloud provider region where this endpoint is located
    azure_private_endpoint_info EndpointAzurePrivateEndpointInfoArgs
    Info for an Azure private endpoint
    displayName String
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    parent String
    region String
    The cloud provider region where this endpoint is located
    azurePrivateEndpointInfo Property Map
    Info for an Azure private endpoint

    Outputs

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

    AccountId string
    (string) - The Databricks Account in which the endpoint object exists
    CreateTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    EndpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    State string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    UseCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    AccountId string
    (string) - The Databricks Account in which the endpoint object exists
    CreateTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    EndpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    State string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    UseCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId String
    (string) - The Databricks Account in which the endpoint object exists
    createTime String
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    endpointId String
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    state String
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase String
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId string
    (string) - The Databricks Account in which the endpoint object exists
    createTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    endpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    state string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    account_id str
    (string) - The Databricks Account in which the endpoint object exists
    create_time str
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    endpoint_id str
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    state str
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    use_case str
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId String
    (string) - The Databricks Account in which the endpoint object exists
    createTime String
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    endpointId String
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    state String
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase String
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT

    Look up Existing Endpoint Resource

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

    public static get(name: string, id: Input<ID>, state?: EndpointState, opts?: CustomResourceOptions): Endpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            azure_private_endpoint_info: Optional[EndpointAzurePrivateEndpointInfoArgs] = None,
            create_time: Optional[str] = None,
            display_name: Optional[str] = None,
            endpoint_id: Optional[str] = None,
            name: Optional[str] = None,
            parent: Optional[str] = None,
            region: Optional[str] = None,
            state: Optional[str] = None,
            use_case: Optional[str] = None) -> Endpoint
    func GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)
    public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)
    public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)
    resources:  _:    type: databricks:Endpoint    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    (string) - The Databricks Account in which the endpoint object exists
    AzurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    CreateTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    DisplayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    EndpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    Name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    Parent string
    Region string
    The cloud provider region where this endpoint is located
    State string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    UseCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    AccountId string
    (string) - The Databricks Account in which the endpoint object exists
    AzurePrivateEndpointInfo EndpointAzurePrivateEndpointInfoArgs
    Info for an Azure private endpoint
    CreateTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    DisplayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    EndpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    Name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    Parent string
    Region string
    The cloud provider region where this endpoint is located
    State string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    UseCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId String
    (string) - The Databricks Account in which the endpoint object exists
    azurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    createTime String
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    displayName String
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    endpointId String
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    name String
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    parent String
    region String
    The cloud provider region where this endpoint is located
    state String
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase String
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId string
    (string) - The Databricks Account in which the endpoint object exists
    azurePrivateEndpointInfo EndpointAzurePrivateEndpointInfo
    Info for an Azure private endpoint
    createTime string
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    displayName string
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    endpointId string
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    name string
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    parent string
    region string
    The cloud provider region where this endpoint is located
    state string
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase string
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    account_id str
    (string) - The Databricks Account in which the endpoint object exists
    azure_private_endpoint_info EndpointAzurePrivateEndpointInfoArgs
    Info for an Azure private endpoint
    create_time str
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    display_name str
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    endpoint_id str
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    name str
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    parent str
    region str
    The cloud provider region where this endpoint is located
    state str
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    use_case str
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT
    accountId String
    (string) - The Databricks Account in which the endpoint object exists
    azurePrivateEndpointInfo Property Map
    Info for an Azure private endpoint
    createTime String
    (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
    displayName String
    The human-readable display name of this endpoint. The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens, with the first character a letter, the last a letter or a number, and a 63 character maximum
    endpointId String
    (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
    name String
    (string) - The resource name of the endpoint, which uniquely identifies the endpoint
    parent String
    region String
    The cloud provider region where this endpoint is located
    state String
    (string) - The state of the endpoint. The endpoint can only be used if the state is APPROVED. Possible values are: APPROVED, DISCONNECTED, FAILED, PENDING
    useCase String
    (string) - The use case that determines the type of network connectivity this endpoint provides. This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: SERVICE_DIRECT

    Supporting Types

    EndpointAzurePrivateEndpointInfo, EndpointAzurePrivateEndpointInfoArgs

    PrivateEndpointName string
    The name of the Private Endpoint in the Azure subscription
    PrivateEndpointResourceGuid string
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    PrivateEndpointResourceId string
    (string) - The full resource ID of the Private Endpoint
    PrivateLinkServiceId string
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
    PrivateEndpointName string
    The name of the Private Endpoint in the Azure subscription
    PrivateEndpointResourceGuid string
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    PrivateEndpointResourceId string
    (string) - The full resource ID of the Private Endpoint
    PrivateLinkServiceId string
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
    privateEndpointName String
    The name of the Private Endpoint in the Azure subscription
    privateEndpointResourceGuid String
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    privateEndpointResourceId String
    (string) - The full resource ID of the Private Endpoint
    privateLinkServiceId String
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
    privateEndpointName string
    The name of the Private Endpoint in the Azure subscription
    privateEndpointResourceGuid string
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    privateEndpointResourceId string
    (string) - The full resource ID of the Private Endpoint
    privateLinkServiceId string
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
    private_endpoint_name str
    The name of the Private Endpoint in the Azure subscription
    private_endpoint_resource_guid str
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    private_endpoint_resource_id str
    (string) - The full resource ID of the Private Endpoint
    private_link_service_id str
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
    privateEndpointName String
    The name of the Private Endpoint in the Azure subscription
    privateEndpointResourceGuid String
    The GUID of the Private Endpoint resource in the Azure subscription. This is assigned by Azure when the user sets up the Private Endpoint
    privateEndpointResourceId String
    (string) - The full resource ID of the Private Endpoint
    privateLinkServiceId String
    (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to

    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.86.0 published on Tuesday, Feb 17, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate