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:
- Display
Name 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
- Azure
Private EndpointEndpoint Info Azure Private Endpoint Info - Info for an Azure private endpoint
- Display
Name 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
- Azure
Private EndpointEndpoint Info Azure Private Endpoint Info Args - Info for an Azure private endpoint
- display
Name 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
- azure
Private EndpointEndpoint Info Azure Private Endpoint Info - Info for an Azure private endpoint
- display
Name 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
- azure
Private EndpointEndpoint Info Azure Private Endpoint Info - 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_ Endpointendpoint_ info Azure Private Endpoint Info Args - Info for an Azure private endpoint
- display
Name 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
- azure
Private Property MapEndpoint Info - 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:
- Account
Id string - (string) - The Databricks Account in which the endpoint object exists
- Create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- Endpoint
Id 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 - Use
Case 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 string - (string) - The Databricks Account in which the endpoint object exists
- Create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- Endpoint
Id 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 - Use
Case 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 String - (string) - The Databricks Account in which the endpoint object exists
- create
Time String - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- endpoint
Id 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 - use
Case 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 string - (string) - The Databricks Account in which the endpoint object exists
- create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- endpoint
Id 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 - use
Case 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
- account
Id String - (string) - The Databricks Account in which the endpoint object exists
- create
Time String - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- endpoint
Id 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 - use
Case 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) -> Endpointfunc 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.
- Account
Id string - (string) - The Databricks Account in which the endpoint object exists
- Azure
Private EndpointEndpoint Info Azure Private Endpoint Info - Info for an Azure private endpoint
- Create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- Display
Name 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
- Endpoint
Id 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 - Use
Case 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 string - (string) - The Databricks Account in which the endpoint object exists
- Azure
Private EndpointEndpoint Info Azure Private Endpoint Info Args - Info for an Azure private endpoint
- Create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- Display
Name 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
- Endpoint
Id 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 - Use
Case 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 String - (string) - The Databricks Account in which the endpoint object exists
- azure
Private EndpointEndpoint Info Azure Private Endpoint Info - Info for an Azure private endpoint
- create
Time String - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- display
Name 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
- endpoint
Id 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 - use
Case 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 string - (string) - The Databricks Account in which the endpoint object exists
- azure
Private EndpointEndpoint Info Azure Private Endpoint Info - Info for an Azure private endpoint
- create
Time string - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- display
Name 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
- endpoint
Id 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 - use
Case 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_ Endpointendpoint_ info Azure Private Endpoint Info Args - 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
- account
Id String - (string) - The Databricks Account in which the endpoint object exists
- azure
Private Property MapEndpoint Info - Info for an Azure private endpoint
- create
Time String - (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
- display
Name 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
- endpoint
Id 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 - use
Case 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
- Private
Endpoint stringName - The name of the Private Endpoint in the Azure subscription
- Private
Endpoint stringResource Guid - 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 stringResource Id - (string) - The full resource ID of the Private Endpoint
- Private
Link stringService Id - (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
- Private
Endpoint stringName - The name of the Private Endpoint in the Azure subscription
- Private
Endpoint stringResource Guid - 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 stringResource Id - (string) - The full resource ID of the Private Endpoint
- Private
Link stringService Id - (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
- private
Endpoint StringName - The name of the Private Endpoint in the Azure subscription
- private
Endpoint StringResource Guid - 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 StringResource Id - (string) - The full resource ID of the Private Endpoint
- private
Link StringService Id - (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
- private
Endpoint stringName - The name of the Private Endpoint in the Azure subscription
- private
Endpoint stringResource Guid - 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 stringResource Id - (string) - The full resource ID of the Private Endpoint
- private
Link stringService Id - (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
- private_
endpoint_ strname - The name of the Private Endpoint in the Azure subscription
- private_
endpoint_ strresource_ guid - 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_ strresource_ id - (string) - The full resource ID of the Private Endpoint
- private_
link_ strservice_ id - (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
- private
Endpoint StringName - The name of the Private Endpoint in the Azure subscription
- private
Endpoint StringResource Guid - 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 StringResource Id - (string) - The full resource ID of the Private Endpoint
- private
Link StringService Id - (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
databricksTerraform Provider.
