1. Packages
  2. Databricks Provider
  3. API Docs
  4. RfaAccessRequestDestinations
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi
databricks logo
Databricks v1.83.0 published on Friday, Jan 23, 2026 by Pulumi

    Public Preview

    Request for Access (RFA) access request destinations allow you to configure where notifications are sent when users request access to securable objects in Unity Catalog. This resource enables you to manage access request destinations for specific securable objects, such as tables, catalogs, or schemas.

    When a user requests access to a securable object, notifications can be sent to various destinations including email addresses, Slack channels, or Microsoft Teams channels. This resource allows you to configure these destinations to ensure that the appropriate stakeholders are notified of access requests.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as databricks from "@pulumi/databricks";
    
    const customerDataTable = new databricks.RfaAccessRequestDestinations("customer_data_table", {
        destinations: [
            {
                destinationId: "john.doe@databricks.com",
                destinationType: "EMAIL",
            },
            {
                destinationId: "https://www.databricks.com/",
                destinationType: "URL",
            },
            {
                destinationId: "456e7890-e89b-12d3-a456-426614174001",
                destinationType: "SLACK",
            },
            {
                destinationId: "789e0123-e89b-12d3-a456-426614174002",
                destinationType: "MICROSOFT_TEAMS",
            },
            {
                destinationId: "012e3456-e89b-12d3-a456-426614174003",
                destinationType: "GENERIC_WEBHOOK",
            },
        ],
        securable: {
            type: "SCHEMA",
            fullName: "main.customer_data",
        },
        areAnyDestinationsHidden: false,
    });
    
    import pulumi
    import pulumi_databricks as databricks
    
    customer_data_table = databricks.RfaAccessRequestDestinations("customer_data_table",
        destinations=[
            {
                "destination_id": "john.doe@databricks.com",
                "destination_type": "EMAIL",
            },
            {
                "destination_id": "https://www.databricks.com/",
                "destination_type": "URL",
            },
            {
                "destination_id": "456e7890-e89b-12d3-a456-426614174001",
                "destination_type": "SLACK",
            },
            {
                "destination_id": "789e0123-e89b-12d3-a456-426614174002",
                "destination_type": "MICROSOFT_TEAMS",
            },
            {
                "destination_id": "012e3456-e89b-12d3-a456-426614174003",
                "destination_type": "GENERIC_WEBHOOK",
            },
        ],
        securable={
            "type": "SCHEMA",
            "full_name": "main.customer_data",
        },
        are_any_destinations_hidden=False)
    
    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.NewRfaAccessRequestDestinations(ctx, "customer_data_table", &databricks.RfaAccessRequestDestinationsArgs{
    			Destinations: databricks.RfaAccessRequestDestinationsDestinationArray{
    				&databricks.RfaAccessRequestDestinationsDestinationArgs{
    					DestinationId:   pulumi.String("john.doe@databricks.com"),
    					DestinationType: pulumi.String("EMAIL"),
    				},
    				&databricks.RfaAccessRequestDestinationsDestinationArgs{
    					DestinationId:   pulumi.String("https://www.databricks.com/"),
    					DestinationType: pulumi.String("URL"),
    				},
    				&databricks.RfaAccessRequestDestinationsDestinationArgs{
    					DestinationId:   pulumi.String("456e7890-e89b-12d3-a456-426614174001"),
    					DestinationType: pulumi.String("SLACK"),
    				},
    				&databricks.RfaAccessRequestDestinationsDestinationArgs{
    					DestinationId:   pulumi.String("789e0123-e89b-12d3-a456-426614174002"),
    					DestinationType: pulumi.String("MICROSOFT_TEAMS"),
    				},
    				&databricks.RfaAccessRequestDestinationsDestinationArgs{
    					DestinationId:   pulumi.String("012e3456-e89b-12d3-a456-426614174003"),
    					DestinationType: pulumi.String("GENERIC_WEBHOOK"),
    				},
    			},
    			Securable: &databricks.RfaAccessRequestDestinationsSecurableArgs{
    				Type:     pulumi.String("SCHEMA"),
    				FullName: pulumi.String("main.customer_data"),
    			},
    			AreAnyDestinationsHidden: false,
    		})
    		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 customerDataTable = new Databricks.RfaAccessRequestDestinations("customer_data_table", new()
        {
            Destinations = new[]
            {
                new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
                {
                    DestinationId = "john.doe@databricks.com",
                    DestinationType = "EMAIL",
                },
                new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
                {
                    DestinationId = "https://www.databricks.com/",
                    DestinationType = "URL",
                },
                new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
                {
                    DestinationId = "456e7890-e89b-12d3-a456-426614174001",
                    DestinationType = "SLACK",
                },
                new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
                {
                    DestinationId = "789e0123-e89b-12d3-a456-426614174002",
                    DestinationType = "MICROSOFT_TEAMS",
                },
                new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
                {
                    DestinationId = "012e3456-e89b-12d3-a456-426614174003",
                    DestinationType = "GENERIC_WEBHOOK",
                },
            },
            Securable = new Databricks.Inputs.RfaAccessRequestDestinationsSecurableArgs
            {
                Type = "SCHEMA",
                FullName = "main.customer_data",
            },
            AreAnyDestinationsHidden = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.databricks.RfaAccessRequestDestinations;
    import com.pulumi.databricks.RfaAccessRequestDestinationsArgs;
    import com.pulumi.databricks.inputs.RfaAccessRequestDestinationsDestinationArgs;
    import com.pulumi.databricks.inputs.RfaAccessRequestDestinationsSecurableArgs;
    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 customerDataTable = new RfaAccessRequestDestinations("customerDataTable", RfaAccessRequestDestinationsArgs.builder()
                .destinations(            
                    RfaAccessRequestDestinationsDestinationArgs.builder()
                        .destinationId("john.doe@databricks.com")
                        .destinationType("EMAIL")
                        .build(),
                    RfaAccessRequestDestinationsDestinationArgs.builder()
                        .destinationId("https://www.databricks.com/")
                        .destinationType("URL")
                        .build(),
                    RfaAccessRequestDestinationsDestinationArgs.builder()
                        .destinationId("456e7890-e89b-12d3-a456-426614174001")
                        .destinationType("SLACK")
                        .build(),
                    RfaAccessRequestDestinationsDestinationArgs.builder()
                        .destinationId("789e0123-e89b-12d3-a456-426614174002")
                        .destinationType("MICROSOFT_TEAMS")
                        .build(),
                    RfaAccessRequestDestinationsDestinationArgs.builder()
                        .destinationId("012e3456-e89b-12d3-a456-426614174003")
                        .destinationType("GENERIC_WEBHOOK")
                        .build())
                .securable(RfaAccessRequestDestinationsSecurableArgs.builder()
                    .type("SCHEMA")
                    .fullName("main.customer_data")
                    .build())
                .areAnyDestinationsHidden(false)
                .build());
    
        }
    }
    
    resources:
      customerDataTable:
        type: databricks:RfaAccessRequestDestinations
        name: customer_data_table
        properties:
          destinations:
            - destinationId: john.doe@databricks.com
              destinationType: EMAIL
            - destinationId: https://www.databricks.com/
              destinationType: URL
            - destinationId: 456e7890-e89b-12d3-a456-426614174001
              destinationType: SLACK
            - destinationId: 789e0123-e89b-12d3-a456-426614174002
              destinationType: MICROSOFT_TEAMS
            - destinationId: 012e3456-e89b-12d3-a456-426614174003
              destinationType: GENERIC_WEBHOOK
          securable:
            type: SCHEMA
            fullName: main.customer_data
          areAnyDestinationsHidden: false
    

    Create RfaAccessRequestDestinations Resource

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

    Constructor syntax

    new RfaAccessRequestDestinations(name: string, args: RfaAccessRequestDestinationsArgs, opts?: CustomResourceOptions);
    @overload
    def RfaAccessRequestDestinations(resource_name: str,
                                     args: RfaAccessRequestDestinationsArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def RfaAccessRequestDestinations(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     securable: Optional[RfaAccessRequestDestinationsSecurableArgs] = None,
                                     destinations: Optional[Sequence[RfaAccessRequestDestinationsDestinationArgs]] = None)
    func NewRfaAccessRequestDestinations(ctx *Context, name string, args RfaAccessRequestDestinationsArgs, opts ...ResourceOption) (*RfaAccessRequestDestinations, error)
    public RfaAccessRequestDestinations(string name, RfaAccessRequestDestinationsArgs args, CustomResourceOptions? opts = null)
    public RfaAccessRequestDestinations(String name, RfaAccessRequestDestinationsArgs args)
    public RfaAccessRequestDestinations(String name, RfaAccessRequestDestinationsArgs args, CustomResourceOptions options)
    
    type: databricks:RfaAccessRequestDestinations
    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 RfaAccessRequestDestinationsArgs
    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 RfaAccessRequestDestinationsArgs
    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 RfaAccessRequestDestinationsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RfaAccessRequestDestinationsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RfaAccessRequestDestinationsArgs
    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 rfaAccessRequestDestinationsResource = new Databricks.RfaAccessRequestDestinations("rfaAccessRequestDestinationsResource", new()
    {
        Securable = new Databricks.Inputs.RfaAccessRequestDestinationsSecurableArgs
        {
            FullName = "string",
            ProviderShare = "string",
            Type = "string",
        },
        Destinations = new[]
        {
            new Databricks.Inputs.RfaAccessRequestDestinationsDestinationArgs
            {
                DestinationId = "string",
                DestinationType = "string",
                SpecialDestination = "string",
            },
        },
    });
    
    example, err := databricks.NewRfaAccessRequestDestinations(ctx, "rfaAccessRequestDestinationsResource", &databricks.RfaAccessRequestDestinationsArgs{
    	Securable: &databricks.RfaAccessRequestDestinationsSecurableArgs{
    		FullName:      pulumi.String("string"),
    		ProviderShare: pulumi.String("string"),
    		Type:          pulumi.String("string"),
    	},
    	Destinations: databricks.RfaAccessRequestDestinationsDestinationArray{
    		&databricks.RfaAccessRequestDestinationsDestinationArgs{
    			DestinationId:      pulumi.String("string"),
    			DestinationType:    pulumi.String("string"),
    			SpecialDestination: pulumi.String("string"),
    		},
    	},
    })
    
    var rfaAccessRequestDestinationsResource = new RfaAccessRequestDestinations("rfaAccessRequestDestinationsResource", RfaAccessRequestDestinationsArgs.builder()
        .securable(RfaAccessRequestDestinationsSecurableArgs.builder()
            .fullName("string")
            .providerShare("string")
            .type("string")
            .build())
        .destinations(RfaAccessRequestDestinationsDestinationArgs.builder()
            .destinationId("string")
            .destinationType("string")
            .specialDestination("string")
            .build())
        .build());
    
    rfa_access_request_destinations_resource = databricks.RfaAccessRequestDestinations("rfaAccessRequestDestinationsResource",
        securable={
            "full_name": "string",
            "provider_share": "string",
            "type": "string",
        },
        destinations=[{
            "destination_id": "string",
            "destination_type": "string",
            "special_destination": "string",
        }])
    
    const rfaAccessRequestDestinationsResource = new databricks.RfaAccessRequestDestinations("rfaAccessRequestDestinationsResource", {
        securable: {
            fullName: "string",
            providerShare: "string",
            type: "string",
        },
        destinations: [{
            destinationId: "string",
            destinationType: "string",
            specialDestination: "string",
        }],
    });
    
    type: databricks:RfaAccessRequestDestinations
    properties:
        destinations:
            - destinationId: string
              destinationType: string
              specialDestination: string
        securable:
            fullName: string
            providerShare: string
            type: string
    

    RfaAccessRequestDestinations 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 RfaAccessRequestDestinations resource accepts the following input properties:

    Securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    Destinations List<RfaAccessRequestDestinationsDestination>
    The access request destinations for the securable
    Securable RfaAccessRequestDestinationsSecurableArgs
    The securable for which the access request destinations are being modified or read
    Destinations []RfaAccessRequestDestinationsDestinationArgs
    The access request destinations for the securable
    securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    destinations List<RfaAccessRequestDestinationsDestination>
    The access request destinations for the securable
    securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    destinations RfaAccessRequestDestinationsDestination[]
    The access request destinations for the securable
    securable RfaAccessRequestDestinationsSecurableArgs
    The securable for which the access request destinations are being modified or read
    destinations Sequence[RfaAccessRequestDestinationsDestinationArgs]
    The access request destinations for the securable
    securable Property Map
    The securable for which the access request destinations are being modified or read
    destinations List<Property Map>
    The access request destinations for the securable

    Outputs

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

    AreAnyDestinationsHidden 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
    DestinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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
    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    AreAnyDestinationsHidden 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
    DestinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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
    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    areAnyDestinationsHidden 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
    destinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    id String
    The provider-assigned unique ID for this managed resource.
    securableType String
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    areAnyDestinationsHidden 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
    destinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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
    fullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    id string
    The provider-assigned unique ID for this managed resource.
    securableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    are_any_destinations_hidden 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_securable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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
    full_name str
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    id str
    The provider-assigned unique ID for this managed resource.
    securable_type str
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    areAnyDestinationsHidden 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
    destinationSourceSecurable Property Map
    (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
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    id String
    The provider-assigned unique ID for this managed resource.
    securableType String
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration

    Look up Existing RfaAccessRequestDestinations Resource

    Get an existing RfaAccessRequestDestinations 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?: RfaAccessRequestDestinationsState, opts?: CustomResourceOptions): RfaAccessRequestDestinations
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            are_any_destinations_hidden: Optional[bool] = None,
            destination_source_securable: Optional[RfaAccessRequestDestinationsDestinationSourceSecurableArgs] = None,
            destinations: Optional[Sequence[RfaAccessRequestDestinationsDestinationArgs]] = None,
            full_name: Optional[str] = None,
            securable: Optional[RfaAccessRequestDestinationsSecurableArgs] = None,
            securable_type: Optional[str] = None) -> RfaAccessRequestDestinations
    func GetRfaAccessRequestDestinations(ctx *Context, name string, id IDInput, state *RfaAccessRequestDestinationsState, opts ...ResourceOption) (*RfaAccessRequestDestinations, error)
    public static RfaAccessRequestDestinations Get(string name, Input<string> id, RfaAccessRequestDestinationsState? state, CustomResourceOptions? opts = null)
    public static RfaAccessRequestDestinations get(String name, Output<String> id, RfaAccessRequestDestinationsState state, CustomResourceOptions options)
    resources:  _:    type: databricks:RfaAccessRequestDestinations    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:
    AreAnyDestinationsHidden 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
    DestinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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<RfaAccessRequestDestinationsDestination>
    The access request destinations for the securable
    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    Securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    SecurableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    AreAnyDestinationsHidden 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
    DestinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurableArgs
    (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 []RfaAccessRequestDestinationsDestinationArgs
    The access request destinations for the securable
    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    Securable RfaAccessRequestDestinationsSecurableArgs
    The securable for which the access request destinations are being modified or read
    SecurableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    areAnyDestinationsHidden 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
    destinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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<RfaAccessRequestDestinationsDestination>
    The access request destinations for the securable
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    securableType String
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    areAnyDestinationsHidden 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
    destinationSourceSecurable RfaAccessRequestDestinationsDestinationSourceSecurable
    (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 RfaAccessRequestDestinationsDestination[]
    The access request destinations for the securable
    fullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    securable RfaAccessRequestDestinationsSecurable
    The securable for which the access request destinations are being modified or read
    securableType string
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration
    are_any_destinations_hidden 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_securable RfaAccessRequestDestinationsDestinationSourceSecurableArgs
    (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[RfaAccessRequestDestinationsDestinationArgs]
    The access request destinations for the securable
    full_name str
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    securable RfaAccessRequestDestinationsSecurableArgs
    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
    areAnyDestinationsHidden 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
    destinationSourceSecurable Property Map
    (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>
    The access request destinations for the securable
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    securable Property Map
    The securable for which the access request destinations are being modified or read
    securableType String
    (string) - The type of the securable. Redundant with the type in the securable object, but necessary for Pulumi integration

    Supporting Types

    RfaAccessRequestDestinationsDestination, RfaAccessRequestDestinationsDestinationArgs

    DestinationId 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
    DestinationType string
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    SpecialDestination 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
    DestinationId 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
    DestinationType string
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    SpecialDestination 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
    destinationId 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
    destinationType String
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    specialDestination 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
    destinationId 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
    destinationType string
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    specialDestination 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
    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
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    special_destination str
    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
    destinationId 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
    destinationType String
    The type of the destination. Possible values are: EMAIL, GENERIC_WEBHOOK, MICROSOFT_TEAMS, SLACK, URL
    specialDestination 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

    RfaAccessRequestDestinationsDestinationSourceSecurable, RfaAccessRequestDestinationsDestinationSourceSecurableArgs

    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    ProviderShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    Type 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
    FullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    ProviderShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    Type 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
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    providerShare String
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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
    fullName string
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    providerShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    provider_share str
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type str
    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
    fullName String
    (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
    providerShare String
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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

    RfaAccessRequestDestinationsSecurable, RfaAccessRequestDestinationsSecurableArgs

    FullName string
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    ProviderShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    Type 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
    FullName string
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    ProviderShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    Type 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
    fullName String
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    providerShare String
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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
    fullName string
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    providerShare string
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    provider_share str
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type str
    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
    fullName String
    Required. The full name of the catalog/schema/table. Optional if resource_name is present
    providerShare String
    Optional. The name of the Share object that contains the securable when the securable is getting shared in D2D Delta Sharing
    type 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

    Import

    As of Pulumi v1.5, resources can be imported through configuration.

    hcl

    import {

    id = “securable_type,full_name”

    to = databricks_rfa_access_request_destinations.this

    }

    If you are using an older version of Pulumi, import the resource using the pulumi import command as follows:

    $ pulumi import databricks:index/rfaAccessRequestDestinations:RfaAccessRequestDestinations this "securable_type,full_name"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.83.0 published on Friday, Jan 23, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate