Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
This data source can be used to get the Request for Access (RFA) access request destinations for a specific securable object.
Example Usage
Referring to RFA access request destinations by securable type and full name:
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const customerDataSchema = databricks.getRfaAccessRequestDestinations({
securableType: "SCHEMA",
fullName: "main.customer_data",
});
import pulumi
import pulumi_databricks as databricks
customer_data_schema = databricks.get_rfa_access_request_destinations(securable_type="SCHEMA",
full_name="main.customer_data")
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.LookupRfaAccessRequestDestinations(ctx, &databricks.LookupRfaAccessRequestDestinationsArgs{
SecurableType: "SCHEMA",
FullName: "main.customer_data",
}, 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 customerDataSchema = Databricks.GetRfaAccessRequestDestinations.Invoke(new()
{
SecurableType = "SCHEMA",
FullName = "main.customer_data",
});
});
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.GetRfaAccessRequestDestinationsArgs;
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 customerDataSchema = DatabricksFunctions.getRfaAccessRequestDestinations(GetRfaAccessRequestDestinationsArgs.builder()
.securableType("SCHEMA")
.fullName("main.customer_data")
.build());
}
}
variables:
customerDataSchema:
fn::invoke:
function: databricks:getRfaAccessRequestDestinations
arguments:
securableType: SCHEMA
fullName: main.customer_data
Using getRfaAccessRequestDestinations
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 getRfaAccessRequestDestinations(args: GetRfaAccessRequestDestinationsArgs, opts?: InvokeOptions): Promise<GetRfaAccessRequestDestinationsResult>
function getRfaAccessRequestDestinationsOutput(args: GetRfaAccessRequestDestinationsOutputArgs, opts?: InvokeOptions): Output<GetRfaAccessRequestDestinationsResult>def get_rfa_access_request_destinations(full_name: Optional[str] = None,
securable_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRfaAccessRequestDestinationsResult
def get_rfa_access_request_destinations_output(full_name: Optional[pulumi.Input[str]] = None,
securable_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRfaAccessRequestDestinationsResult]func LookupRfaAccessRequestDestinations(ctx *Context, args *LookupRfaAccessRequestDestinationsArgs, opts ...InvokeOption) (*LookupRfaAccessRequestDestinationsResult, error)
func LookupRfaAccessRequestDestinationsOutput(ctx *Context, args *LookupRfaAccessRequestDestinationsOutputArgs, opts ...InvokeOption) LookupRfaAccessRequestDestinationsResultOutput> Note: This function is named LookupRfaAccessRequestDestinations in the Go SDK.
public static class GetRfaAccessRequestDestinations
{
public static Task<GetRfaAccessRequestDestinationsResult> InvokeAsync(GetRfaAccessRequestDestinationsArgs args, InvokeOptions? opts = null)
public static Output<GetRfaAccessRequestDestinationsResult> Invoke(GetRfaAccessRequestDestinationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetRfaAccessRequestDestinationsResult> getRfaAccessRequestDestinations(GetRfaAccessRequestDestinationsArgs args, InvokeOptions options)
public static Output<GetRfaAccessRequestDestinationsResult> getRfaAccessRequestDestinations(GetRfaAccessRequestDestinationsArgs args, InvokeOptions options)
fn::invoke:
function: databricks:index/getRfaAccessRequestDestinations:getRfaAccessRequestDestinations
arguments:
# arguments dictionaryThe following arguments are supported:
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- Securable
Type string - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- Securable
Type string - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- securable
Type String - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- securable
Type string - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- full_
name str - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- securable_
type str - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- securable
Type String - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
getRfaAccessRequestDestinations Result
The following output properties are available:
- bool
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- Destination
Source GetSecurable Rfa Access Request Destinations Destination Source Securable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- Destinations
List<Get
Rfa Access Request Destinations Destination> - (list of NotificationDestination) - The access request destinations for the securable
- Full
Name string - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- Id string
- The provider-assigned unique ID for this managed resource.
- Securable
Get
Rfa Access Request Destinations Securable - (Securable) - The securable for which the access request destinations are being modified or read
- Securable
Type string - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- bool
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- Destination
Source GetSecurable Rfa Access Request Destinations Destination Source Securable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- Destinations
[]Get
Rfa Access Request Destinations Destination - (list of NotificationDestination) - The access request destinations for the securable
- Full
Name string - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- Id string
- The provider-assigned unique ID for this managed resource.
- Securable
Get
Rfa Access Request Destinations Securable - (Securable) - The securable for which the access request destinations are being modified or read
- Securable
Type string - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- Boolean
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- destination
Source GetSecurable Rfa Access Request Destinations Destination Source Securable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- destinations
List<Get
Rfa Access Request Destinations Destination> - (list of NotificationDestination) - The access request destinations for the securable
- full
Name String - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- id String
- The provider-assigned unique ID for this managed resource.
- securable
Get
Rfa Access Request Destinations Securable - (Securable) - The securable for which the access request destinations are being modified or read
- securable
Type String - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- boolean
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- destination
Source GetSecurable Rfa Access Request Destinations Destination Source Securable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- destinations
Get
Rfa Access Request Destinations Destination[] - (list of NotificationDestination) - The access request destinations for the securable
- full
Name string - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- id string
- The provider-assigned unique ID for this managed resource.
- securable
Get
Rfa Access Request Destinations Securable - (Securable) - The securable for which the access request destinations are being modified or read
- securable
Type string - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- bool
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- destination_
source_ Getsecurable Rfa Access Request Destinations Destination Source Securable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- destinations
Sequence[Get
Rfa Access Request Destinations Destination] - (list of NotificationDestination) - The access request destinations for the securable
- full_
name str - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- id str
- The provider-assigned unique ID for this managed resource.
- securable
Get
Rfa Access Request Destinations Securable - (Securable) - The securable for which the access request destinations are being modified or read
- securable_
type str - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
- Boolean
- (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions. This value is true if the caller does not have permission to see all destinations
- destination
Source Property MapSecurable - (Securable) - The source securable from which the destinations are inherited. Either the same value as securable (if destination is set directly on the securable) or the nearest parent securable with destinations set
- destinations List<Property Map>
- (list of NotificationDestination) - The access request destinations for the securable
- full
Name String - (string) - Required. The full name of the catalog/schema/table. Optional if resource_name is present
- id String
- The provider-assigned unique ID for this managed resource.
- securable Property Map
- (Securable) - The securable for which the access request destinations are being modified or read
- securable
Type String - (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
Supporting Types
GetRfaAccessRequestDestinationsDestination
- Destination
Id string - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- Destination
Type string - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - Special
Destination string - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
- Destination
Id string - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- Destination
Type string - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - Special
Destination string - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
- destination
Id String - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- destination
Type String - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - special
Destination String - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
- destination
Id string - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- destination
Type string - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - special
Destination string - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
- destination_
id str - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- destination_
type str - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - special_
destination str - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
- destination
Id String - (string) - The identifier for the destination. This is the email address for EMAIL destinations, the URL for URL destinations, or the unique Databricks notification destination ID for all other external destinations
- destination
Type String - (string) - The type of the destination. Possible values are:
EMAIL,GENERIC_WEBHOOK,MICROSOFT_TEAMS,SLACK,URL - special
Destination String - (string) - This field is used to denote whether the destination is the email of the owner of the securable object.
The special destination cannot be assigned to a securable and only represents the default destination of the securable.
The securable types that support default special destinations are: "catalog", <span pulumi-lang-nodejs=""externalLocation"" pulumi-lang-dotnet=""ExternalLocation"" pulumi-lang-go=""externalLocation"" pulumi-lang-python=""external_location"" pulumi-lang-yaml=""externalLocation"" pulumi-lang-java=""externalLocation"">"external_location", "connection", "credential", and "metastore".
The destination_type of a special_destination is always EMAIL. Possible values are:
SPECIAL_DESTINATION_CATALOG_OWNER,SPECIAL_DESTINATION_CONNECTION_OWNER,SPECIAL_DESTINATION_CREDENTIAL_OWNER,SPECIAL_DESTINATION_EXTERNAL_LOCATION_OWNER,SPECIAL_DESTINATION_METASTORE_OWNER
GetRfaAccessRequestDestinationsDestinationSourceSecurable
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- Type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- Type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- String
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type String
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full_
name str - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- str
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type str
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- String
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type String
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
GetRfaAccessRequestDestinationsSecurable
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- Type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- Full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- Type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- String
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type String
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name string - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- string
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type string
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full_
name str - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- str
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type str
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
- full
Name String - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
- String
- (string) - Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
- type String
- (string) - Required. The type of securable (catalog/schema/table).
Optional if resource_name is present. Possible values are:
CATALOG,CLEAN_ROOM,CONNECTION,CREDENTIAL,EXTERNAL_LOCATION,EXTERNAL_METADATA,FUNCTION,METASTORE,PIPELINE,PROVIDER,RECIPIENT,SCHEMA,SHARE,STAGING_TABLE,STORAGE_CREDENTIAL,TABLE,VOLUME
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
