1. Packages
  2. Azure Classic
  3. API Docs
  4. synapse
  5. LinkedService

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Synapse Linked Service.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                AccountKind = "BlobStorage",
                AccountTier = "Standard",
                AccountReplicationType = "LRS",
            });
            var exampleDataLakeGen2Filesystem = new Azure.Storage.DataLakeGen2Filesystem("exampleDataLakeGen2Filesystem", new Azure.Storage.DataLakeGen2FilesystemArgs
            {
                StorageAccountId = exampleAccount.Id,
            });
            var exampleWorkspace = new Azure.Synapse.Workspace("exampleWorkspace", new Azure.Synapse.WorkspaceArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                StorageDataLakeGen2FilesystemId = exampleDataLakeGen2Filesystem.Id,
                SqlAdministratorLogin = "sqladminuser",
                SqlAdministratorLoginPassword = "H@Sh1CoR3!",
                ManagedVirtualNetworkEnabled = true,
            });
            var exampleFirewallRule = new Azure.Synapse.FirewallRule("exampleFirewallRule", new Azure.Synapse.FirewallRuleArgs
            {
                SynapseWorkspaceId = exampleWorkspace.Id,
                StartIpAddress = "0.0.0.0",
                EndIpAddress = "255.255.255.255",
            });
            var exampleLinkedService = new Azure.Synapse.LinkedService("exampleLinkedService", new Azure.Synapse.LinkedServiceArgs
            {
                SynapseWorkspaceId = exampleWorkspace.Id,
                Type = "AzureBlobStorage",
                TypePropertiesJson = @$"{{
      ""connectionString"": ""{azurerm_storage_account.Test.Primary_connection_string}""
    }}
    ",
            }, new CustomResourceOptions
            {
                DependsOn = 
                {
                    exampleFirewallRule,
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/synapse"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
    			ResourceGroupName:      exampleResourceGroup.Name,
    			Location:               exampleResourceGroup.Location,
    			AccountKind:            pulumi.String("BlobStorage"),
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("LRS"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleDataLakeGen2Filesystem, err := storage.NewDataLakeGen2Filesystem(ctx, "exampleDataLakeGen2Filesystem", &storage.DataLakeGen2FilesystemArgs{
    			StorageAccountId: exampleAccount.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		exampleWorkspace, err := synapse.NewWorkspace(ctx, "exampleWorkspace", &synapse.WorkspaceArgs{
    			ResourceGroupName:               exampleResourceGroup.Name,
    			Location:                        exampleResourceGroup.Location,
    			StorageDataLakeGen2FilesystemId: exampleDataLakeGen2Filesystem.ID(),
    			SqlAdministratorLogin:           pulumi.String("sqladminuser"),
    			SqlAdministratorLoginPassword:   pulumi.String("H@Sh1CoR3!"),
    			ManagedVirtualNetworkEnabled:    pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		exampleFirewallRule, err := synapse.NewFirewallRule(ctx, "exampleFirewallRule", &synapse.FirewallRuleArgs{
    			SynapseWorkspaceId: exampleWorkspace.ID(),
    			StartIpAddress:     pulumi.String("0.0.0.0"),
    			EndIpAddress:       pulumi.String("255.255.255.255"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = synapse.NewLinkedService(ctx, "exampleLinkedService", &synapse.LinkedServiceArgs{
    			SynapseWorkspaceId: exampleWorkspace.ID(),
    			Type:               pulumi.String("AzureBlobStorage"),
    			TypePropertiesJson: pulumi.String(fmt.Sprintf("%v%v%v%v%v", "{\n", "  \"connectionString\": \"", azurerm_storage_account.Test.Primary_connection_string, "\"\n", "}\n")),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleFirewallRule,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleAccount = new azure.storage.Account("exampleAccount", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        accountKind: "BlobStorage",
        accountTier: "Standard",
        accountReplicationType: "LRS",
    });
    const exampleDataLakeGen2Filesystem = new azure.storage.DataLakeGen2Filesystem("exampleDataLakeGen2Filesystem", {storageAccountId: exampleAccount.id});
    const exampleWorkspace = new azure.synapse.Workspace("exampleWorkspace", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        storageDataLakeGen2FilesystemId: exampleDataLakeGen2Filesystem.id,
        sqlAdministratorLogin: "sqladminuser",
        sqlAdministratorLoginPassword: "H@Sh1CoR3!",
        managedVirtualNetworkEnabled: true,
    });
    const exampleFirewallRule = new azure.synapse.FirewallRule("exampleFirewallRule", {
        synapseWorkspaceId: exampleWorkspace.id,
        startIpAddress: "0.0.0.0",
        endIpAddress: "255.255.255.255",
    });
    const exampleLinkedService = new azure.synapse.LinkedService("exampleLinkedService", {
        synapseWorkspaceId: exampleWorkspace.id,
        type: "AzureBlobStorage",
        typePropertiesJson: `{
      "connectionString": "${azurerm_storage_account.test.primary_connection_string}"
    }
    `,
    }, {
        dependsOn: [exampleFirewallRule],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_account = azure.storage.Account("exampleAccount",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        account_kind="BlobStorage",
        account_tier="Standard",
        account_replication_type="LRS")
    example_data_lake_gen2_filesystem = azure.storage.DataLakeGen2Filesystem("exampleDataLakeGen2Filesystem", storage_account_id=example_account.id)
    example_workspace = azure.synapse.Workspace("exampleWorkspace",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        storage_data_lake_gen2_filesystem_id=example_data_lake_gen2_filesystem.id,
        sql_administrator_login="sqladminuser",
        sql_administrator_login_password="H@Sh1CoR3!",
        managed_virtual_network_enabled=True)
    example_firewall_rule = azure.synapse.FirewallRule("exampleFirewallRule",
        synapse_workspace_id=example_workspace.id,
        start_ip_address="0.0.0.0",
        end_ip_address="255.255.255.255")
    example_linked_service = azure.synapse.LinkedService("exampleLinkedService",
        synapse_workspace_id=example_workspace.id,
        type="AzureBlobStorage",
        type_properties_json=f"""{{
      "connectionString": "{azurerm_storage_account["test"]["primary_connection_string"]}"
    }}
    """,
        opts=pulumi.ResourceOptions(depends_on=[example_firewall_rule]))
    

    Example coming soon!

    Create LinkedService Resource

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

    Constructor syntax

    new LinkedService(name: string, args: LinkedServiceArgs, opts?: CustomResourceOptions);
    @overload
    def LinkedService(resource_name: str,
                      args: LinkedServiceArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def LinkedService(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      synapse_workspace_id: Optional[str] = None,
                      type: Optional[str] = None,
                      type_properties_json: Optional[str] = None,
                      additional_properties: Optional[Mapping[str, str]] = None,
                      annotations: Optional[Sequence[str]] = None,
                      description: Optional[str] = None,
                      integration_runtime: Optional[LinkedServiceIntegrationRuntimeArgs] = None,
                      name: Optional[str] = None,
                      parameters: Optional[Mapping[str, str]] = None)
    func NewLinkedService(ctx *Context, name string, args LinkedServiceArgs, opts ...ResourceOption) (*LinkedService, error)
    public LinkedService(string name, LinkedServiceArgs args, CustomResourceOptions? opts = null)
    public LinkedService(String name, LinkedServiceArgs args)
    public LinkedService(String name, LinkedServiceArgs args, CustomResourceOptions options)
    
    type: azure:synapse:LinkedService
    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 LinkedServiceArgs
    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 LinkedServiceArgs
    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 LinkedServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LinkedServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LinkedServiceArgs
    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 azureLinkedServiceResource = new Azure.Synapse.LinkedService("azureLinkedServiceResource", new()
    {
        SynapseWorkspaceId = "string",
        Type = "string",
        TypePropertiesJson = "string",
        AdditionalProperties = 
        {
            { "string", "string" },
        },
        Annotations = new[]
        {
            "string",
        },
        Description = "string",
        IntegrationRuntime = new Azure.Synapse.Inputs.LinkedServiceIntegrationRuntimeArgs
        {
            Name = "string",
            Parameters = 
            {
                { "string", "string" },
            },
        },
        Name = "string",
        Parameters = 
        {
            { "string", "string" },
        },
    });
    
    example, err := synapse.NewLinkedService(ctx, "azureLinkedServiceResource", &synapse.LinkedServiceArgs{
    	SynapseWorkspaceId: pulumi.String("string"),
    	Type:               pulumi.String("string"),
    	TypePropertiesJson: pulumi.String("string"),
    	AdditionalProperties: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Annotations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	IntegrationRuntime: &synapse.LinkedServiceIntegrationRuntimeArgs{
    		Name: pulumi.String("string"),
    		Parameters: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Parameters: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureLinkedServiceResource = new com.pulumi.azure.synapse.LinkedService("azureLinkedServiceResource", com.pulumi.azure.synapse.LinkedServiceArgs.builder()
        .synapseWorkspaceId("string")
        .type("string")
        .typePropertiesJson("string")
        .additionalProperties(Map.of("string", "string"))
        .annotations("string")
        .description("string")
        .integrationRuntime(LinkedServiceIntegrationRuntimeArgs.builder()
            .name("string")
            .parameters(Map.of("string", "string"))
            .build())
        .name("string")
        .parameters(Map.of("string", "string"))
        .build());
    
    azure_linked_service_resource = azure.synapse.LinkedService("azureLinkedServiceResource",
        synapse_workspace_id="string",
        type="string",
        type_properties_json="string",
        additional_properties={
            "string": "string",
        },
        annotations=["string"],
        description="string",
        integration_runtime={
            "name": "string",
            "parameters": {
                "string": "string",
            },
        },
        name="string",
        parameters={
            "string": "string",
        })
    
    const azureLinkedServiceResource = new azure.synapse.LinkedService("azureLinkedServiceResource", {
        synapseWorkspaceId: "string",
        type: "string",
        typePropertiesJson: "string",
        additionalProperties: {
            string: "string",
        },
        annotations: ["string"],
        description: "string",
        integrationRuntime: {
            name: "string",
            parameters: {
                string: "string",
            },
        },
        name: "string",
        parameters: {
            string: "string",
        },
    });
    
    type: azure:synapse:LinkedService
    properties:
        additionalProperties:
            string: string
        annotations:
            - string
        description: string
        integrationRuntime:
            name: string
            parameters:
                string: string
        name: string
        parameters:
            string: string
        synapseWorkspaceId: string
        type: string
        typePropertiesJson: string
    

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

    SynapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    Type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    TypePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    AdditionalProperties Dictionary<string, string>
    A map of additional properties to associate with the Synapse Linked Service.
    Annotations List<string>
    List of tags that can be used for describing the Synapse Linked Service.
    Description string
    The description for the Synapse Linked Service.
    IntegrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    Name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    Parameters Dictionary<string, string>
    A map of parameters to associate with the Synapse Linked Service.
    SynapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    Type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    TypePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    AdditionalProperties map[string]string
    A map of additional properties to associate with the Synapse Linked Service.
    Annotations []string
    List of tags that can be used for describing the Synapse Linked Service.
    Description string
    The description for the Synapse Linked Service.
    IntegrationRuntime LinkedServiceIntegrationRuntimeArgs
    A integration_runtime block as defined below.
    Name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    Parameters map[string]string
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId String
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type String
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson String
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties Map<String,String>
    A map of additional properties to associate with the Synapse Linked Service.
    annotations List<String>
    List of tags that can be used for describing the Synapse Linked Service.
    description String
    The description for the Synapse Linked Service.
    integrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    name String
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Map<String,String>
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties {[key: string]: string}
    A map of additional properties to associate with the Synapse Linked Service.
    annotations string[]
    List of tags that can be used for describing the Synapse Linked Service.
    description string
    The description for the Synapse Linked Service.
    integrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters {[key: string]: string}
    A map of parameters to associate with the Synapse Linked Service.
    synapse_workspace_id str
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type str
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    type_properties_json str
    A JSON object that contains the properties of the Synapse Linked Service.
    additional_properties Mapping[str, str]
    A map of additional properties to associate with the Synapse Linked Service.
    annotations Sequence[str]
    List of tags that can be used for describing the Synapse Linked Service.
    description str
    The description for the Synapse Linked Service.
    integration_runtime LinkedServiceIntegrationRuntimeArgs
    A integration_runtime block as defined below.
    name str
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Mapping[str, str]
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId String
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type String
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson String
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties Map<String>
    A map of additional properties to associate with the Synapse Linked Service.
    annotations List<String>
    List of tags that can be used for describing the Synapse Linked Service.
    description String
    The description for the Synapse Linked Service.
    integrationRuntime Property Map
    A integration_runtime block as defined below.
    name String
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Map<String>
    A map of parameters to associate with the Synapse Linked Service.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing LinkedService Resource

    Get an existing LinkedService 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?: LinkedServiceState, opts?: CustomResourceOptions): LinkedService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_properties: Optional[Mapping[str, str]] = None,
            annotations: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            integration_runtime: Optional[LinkedServiceIntegrationRuntimeArgs] = None,
            name: Optional[str] = None,
            parameters: Optional[Mapping[str, str]] = None,
            synapse_workspace_id: Optional[str] = None,
            type: Optional[str] = None,
            type_properties_json: Optional[str] = None) -> LinkedService
    func GetLinkedService(ctx *Context, name string, id IDInput, state *LinkedServiceState, opts ...ResourceOption) (*LinkedService, error)
    public static LinkedService Get(string name, Input<string> id, LinkedServiceState? state, CustomResourceOptions? opts = null)
    public static LinkedService get(String name, Output<String> id, LinkedServiceState state, CustomResourceOptions options)
    resources:  _:    type: azure:synapse:LinkedService    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:
    AdditionalProperties Dictionary<string, string>
    A map of additional properties to associate with the Synapse Linked Service.
    Annotations List<string>
    List of tags that can be used for describing the Synapse Linked Service.
    Description string
    The description for the Synapse Linked Service.
    IntegrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    Name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    Parameters Dictionary<string, string>
    A map of parameters to associate with the Synapse Linked Service.
    SynapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    Type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    TypePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    AdditionalProperties map[string]string
    A map of additional properties to associate with the Synapse Linked Service.
    Annotations []string
    List of tags that can be used for describing the Synapse Linked Service.
    Description string
    The description for the Synapse Linked Service.
    IntegrationRuntime LinkedServiceIntegrationRuntimeArgs
    A integration_runtime block as defined below.
    Name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    Parameters map[string]string
    A map of parameters to associate with the Synapse Linked Service.
    SynapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    Type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    TypePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties Map<String,String>
    A map of additional properties to associate with the Synapse Linked Service.
    annotations List<String>
    List of tags that can be used for describing the Synapse Linked Service.
    description String
    The description for the Synapse Linked Service.
    integrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    name String
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Map<String,String>
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId String
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type String
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson String
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties {[key: string]: string}
    A map of additional properties to associate with the Synapse Linked Service.
    annotations string[]
    List of tags that can be used for describing the Synapse Linked Service.
    description string
    The description for the Synapse Linked Service.
    integrationRuntime LinkedServiceIntegrationRuntime
    A integration_runtime block as defined below.
    name string
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters {[key: string]: string}
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId string
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type string
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson string
    A JSON object that contains the properties of the Synapse Linked Service.
    additional_properties Mapping[str, str]
    A map of additional properties to associate with the Synapse Linked Service.
    annotations Sequence[str]
    List of tags that can be used for describing the Synapse Linked Service.
    description str
    The description for the Synapse Linked Service.
    integration_runtime LinkedServiceIntegrationRuntimeArgs
    A integration_runtime block as defined below.
    name str
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Mapping[str, str]
    A map of parameters to associate with the Synapse Linked Service.
    synapse_workspace_id str
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type str
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    type_properties_json str
    A JSON object that contains the properties of the Synapse Linked Service.
    additionalProperties Map<String>
    A map of additional properties to associate with the Synapse Linked Service.
    annotations List<String>
    List of tags that can be used for describing the Synapse Linked Service.
    description String
    The description for the Synapse Linked Service.
    integrationRuntime Property Map
    A integration_runtime block as defined below.
    name String
    The name which should be used for this Synapse Linked Service. Changing this forces a new Synapse Linked Service to be created.
    parameters Map<String>
    A map of parameters to associate with the Synapse Linked Service.
    synapseWorkspaceId String
    The Synapse Workspace ID in which to associate the Linked Service with. Changing this forces a new Synapse Linked Service to be created.
    type String
    The type of data stores that will be connected to Synapse. For full list of supported data stores, please refer to Azure Synapse connector. Changing this forces a new Synapse Linked Service to be created.
    typePropertiesJson String
    A JSON object that contains the properties of the Synapse Linked Service.

    Supporting Types

    LinkedServiceIntegrationRuntime, LinkedServiceIntegrationRuntimeArgs

    Name string
    The integration runtime reference to associate with the Synapse Linked Service.
    Parameters Dictionary<string, string>
    A map of parameters to associate with the integration runtime.
    Name string
    The integration runtime reference to associate with the Synapse Linked Service.
    Parameters map[string]string
    A map of parameters to associate with the integration runtime.
    name String
    The integration runtime reference to associate with the Synapse Linked Service.
    parameters Map<String,String>
    A map of parameters to associate with the integration runtime.
    name string
    The integration runtime reference to associate with the Synapse Linked Service.
    parameters {[key: string]: string}
    A map of parameters to associate with the integration runtime.
    name str
    The integration runtime reference to associate with the Synapse Linked Service.
    parameters Mapping[str, str]
    A map of parameters to associate with the integration runtime.
    name String
    The integration runtime reference to associate with the Synapse Linked Service.
    parameters Map<String>
    A map of parameters to associate with the integration runtime.

    Import

    Synapse Linked Services can be imported using the resource id, e.g.

     $ pulumi import azure:synapse/linkedService:LinkedService example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Synapse/workspaces/workspace1/linkedservices/linkedservice1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.