1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. LinkedService
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.5.1 published on Friday, Jun 6, 2025 by Pulumi

azure-native.datafactory.LinkedService

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.5.1 published on Friday, Jun 6, 2025 by Pulumi

    Linked service resource type.

    Uses Azure REST API version 2018-06-01. In version 2.x of the Azure Native provider, it used API version 2018-06-01.

    Example Usage

    LinkedServices_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
        {
            FactoryName = "exampleFactoryName",
            LinkedServiceName = "exampleLinkedService",
            Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
            {
                ConnectionString = new Dictionary<string, object?>
                {
                    ["type"] = "SecureString",
                    ["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
                },
                Type = "AzureStorage",
            },
            ResourceGroupName = "exampleResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
    			FactoryName:       pulumi.String("exampleFactoryName"),
    			LinkedServiceName: pulumi.String("exampleLinkedService"),
    			Properties: &datafactory.AzureStorageLinkedServiceArgs{
    				ConnectionString: pulumi.Any(map[string]interface{}{
    					"type":  "SecureString",
    					"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
    				}),
    				Type: pulumi.String("AzureStorage"),
    			},
    			ResourceGroupName: pulumi.String("exampleResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datafactory.LinkedService;
    import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
    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 linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
                .factoryName("exampleFactoryName")
                .linkedServiceName("exampleLinkedService")
                .properties(AzureStorageLinkedServiceArgs.builder()
                    .connectionString(Map.ofEntries(
                        Map.entry("type", "SecureString"),
                        Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
                    ))
                    .type("AzureStorage")
                    .build())
                .resourceGroupName("exampleResourceGroup")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
        factoryName: "exampleFactoryName",
        linkedServiceName: "exampleLinkedService",
        properties: {
            connectionString: {
                type: "SecureString",
                value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            type: "AzureStorage",
        },
        resourceGroupName: "exampleResourceGroup",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    linked_service = azure_native.datafactory.LinkedService("linkedService",
        factory_name="exampleFactoryName",
        linked_service_name="exampleLinkedService",
        properties={
            "connection_string": {
                "type": "SecureString",
                "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            "type": "AzureStorage",
        },
        resource_group_name="exampleResourceGroup")
    
    resources:
      linkedService:
        type: azure-native:datafactory:LinkedService
        properties:
          factoryName: exampleFactoryName
          linkedServiceName: exampleLinkedService
          properties:
            connectionString:
              type: SecureString
              value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
            type: AzureStorage
          resourceGroupName: exampleResourceGroup
    

    LinkedServices_Update

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
        {
            FactoryName = "exampleFactoryName",
            LinkedServiceName = "exampleLinkedService",
            Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
            {
                ConnectionString = new Dictionary<string, object?>
                {
                    ["type"] = "SecureString",
                    ["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
                },
                Description = "Example description",
                Type = "AzureStorage",
            },
            ResourceGroupName = "exampleResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
    			FactoryName:       pulumi.String("exampleFactoryName"),
    			LinkedServiceName: pulumi.String("exampleLinkedService"),
    			Properties: &datafactory.AzureStorageLinkedServiceArgs{
    				ConnectionString: pulumi.Any(map[string]interface{}{
    					"type":  "SecureString",
    					"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
    				}),
    				Description: pulumi.String("Example description"),
    				Type:        pulumi.String("AzureStorage"),
    			},
    			ResourceGroupName: pulumi.String("exampleResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.datafactory.LinkedService;
    import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
    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 linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
                .factoryName("exampleFactoryName")
                .linkedServiceName("exampleLinkedService")
                .properties(AzureStorageLinkedServiceArgs.builder()
                    .connectionString(Map.ofEntries(
                        Map.entry("type", "SecureString"),
                        Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
                    ))
                    .description("Example description")
                    .type("AzureStorage")
                    .build())
                .resourceGroupName("exampleResourceGroup")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
        factoryName: "exampleFactoryName",
        linkedServiceName: "exampleLinkedService",
        properties: {
            connectionString: {
                type: "SecureString",
                value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            description: "Example description",
            type: "AzureStorage",
        },
        resourceGroupName: "exampleResourceGroup",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    linked_service = azure_native.datafactory.LinkedService("linkedService",
        factory_name="exampleFactoryName",
        linked_service_name="exampleLinkedService",
        properties={
            "connection_string": {
                "type": "SecureString",
                "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            "description": "Example description",
            "type": "AzureStorage",
        },
        resource_group_name="exampleResourceGroup")
    
    resources:
      linkedService:
        type: azure-native:datafactory:LinkedService
        properties:
          factoryName: exampleFactoryName
          linkedServiceName: exampleLinkedService
          properties:
            connectionString:
              type: SecureString
              value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
            description: Example description
            type: AzureStorage
          resourceGroupName: exampleResourceGroup
    

    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,
                      factory_name: Optional[str] = None,
                      properties: Optional[Union[AmazonMWSLinkedServiceArgs, AmazonRdsForOracleLinkedServiceArgs, AmazonRdsForSqlServerLinkedServiceArgs, AmazonRedshiftLinkedServiceArgs, AmazonS3CompatibleLinkedServiceArgs, AmazonS3LinkedServiceArgs, AppFiguresLinkedServiceArgs, AsanaLinkedServiceArgs, AzureBatchLinkedServiceArgs, AzureBlobFSLinkedServiceArgs, AzureBlobStorageLinkedServiceArgs, AzureDataExplorerLinkedServiceArgs, AzureDataLakeAnalyticsLinkedServiceArgs, AzureDataLakeStoreLinkedServiceArgs, AzureDatabricksDeltaLakeLinkedServiceArgs, AzureDatabricksLinkedServiceArgs, AzureFileStorageLinkedServiceArgs, AzureFunctionLinkedServiceArgs, AzureKeyVaultLinkedServiceArgs, AzureMLLinkedServiceArgs, AzureMLServiceLinkedServiceArgs, AzureMariaDBLinkedServiceArgs, AzureMySqlLinkedServiceArgs, AzurePostgreSqlLinkedServiceArgs, AzureSearchLinkedServiceArgs, AzureSqlDWLinkedServiceArgs, AzureSqlDatabaseLinkedServiceArgs, AzureSqlMILinkedServiceArgs, AzureStorageLinkedServiceArgs, AzureSynapseArtifactsLinkedServiceArgs, AzureTableStorageLinkedServiceArgs, CassandraLinkedServiceArgs, CommonDataServiceForAppsLinkedServiceArgs, ConcurLinkedServiceArgs, CosmosDbLinkedServiceArgs, CosmosDbMongoDbApiLinkedServiceArgs, CouchbaseLinkedServiceArgs, CustomDataSourceLinkedServiceArgs, DataworldLinkedServiceArgs, Db2LinkedServiceArgs, DrillLinkedServiceArgs, DynamicsAXLinkedServiceArgs, DynamicsCrmLinkedServiceArgs, DynamicsLinkedServiceArgs, EloquaLinkedServiceArgs, FileServerLinkedServiceArgs, FtpServerLinkedServiceArgs, GoogleAdWordsLinkedServiceArgs, GoogleBigQueryLinkedServiceArgs, GoogleBigQueryV2LinkedServiceArgs, GoogleCloudStorageLinkedServiceArgs, GoogleSheetsLinkedServiceArgs, GreenplumLinkedServiceArgs, HBaseLinkedServiceArgs, HDInsightLinkedServiceArgs, HDInsightOnDemandLinkedServiceArgs, HdfsLinkedServiceArgs, HiveLinkedServiceArgs, HttpLinkedServiceArgs, HubspotLinkedServiceArgs, ImpalaLinkedServiceArgs, InformixLinkedServiceArgs, JiraLinkedServiceArgs, LakeHouseLinkedServiceArgs, MagentoLinkedServiceArgs, MariaDBLinkedServiceArgs, MarketoLinkedServiceArgs, MicrosoftAccessLinkedServiceArgs, MongoDbAtlasLinkedServiceArgs, MongoDbLinkedServiceArgs, MongoDbV2LinkedServiceArgs, MySqlLinkedServiceArgs, NetezzaLinkedServiceArgs, ODataLinkedServiceArgs, OdbcLinkedServiceArgs, Office365LinkedServiceArgs, OracleCloudStorageLinkedServiceArgs, OracleLinkedServiceArgs, OracleServiceCloudLinkedServiceArgs, PaypalLinkedServiceArgs, PhoenixLinkedServiceArgs, PostgreSqlLinkedServiceArgs, PostgreSqlV2LinkedServiceArgs, PrestoLinkedServiceArgs, QuickBooksLinkedServiceArgs, QuickbaseLinkedServiceArgs, ResponsysLinkedServiceArgs, RestServiceLinkedServiceArgs, SalesforceLinkedServiceArgs, SalesforceMarketingCloudLinkedServiceArgs, SalesforceServiceCloudLinkedServiceArgs, SalesforceServiceCloudV2LinkedServiceArgs, SalesforceV2LinkedServiceArgs, SapBWLinkedServiceArgs, SapCloudForCustomerLinkedServiceArgs, SapEccLinkedServiceArgs, SapHanaLinkedServiceArgs, SapOdpLinkedServiceArgs, SapOpenHubLinkedServiceArgs, SapTableLinkedServiceArgs, ServiceNowLinkedServiceArgs, ServiceNowV2LinkedServiceArgs, SftpServerLinkedServiceArgs, SharePointOnlineListLinkedServiceArgs, ShopifyLinkedServiceArgs, SmartsheetLinkedServiceArgs, SnowflakeLinkedServiceArgs, SnowflakeV2LinkedServiceArgs, SparkLinkedServiceArgs, SqlServerLinkedServiceArgs, SquareLinkedServiceArgs, SybaseLinkedServiceArgs, TeamDeskLinkedServiceArgs, TeradataLinkedServiceArgs, TwilioLinkedServiceArgs, VerticaLinkedServiceArgs, WarehouseLinkedServiceArgs, WebLinkedServiceArgs, XeroLinkedServiceArgs, ZendeskLinkedServiceArgs, ZohoLinkedServiceArgs]] = None,
                      resource_group_name: Optional[str] = None,
                      linked_service_name: Optional[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-native:datafactory: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 linkedServiceResource = new AzureNative.DataFactory.LinkedService("linkedServiceResource", new()
    {
        FactoryName = "string",
        Properties = new AzureNative.DataFactory.Inputs.AmazonMWSLinkedServiceArgs
        {
            Endpoint = "any",
            Type = "AmazonMWS",
            SellerID = "any",
            AccessKeyId = "any",
            MarketplaceID = "any",
            Parameters = 
            {
                { "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "string",
                    DefaultValue = "any",
                } },
            },
            EncryptedCredential = "string",
            MwsAuthToken = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
            {
                SecretName = "any",
                Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                    Parameters = 
                    {
                        { "string", "any" },
                    },
                },
                Type = "AzureKeyVaultSecret",
                SecretVersion = "any",
            },
            Description = "string",
            SecretKey = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
            {
                SecretName = "any",
                Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                    Parameters = 
                    {
                        { "string", "any" },
                    },
                },
                Type = "AzureKeyVaultSecret",
                SecretVersion = "any",
            },
            ConnectVia = new AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceArgs
            {
                ReferenceName = "string",
                Type = "string",
                Parameters = 
                {
                    { "string", "any" },
                },
            },
            Annotations = new[]
            {
                "any",
            },
            UseEncryptedEndpoints = "any",
            UseHostVerification = "any",
            UsePeerVerification = "any",
            Version = "string",
        },
        ResourceGroupName = "string",
        LinkedServiceName = "string",
    });
    
    example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
    	FactoryName: pulumi.String("string"),
    	Properties: &datafactory.AmazonMWSLinkedServiceArgs{
    		Endpoint:      pulumi.Any("any"),
    		Type:          pulumi.String("AmazonMWS"),
    		SellerID:      pulumi.Any("any"),
    		AccessKeyId:   pulumi.Any("any"),
    		MarketplaceID: pulumi.Any("any"),
    		Parameters: datafactory.ParameterSpecificationMap{
    			"string": &datafactory.ParameterSpecificationArgs{
    				Type:         pulumi.String("string"),
    				DefaultValue: pulumi.Any("any"),
    			},
    		},
    		EncryptedCredential: pulumi.String("string"),
    		MwsAuthToken: datafactory.AzureKeyVaultSecretReference{
    			SecretName: "any",
    			Store: datafactory.LinkedServiceReference{
    				ReferenceName: "string",
    				Type:          "string",
    				Parameters: map[string]interface{}{
    					"string": "any",
    				},
    			},
    			Type:          "AzureKeyVaultSecret",
    			SecretVersion: "any",
    		},
    		Description: pulumi.String("string"),
    		SecretKey: datafactory.AzureKeyVaultSecretReference{
    			SecretName: "any",
    			Store: datafactory.LinkedServiceReference{
    				ReferenceName: "string",
    				Type:          "string",
    				Parameters: map[string]interface{}{
    					"string": "any",
    				},
    			},
    			Type:          "AzureKeyVaultSecret",
    			SecretVersion: "any",
    		},
    		ConnectVia: &datafactory.IntegrationRuntimeReferenceArgs{
    			ReferenceName: pulumi.String("string"),
    			Type:          pulumi.String("string"),
    			Parameters: pulumi.Map{
    				"string": pulumi.Any("any"),
    			},
    		},
    		Annotations: pulumi.Array{
    			pulumi.Any("any"),
    		},
    		UseEncryptedEndpoints: pulumi.Any("any"),
    		UseHostVerification:   pulumi.Any("any"),
    		UsePeerVerification:   pulumi.Any("any"),
    		Version:               pulumi.String("string"),
    	},
    	ResourceGroupName: pulumi.String("string"),
    	LinkedServiceName: pulumi.String("string"),
    })
    
    var linkedServiceResource = new com.pulumi.azurenative.datafactory.LinkedService("linkedServiceResource", com.pulumi.azurenative.datafactory.LinkedServiceArgs.builder()
        .factoryName("string")
        .properties(AmazonMWSLinkedServiceArgs.builder()
            .endpoint("any")
            .type("AmazonMWS")
            .sellerID("any")
            .accessKeyId("any")
            .marketplaceID("any")
            .parameters(Map.of("string", ParameterSpecificationArgs.builder()
                .type("string")
                .defaultValue("any")
                .build()))
            .encryptedCredential("string")
            .mwsAuthToken(AzureKeyVaultSecretReferenceArgs.builder()
                .secretName("any")
                .store(LinkedServiceReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .parameters(Map.of("string", "any"))
                    .build())
                .type("AzureKeyVaultSecret")
                .secretVersion("any")
                .build())
            .description("string")
            .secretKey(AzureKeyVaultSecretReferenceArgs.builder()
                .secretName("any")
                .store(LinkedServiceReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .parameters(Map.of("string", "any"))
                    .build())
                .type("AzureKeyVaultSecret")
                .secretVersion("any")
                .build())
            .connectVia(IntegrationRuntimeReferenceArgs.builder()
                .referenceName("string")
                .type("string")
                .parameters(Map.of("string", "any"))
                .build())
            .annotations("any")
            .useEncryptedEndpoints("any")
            .useHostVerification("any")
            .usePeerVerification("any")
            .version("string")
            .build())
        .resourceGroupName("string")
        .linkedServiceName("string")
        .build());
    
    linked_service_resource = azure_native.datafactory.LinkedService("linkedServiceResource",
        factory_name="string",
        properties={
            "endpoint": "any",
            "type": "AmazonMWS",
            "seller_id": "any",
            "access_key_id": "any",
            "marketplace_id": "any",
            "parameters": {
                "string": {
                    "type": "string",
                    "default_value": "any",
                },
            },
            "encrypted_credential": "string",
            "mws_auth_token": {
                "secret_name": "any",
                "store": {
                    "reference_name": "string",
                    "type": "string",
                    "parameters": {
                        "string": "any",
                    },
                },
                "type": "AzureKeyVaultSecret",
                "secret_version": "any",
            },
            "description": "string",
            "secret_key": {
                "secret_name": "any",
                "store": {
                    "reference_name": "string",
                    "type": "string",
                    "parameters": {
                        "string": "any",
                    },
                },
                "type": "AzureKeyVaultSecret",
                "secret_version": "any",
            },
            "connect_via": {
                "reference_name": "string",
                "type": "string",
                "parameters": {
                    "string": "any",
                },
            },
            "annotations": ["any"],
            "use_encrypted_endpoints": "any",
            "use_host_verification": "any",
            "use_peer_verification": "any",
            "version": "string",
        },
        resource_group_name="string",
        linked_service_name="string")
    
    const linkedServiceResource = new azure_native.datafactory.LinkedService("linkedServiceResource", {
        factoryName: "string",
        properties: {
            endpoint: "any",
            type: "AmazonMWS",
            sellerID: "any",
            accessKeyId: "any",
            marketplaceID: "any",
            parameters: {
                string: {
                    type: "string",
                    defaultValue: "any",
                },
            },
            encryptedCredential: "string",
            mwsAuthToken: {
                secretName: "any",
                store: {
                    referenceName: "string",
                    type: "string",
                    parameters: {
                        string: "any",
                    },
                },
                type: "AzureKeyVaultSecret",
                secretVersion: "any",
            },
            description: "string",
            secretKey: {
                secretName: "any",
                store: {
                    referenceName: "string",
                    type: "string",
                    parameters: {
                        string: "any",
                    },
                },
                type: "AzureKeyVaultSecret",
                secretVersion: "any",
            },
            connectVia: {
                referenceName: "string",
                type: "string",
                parameters: {
                    string: "any",
                },
            },
            annotations: ["any"],
            useEncryptedEndpoints: "any",
            useHostVerification: "any",
            usePeerVerification: "any",
            version: "string",
        },
        resourceGroupName: "string",
        linkedServiceName: "string",
    });
    
    type: azure-native:datafactory:LinkedService
    properties:
        factoryName: string
        linkedServiceName: string
        properties:
            accessKeyId: any
            annotations:
                - any
            connectVia:
                parameters:
                    string: any
                referenceName: string
                type: string
            description: string
            encryptedCredential: string
            endpoint: any
            marketplaceID: any
            mwsAuthToken:
                secretName: any
                secretVersion: any
                store:
                    parameters:
                        string: any
                    referenceName: string
                    type: string
                type: AzureKeyVaultSecret
            parameters:
                string:
                    defaultValue: any
                    type: string
            secretKey:
                secretName: any
                secretVersion: any
                store:
                    parameters:
                        string: any
                    referenceName: string
                    type: string
                type: AzureKeyVaultSecret
            sellerID: any
            type: AmazonMWS
            useEncryptedEndpoints: any
            useHostVerification: any
            usePeerVerification: any
            version: string
        resourceGroupName: 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:

    FactoryName string
    The factory name.
    Properties Pulumi.AzureNative.DataFactory.Inputs.AmazonMWSLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LinkedService | Pulumi.AzureNative.DataFactory.Inputs.AppFiguresLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AsanaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureBatchLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeAnalyticsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureFunctionLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureMLLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureMLServiceLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDWLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDatabaseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlMILinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureSynapseArtifactsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.AzureTableStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CassandraLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ConcurLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.CustomDataSourceLinkedService | Pulumi.AzureNative.DataFactory.Inputs.DataworldLinkedService | Pulumi.AzureNative.DataFactory.Inputs.Db2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.DrillLinkedService | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXLinkedService | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmLinkedService | Pulumi.AzureNative.DataFactory.Inputs.DynamicsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.EloquaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.FileServerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryLinkedService | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.GoogleSheetsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.GreenplumLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HBaseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HDInsightLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HDInsightOnDemandLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HdfsLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HiveLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HttpLinkedService | Pulumi.AzureNative.DataFactory.Inputs.HubspotLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ImpalaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.InformixLinkedService | Pulumi.AzureNative.DataFactory.Inputs.JiraLinkedService | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MagentoLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MariaDBLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MarketoLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MongoDbLinkedService | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.MySqlLinkedService | Pulumi.AzureNative.DataFactory.Inputs.NetezzaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ODataLinkedService | Pulumi.AzureNative.DataFactory.Inputs.OdbcLinkedService | Pulumi.AzureNative.DataFactory.Inputs.Office365LinkedService | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLinkedService | Pulumi.AzureNative.DataFactory.Inputs.OracleLinkedService | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudLinkedService | Pulumi.AzureNative.DataFactory.Inputs.PaypalLinkedService | Pulumi.AzureNative.DataFactory.Inputs.PhoenixLinkedService | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlLinkedService | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.PrestoLinkedService | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksLinkedService | Pulumi.AzureNative.DataFactory.Inputs.QuickbaseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ResponsysLinkedService | Pulumi.AzureNative.DataFactory.Inputs.RestServiceLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SalesforceLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapBWLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapEccLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapHanaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapOdpLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SapTableLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.SftpServerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ShopifyLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SmartsheetLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2LinkedService | Pulumi.AzureNative.DataFactory.Inputs.SparkLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SqlServerLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SquareLinkedService | Pulumi.AzureNative.DataFactory.Inputs.SybaseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.TeamDeskLinkedService | Pulumi.AzureNative.DataFactory.Inputs.TeradataLinkedService | Pulumi.AzureNative.DataFactory.Inputs.TwilioLinkedService | Pulumi.AzureNative.DataFactory.Inputs.VerticaLinkedService | Pulumi.AzureNative.DataFactory.Inputs.WarehouseLinkedService | Pulumi.AzureNative.DataFactory.Inputs.WebLinkedService | Pulumi.AzureNative.DataFactory.Inputs.XeroLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ZendeskLinkedService | Pulumi.AzureNative.DataFactory.Inputs.ZohoLinkedService
    Properties of linked service.
    ResourceGroupName string
    The resource group name.
    LinkedServiceName string
    The linked service name.
    FactoryName string
    The factory name.
    Properties AmazonMWSLinkedServiceArgs | AmazonRdsForOracleLinkedServiceArgs | AmazonRdsForSqlServerLinkedServiceArgs | AmazonRedshiftLinkedServiceArgs | AmazonS3CompatibleLinkedServiceArgs | AmazonS3LinkedServiceArgs | AppFiguresLinkedServiceArgs | AsanaLinkedServiceArgs | AzureBatchLinkedServiceArgs | AzureBlobFSLinkedServiceArgs | AzureBlobStorageLinkedServiceArgs | AzureDataExplorerLinkedServiceArgs | AzureDataLakeAnalyticsLinkedServiceArgs | AzureDataLakeStoreLinkedServiceArgs | AzureDatabricksDeltaLakeLinkedServiceArgs | AzureDatabricksLinkedServiceArgs | AzureFileStorageLinkedServiceArgs | AzureFunctionLinkedServiceArgs | AzureKeyVaultLinkedServiceArgs | AzureMLLinkedServiceArgs | AzureMLServiceLinkedServiceArgs | AzureMariaDBLinkedServiceArgs | AzureMySqlLinkedServiceArgs | AzurePostgreSqlLinkedServiceArgs | AzureSearchLinkedServiceArgs | AzureSqlDWLinkedServiceArgs | AzureSqlDatabaseLinkedServiceArgs | AzureSqlMILinkedServiceArgs | AzureStorageLinkedServiceArgs | AzureSynapseArtifactsLinkedServiceArgs | AzureTableStorageLinkedServiceArgs | CassandraLinkedServiceArgs | CommonDataServiceForAppsLinkedServiceArgs | ConcurLinkedServiceArgs | CosmosDbLinkedServiceArgs | CosmosDbMongoDbApiLinkedServiceArgs | CouchbaseLinkedServiceArgs | CustomDataSourceLinkedServiceArgs | DataworldLinkedServiceArgs | Db2LinkedServiceArgs | DrillLinkedServiceArgs | DynamicsAXLinkedServiceArgs | DynamicsCrmLinkedServiceArgs | DynamicsLinkedServiceArgs | EloquaLinkedServiceArgs | FileServerLinkedServiceArgs | FtpServerLinkedServiceArgs | GoogleAdWordsLinkedServiceArgs | GoogleBigQueryLinkedServiceArgs | GoogleBigQueryV2LinkedServiceArgs | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | LakeHouseLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PostgreSqlV2LinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SalesforceServiceCloudV2LinkedServiceArgs | SalesforceV2LinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | ServiceNowV2LinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SnowflakeV2LinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | WarehouseLinkedServiceArgs | WebLinkedServiceArgs | XeroLinkedServiceArgs | ZendeskLinkedServiceArgs | ZohoLinkedServiceArgs
    Properties of linked service.
    ResourceGroupName string
    The resource group name.
    LinkedServiceName string
    The linked service name.
    factoryName String
    The factory name.
    properties AmazonMWSLinkedService | AmazonRdsForOracleLinkedService | AmazonRdsForSqlServerLinkedService | AmazonRedshiftLinkedService | AmazonS3CompatibleLinkedService | AmazonS3LinkedService | AppFiguresLinkedService | AsanaLinkedService | AzureBatchLinkedService | AzureBlobFSLinkedService | AzureBlobStorageLinkedService | AzureDataExplorerLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDataLakeStoreLinkedService | AzureDatabricksDeltaLakeLinkedService | AzureDatabricksLinkedService | AzureFileStorageLinkedService | AzureFunctionLinkedService | AzureKeyVaultLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | AzureMariaDBLinkedService | AzureMySqlLinkedService | AzurePostgreSqlLinkedService | AzureSearchLinkedService | AzureSqlDWLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureStorageLinkedService | AzureSynapseArtifactsLinkedService | AzureTableStorageLinkedService | CassandraLinkedService | CommonDataServiceForAppsLinkedService | ConcurLinkedService | CosmosDbLinkedService | CosmosDbMongoDbApiLinkedService | CouchbaseLinkedService | CustomDataSourceLinkedService | DataworldLinkedService | Db2LinkedService | DrillLinkedService | DynamicsAXLinkedService | DynamicsCrmLinkedService | DynamicsLinkedService | EloquaLinkedService | FileServerLinkedService | FtpServerLinkedService | GoogleAdWordsLinkedService | GoogleBigQueryLinkedService | GoogleBigQueryV2LinkedService | GoogleCloudStorageLinkedService | GoogleSheetsLinkedService | GreenplumLinkedService | HBaseLinkedService | HDInsightLinkedService | HDInsightOnDemandLinkedService | HdfsLinkedService | HiveLinkedService | HttpLinkedService | HubspotLinkedService | ImpalaLinkedService | InformixLinkedService | JiraLinkedService | LakeHouseLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | MicrosoftAccessLinkedService | MongoDbAtlasLinkedService | MongoDbLinkedService | MongoDbV2LinkedService | MySqlLinkedService | NetezzaLinkedService | ODataLinkedService | OdbcLinkedService | Office365LinkedService | OracleCloudStorageLinkedService | OracleLinkedService | OracleServiceCloudLinkedService | PaypalLinkedService | PhoenixLinkedService | PostgreSqlLinkedService | PostgreSqlV2LinkedService | PrestoLinkedService | QuickBooksLinkedService | QuickbaseLinkedService | ResponsysLinkedService | RestServiceLinkedService | SalesforceLinkedService | SalesforceMarketingCloudLinkedService | SalesforceServiceCloudLinkedService | SalesforceServiceCloudV2LinkedService | SalesforceV2LinkedService | SapBWLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapHanaLinkedService | SapOdpLinkedService | SapOpenHubLinkedService | SapTableLinkedService | ServiceNowLinkedService | ServiceNowV2LinkedService | SftpServerLinkedService | SharePointOnlineListLinkedService | ShopifyLinkedService | SmartsheetLinkedService | SnowflakeLinkedService | SnowflakeV2LinkedService | SparkLinkedService | SqlServerLinkedService | SquareLinkedService | SybaseLinkedService | TeamDeskLinkedService | TeradataLinkedService | TwilioLinkedService | VerticaLinkedService | WarehouseLinkedService | WebLinkedService | XeroLinkedService | ZendeskLinkedService | ZohoLinkedService
    Properties of linked service.
    resourceGroupName String
    The resource group name.
    linkedServiceName String
    The linked service name.
    factoryName string
    The factory name.
    properties AmazonMWSLinkedService | AmazonRdsForOracleLinkedService | AmazonRdsForSqlServerLinkedService | AmazonRedshiftLinkedService | AmazonS3CompatibleLinkedService | AmazonS3LinkedService | AppFiguresLinkedService | AsanaLinkedService | AzureBatchLinkedService | AzureBlobFSLinkedService | AzureBlobStorageLinkedService | AzureDataExplorerLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDataLakeStoreLinkedService | AzureDatabricksDeltaLakeLinkedService | AzureDatabricksLinkedService | AzureFileStorageLinkedService | AzureFunctionLinkedService | AzureKeyVaultLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | AzureMariaDBLinkedService | AzureMySqlLinkedService | AzurePostgreSqlLinkedService | AzureSearchLinkedService | AzureSqlDWLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureStorageLinkedService | AzureSynapseArtifactsLinkedService | AzureTableStorageLinkedService | CassandraLinkedService | CommonDataServiceForAppsLinkedService | ConcurLinkedService | CosmosDbLinkedService | CosmosDbMongoDbApiLinkedService | CouchbaseLinkedService | CustomDataSourceLinkedService | DataworldLinkedService | Db2LinkedService | DrillLinkedService | DynamicsAXLinkedService | DynamicsCrmLinkedService | DynamicsLinkedService | EloquaLinkedService | FileServerLinkedService | FtpServerLinkedService | GoogleAdWordsLinkedService | GoogleBigQueryLinkedService | GoogleBigQueryV2LinkedService | GoogleCloudStorageLinkedService | GoogleSheetsLinkedService | GreenplumLinkedService | HBaseLinkedService | HDInsightLinkedService | HDInsightOnDemandLinkedService | HdfsLinkedService | HiveLinkedService | HttpLinkedService | HubspotLinkedService | ImpalaLinkedService | InformixLinkedService | JiraLinkedService | LakeHouseLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | MicrosoftAccessLinkedService | MongoDbAtlasLinkedService | MongoDbLinkedService | MongoDbV2LinkedService | MySqlLinkedService | NetezzaLinkedService | ODataLinkedService | OdbcLinkedService | Office365LinkedService | OracleCloudStorageLinkedService | OracleLinkedService | OracleServiceCloudLinkedService | PaypalLinkedService | PhoenixLinkedService | PostgreSqlLinkedService | PostgreSqlV2LinkedService | PrestoLinkedService | QuickBooksLinkedService | QuickbaseLinkedService | ResponsysLinkedService | RestServiceLinkedService | SalesforceLinkedService | SalesforceMarketingCloudLinkedService | SalesforceServiceCloudLinkedService | SalesforceServiceCloudV2LinkedService | SalesforceV2LinkedService | SapBWLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapHanaLinkedService | SapOdpLinkedService | SapOpenHubLinkedService | SapTableLinkedService | ServiceNowLinkedService | ServiceNowV2LinkedService | SftpServerLinkedService | SharePointOnlineListLinkedService | ShopifyLinkedService | SmartsheetLinkedService | SnowflakeLinkedService | SnowflakeV2LinkedService | SparkLinkedService | SqlServerLinkedService | SquareLinkedService | SybaseLinkedService | TeamDeskLinkedService | TeradataLinkedService | TwilioLinkedService | VerticaLinkedService | WarehouseLinkedService | WebLinkedService | XeroLinkedService | ZendeskLinkedService | ZohoLinkedService
    Properties of linked service.
    resourceGroupName string
    The resource group name.
    linkedServiceName string
    The linked service name.
    factory_name str
    The factory name.
    properties AmazonMWSLinkedServiceArgs | AmazonRdsForOracleLinkedServiceArgs | AmazonRdsForSqlServerLinkedServiceArgs | AmazonRedshiftLinkedServiceArgs | AmazonS3CompatibleLinkedServiceArgs | AmazonS3LinkedServiceArgs | AppFiguresLinkedServiceArgs | AsanaLinkedServiceArgs | AzureBatchLinkedServiceArgs | AzureBlobFSLinkedServiceArgs | AzureBlobStorageLinkedServiceArgs | AzureDataExplorerLinkedServiceArgs | AzureDataLakeAnalyticsLinkedServiceArgs | AzureDataLakeStoreLinkedServiceArgs | AzureDatabricksDeltaLakeLinkedServiceArgs | AzureDatabricksLinkedServiceArgs | AzureFileStorageLinkedServiceArgs | AzureFunctionLinkedServiceArgs | AzureKeyVaultLinkedServiceArgs | AzureMLLinkedServiceArgs | AzureMLServiceLinkedServiceArgs | AzureMariaDBLinkedServiceArgs | AzureMySqlLinkedServiceArgs | AzurePostgreSqlLinkedServiceArgs | AzureSearchLinkedServiceArgs | AzureSqlDWLinkedServiceArgs | AzureSqlDatabaseLinkedServiceArgs | AzureSqlMILinkedServiceArgs | AzureStorageLinkedServiceArgs | AzureSynapseArtifactsLinkedServiceArgs | AzureTableStorageLinkedServiceArgs | CassandraLinkedServiceArgs | CommonDataServiceForAppsLinkedServiceArgs | ConcurLinkedServiceArgs | CosmosDbLinkedServiceArgs | CosmosDbMongoDbApiLinkedServiceArgs | CouchbaseLinkedServiceArgs | CustomDataSourceLinkedServiceArgs | DataworldLinkedServiceArgs | Db2LinkedServiceArgs | DrillLinkedServiceArgs | DynamicsAXLinkedServiceArgs | DynamicsCrmLinkedServiceArgs | DynamicsLinkedServiceArgs | EloquaLinkedServiceArgs | FileServerLinkedServiceArgs | FtpServerLinkedServiceArgs | GoogleAdWordsLinkedServiceArgs | GoogleBigQueryLinkedServiceArgs | GoogleBigQueryV2LinkedServiceArgs | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | LakeHouseLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PostgreSqlV2LinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SalesforceServiceCloudV2LinkedServiceArgs | SalesforceV2LinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | ServiceNowV2LinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SnowflakeV2LinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | WarehouseLinkedServiceArgs | WebLinkedServiceArgs | XeroLinkedServiceArgs | ZendeskLinkedServiceArgs | ZohoLinkedServiceArgs
    Properties of linked service.
    resource_group_name str
    The resource group name.
    linked_service_name str
    The linked service name.
    factoryName String
    The factory name.
    properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Properties of linked service.
    resourceGroupName String
    The resource group name.
    linkedServiceName String
    The linked service name.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    AzureApiVersion string
    The Azure API version of the resource.
    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    azureApiVersion String
    The Azure API version of the resource.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.
    azureApiVersion string
    The Azure API version of the resource.
    etag string
    Etag identifies change in the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name.
    type string
    The resource type.
    azure_api_version str
    The Azure API version of the resource.
    etag str
    Etag identifies change in the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name.
    type str
    The resource type.
    azureApiVersion String
    The Azure API version of the resource.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.

    Supporting Types

    AmazonMWSLinkedService, AmazonMWSLinkedServiceArgs

    AccessKeyId object
    The access key id used to access data.
    Endpoint object
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    MarketplaceID object
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    SellerID object
    The Amazon seller ID.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    MwsAuthToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Amazon MWS authentication token.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SecretKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The secret key used to access data.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key id used to access data.
    Endpoint interface{}
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    MarketplaceID interface{}
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    SellerID interface{}
    The Amazon seller ID.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    MwsAuthToken AzureKeyVaultSecretReference | SecureString
    The Amazon MWS authentication token.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SecretKey AzureKeyVaultSecretReference | SecureString
    The secret key used to access data.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key id used to access data.
    endpoint Object
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID Object
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID Object
    The Amazon seller ID.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken AzureKeyVaultSecretReference | SecureString
    The Amazon MWS authentication token.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    secretKey AzureKeyVaultSecretReference | SecureString
    The secret key used to access data.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    accessKeyId any
    The access key id used to access data.
    endpoint any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID any
    The Amazon seller ID.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken AzureKeyVaultSecretReference | SecureString
    The Amazon MWS authentication token.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    secretKey AzureKeyVaultSecretReference | SecureString
    The secret key used to access data.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    access_key_id Any
    The access key id used to access data.
    endpoint Any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplace_id Any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    seller_id Any
    The Amazon seller ID.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mws_auth_token AzureKeyVaultSecretReference | SecureString
    The Amazon MWS authentication token.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    secret_key AzureKeyVaultSecretReference | SecureString
    The secret key used to access data.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    accessKeyId Any
    The access key id used to access data.
    endpoint Any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID Any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID Any
    The Amazon seller ID.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken Property Map | Property Map
    The Amazon MWS authentication token.
    parameters Map<Property Map>
    Parameters for linked service.
    secretKey Property Map | Property Map
    The secret key used to access data.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    AmazonMWSLinkedServiceResponse, AmazonMWSLinkedServiceResponseArgs

    AccessKeyId object
    The access key id used to access data.
    Endpoint object
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    MarketplaceID object
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    SellerID object
    The Amazon seller ID.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    MwsAuthToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Amazon MWS authentication token.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SecretKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The secret key used to access data.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key id used to access data.
    Endpoint interface{}
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    MarketplaceID interface{}
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    SellerID interface{}
    The Amazon seller ID.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    MwsAuthToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Amazon MWS authentication token.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SecretKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret key used to access data.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key id used to access data.
    endpoint Object
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID Object
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID Object
    The Amazon seller ID.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Amazon MWS authentication token.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    secretKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret key used to access data.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    accessKeyId any
    The access key id used to access data.
    endpoint any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID any
    The Amazon seller ID.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Amazon MWS authentication token.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    secretKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret key used to access data.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    access_key_id Any
    The access key id used to access data.
    endpoint Any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplace_id Any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    seller_id Any
    The Amazon seller ID.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mws_auth_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Amazon MWS authentication token.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    secret_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret key used to access data.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    accessKeyId Any
    The access key id used to access data.
    endpoint Any
    The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
    marketplaceID Any
    The Amazon Marketplace ID you want to retrieve data from. To retrieve data from multiple Marketplace IDs, separate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
    sellerID Any
    The Amazon seller ID.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    mwsAuthToken Property Map | Property Map
    The Amazon MWS authentication token.
    parameters Map<Property Map>
    Parameters for linked service.
    secretKey Property Map | Property Map
    The secret key used to access data.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    AmazonRdsForOracleAuthenticationType, AmazonRdsForOracleAuthenticationTypeArgs

    Basic
    Basic
    AmazonRdsForOracleAuthenticationTypeBasic
    Basic
    Basic
    Basic
    Basic
    Basic
    BASIC
    Basic
    "Basic"
    Basic

    AmazonRdsForOracleLinkedService, AmazonRdsForOracleLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AmazonRdsForOracleAuthenticationType
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    CryptoChecksumClient object
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    CryptoChecksumTypesClient object
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    Description string
    Linked service description.
    EnableBulkLoad object
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    EncryptionClient object
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    EncryptionTypesClient object
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    FetchSize object
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    FetchTswtzAsTimestamp object
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    InitialLobFetchSize object
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    InitializationString object
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Azure key vault secret reference of password in connection string.
    Server object
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    StatementCacheSize object
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    SupportV1DataTypes object
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    Username object
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | AmazonRdsForOracleAuthenticationType
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    CryptoChecksumClient interface{}
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    CryptoChecksumTypesClient interface{}
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    Description string
    Linked service description.
    EnableBulkLoad interface{}
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    EncryptionClient interface{}
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    EncryptionTypesClient interface{}
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    FetchSize interface{}
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    FetchTswtzAsTimestamp interface{}
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    InitialLobFetchSize interface{}
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    InitializationString interface{}
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of password in connection string.
    Server interface{}
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    StatementCacheSize interface{}
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    SupportV1DataTypes interface{}
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    Username interface{}
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | AmazonRdsForOracleAuthenticationType
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient Object
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient Object
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description String
    Linked service description.
    enableBulkLoad Object
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient Object
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient Object
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize Object
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp Object
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize Object
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString Object
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of password in connection string.
    server Object
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize Object
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes Object
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Object
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | AmazonRdsForOracleAuthenticationType
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description string
    Linked service description.
    enableBulkLoad any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of password in connection string.
    server any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | AmazonRdsForOracleAuthenticationType
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    crypto_checksum_client Any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    crypto_checksum_types_client Any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description str
    Linked service description.
    enable_bulk_load Any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryption_client Any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryption_types_client Any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetch_size Any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetch_tswtz_as_timestamp Any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initial_lob_fetch_size Any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initialization_string Any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of password in connection string.
    server Any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statement_cache_size Any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    support_v1_data_types Any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "Basic"
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient Any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient Any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description String
    Linked service description.
    enableBulkLoad Any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient Any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient Any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize Any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp Any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize Any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString Any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The Azure key vault secret reference of password in connection string.
    server Any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize Any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes Any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version String
    Version of the linked service.

    AmazonRdsForOracleLinkedServiceResponse, AmazonRdsForOracleLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    CryptoChecksumClient object
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    CryptoChecksumTypesClient object
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    Description string
    Linked service description.
    EnableBulkLoad object
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    EncryptionClient object
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    EncryptionTypesClient object
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    FetchSize object
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    FetchTswtzAsTimestamp object
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    InitialLobFetchSize object
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    InitializationString object
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    Server object
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    StatementCacheSize object
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    SupportV1DataTypes object
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    Username object
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    CryptoChecksumClient interface{}
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    CryptoChecksumTypesClient interface{}
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    Description string
    Linked service description.
    EnableBulkLoad interface{}
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    EncryptionClient interface{}
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    EncryptionTypesClient interface{}
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    FetchSize interface{}
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    FetchTswtzAsTimestamp interface{}
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    InitialLobFetchSize interface{}
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    InitializationString interface{}
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    Server interface{}
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    StatementCacheSize interface{}
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    SupportV1DataTypes interface{}
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    Username interface{}
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient Object
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient Object
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description String
    Linked service description.
    enableBulkLoad Object
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient Object
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient Object
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize Object
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp Object
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize Object
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString Object
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    server Object
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize Object
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes Object
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Object
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description string
    Linked service description.
    enableBulkLoad any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    server any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    crypto_checksum_client Any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    crypto_checksum_types_client Any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description str
    Linked service description.
    enable_bulk_load Any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryption_client Any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryption_types_client Any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetch_size Any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetch_tswtz_as_timestamp Any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initial_lob_fetch_size Any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initialization_string Any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    server Any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statement_cache_size Any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    support_v1_data_types Any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
    cryptoChecksumClient Any
    Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    cryptoChecksumTypesClient Any
    Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
    description String
    Linked service description.
    enableBulkLoad Any
    Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    encryptionClient Any
    Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
    encryptionTypesClient Any
    Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
    fetchSize Any
    Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
    fetchTswtzAsTimestamp Any
    Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
    initialLobFetchSize Any
    Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
    initializationString Any
    Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The Azure key vault secret reference of password in connection string.
    server Any
    The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
    statementCacheSize Any
    Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
    supportV1DataTypes Any
    Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
    username Any
    The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
    version String
    Version of the linked service.

    AmazonRdsForSqlAuthenticationType, AmazonRdsForSqlAuthenticationTypeArgs

    SQL
    SQL
    Windows
    Windows
    AmazonRdsForSqlAuthenticationTypeSQL
    SQL
    AmazonRdsForSqlAuthenticationTypeWindows
    Windows
    SQL
    SQL
    Windows
    Windows
    SQL
    SQL
    Windows
    Windows
    SQL
    SQL
    WINDOWS
    Windows
    "SQL"
    SQL
    "Windows"
    Windows

    AmazonRdsForSqlServerLinkedService, AmazonRdsForSqlServerLinkedServiceArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AmazonRdsForSqlAuthenticationType
    The type used for authentication. Type: string.
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The on-premises Windows authentication password.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | AmazonRdsForSqlAuthenticationType
    The type used for authentication. Type: string.
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The on-premises Windows authentication password.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | AmazonRdsForSqlAuthenticationType
    The type used for authentication. Type: string.
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The on-premises Windows authentication password.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string | AmazonRdsForSqlAuthenticationType
    The type used for authentication. Type: string.
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The on-premises Windows authentication password.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str | AmazonRdsForSqlAuthenticationType
    The type used for authentication. Type: string.
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The on-premises Windows authentication password.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | "SQL" | "Windows"
    The type used for authentication. Type: string.
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The on-premises Windows authentication password.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonRdsForSqlServerLinkedServiceResponse, AmazonRdsForSqlServerLinkedServiceResponseArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The on-premises Windows authentication password.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The on-premises Windows authentication password.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The on-premises Windows authentication password.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string
    The type used for authentication. Type: string.
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The on-premises Windows authentication password.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str
    The type used for authentication. Type: string.
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The on-premises Windows authentication password.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The on-premises Windows authentication password.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonRedshiftLinkedService, AmazonRedshiftLinkedServiceArgs

    Database object
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Server object
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password of the Amazon Redshift source.
    Port object
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    Username object
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Database interface{}
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Server interface{}
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password of the Amazon Redshift source.
    Port interface{}
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    Username interface{}
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    database Object
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Object
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password of the Amazon Redshift source.
    port Object
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Object
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    database any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password of the Amazon Redshift source.
    port any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    database Any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password of the Amazon Redshift source.
    port Any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    database Any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password of the Amazon Redshift source.
    port Any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonRedshiftLinkedServiceResponse, AmazonRedshiftLinkedServiceResponseArgs

    Database object
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Server object
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password of the Amazon Redshift source.
    Port object
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    Username object
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Database interface{}
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Server interface{}
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the Amazon Redshift source.
    Port interface{}
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    Username interface{}
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    database Object
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Object
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the Amazon Redshift source.
    port Object
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Object
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    database any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the Amazon Redshift source.
    port any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    database Any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the Amazon Redshift source.
    port Any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    database Any
    The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
    server Any
    The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password of the Amazon Redshift source.
    port Any
    The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
    username Any
    The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonS3CompatibleLinkedService, AmazonS3CompatibleLinkedServiceArgs

    AccessKeyId object
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ForcePathStyle object
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ForcePathStyle interface{}
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle Object
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    force_path_style Any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle Any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonS3CompatibleLinkedServiceResponse, AmazonS3CompatibleLinkedServiceResponseArgs

    AccessKeyId object
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ForcePathStyle object
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ForcePathStyle interface{}
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle Object
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    force_path_style Any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Amazon S3 Compatible Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    forcePathStyle Any
    If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AmazonS3LinkedService, AmazonS3LinkedServiceArgs

    AccessKeyId object
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    SessionToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The session token for the S3 temporary security credential.
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    SessionToken AzureKeyVaultSecretReference | SecureString
    The session token for the S3 temporary security credential.
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken AzureKeyVaultSecretReference | SecureString
    The session token for the S3 temporary security credential.
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken AzureKeyVaultSecretReference | SecureString
    The session token for the S3 temporary security credential.
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReference | SecureString
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    session_token AzureKeyVaultSecretReference | SecureString
    The session token for the S3 temporary security credential.
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken Property Map | Property Map
    The session token for the S3 temporary security credential.
    version String
    Version of the linked service.

    AmazonS3LinkedServiceResponse, AmazonS3LinkedServiceResponseArgs

    AccessKeyId object
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    SessionToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The session token for the S3 temporary security credential.
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    SessionToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The session token for the S3 temporary security credential.
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The session token for the S3 temporary security credential.
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The session token for the S3 temporary security credential.
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    session_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The session token for the S3 temporary security credential.
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    sessionToken Property Map | Property Map
    The session token for the S3 temporary security credential.
    version String
    Version of the linked service.

    AppFiguresLinkedService, AppFiguresLinkedServiceArgs

    ClientKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The client key for the AppFigures source.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password of the AppFigures source.
    UserName object
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ClientKey AzureKeyVaultSecretReference | SecureString
    The client key for the AppFigures source.
    Password AzureKeyVaultSecretReference | SecureString
    The password of the AppFigures source.
    UserName interface{}
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    clientKey AzureKeyVaultSecretReference | SecureString
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReference | SecureString
    The password of the AppFigures source.
    userName Object
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    clientKey AzureKeyVaultSecretReference | SecureString
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReference | SecureString
    The password of the AppFigures source.
    userName any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    client_key AzureKeyVaultSecretReference | SecureString
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReference | SecureString
    The password of the AppFigures source.
    user_name Any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    clientKey Property Map | Property Map
    The client key for the AppFigures source.
    password Property Map | Property Map
    The password of the AppFigures source.
    userName Any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AppFiguresLinkedServiceResponse, AppFiguresLinkedServiceResponseArgs

    ClientKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The client key for the AppFigures source.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password of the AppFigures source.
    UserName object
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ClientKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client key for the AppFigures source.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the AppFigures source.
    UserName interface{}
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    clientKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the AppFigures source.
    userName Object
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    clientKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the AppFigures source.
    userName any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    client_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client key for the AppFigures source.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password of the AppFigures source.
    user_name Any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    clientKey Property Map | Property Map
    The client key for the AppFigures source.
    password Property Map | Property Map
    The password of the AppFigures source.
    userName Any
    The username of the Appfigures source. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AsanaLinkedService, AsanaLinkedServiceArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The api token for the Asana source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Asana source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Asana source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Asana source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReference | SecureString
    The api token for the Asana source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the Asana source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AsanaLinkedServiceResponse, AsanaLinkedServiceResponseArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The api token for the Asana source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Asana source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Asana source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Asana source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Asana source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the Asana source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureBatchLinkedService, AzureBatchLinkedServiceArgs

    AccountName object
    The Azure Batch account name. Type: string (or Expression with resultType string).
    BatchUri object
    The Azure Batch URI. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The Azure Storage linked service reference.
    PoolName object
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    AccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Azure Batch account access key.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    AccountName interface{}
    The Azure Batch account name. Type: string (or Expression with resultType string).
    BatchUri interface{}
    The Azure Batch URI. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    PoolName interface{}
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    AccessKey AzureKeyVaultSecretReference | SecureString
    The Azure Batch account access key.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    accountName Object
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri Object
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    poolName Object
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey AzureKeyVaultSecretReference | SecureString
    The Azure Batch account access key.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    accountName any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    poolName any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey AzureKeyVaultSecretReference | SecureString
    The Azure Batch account access key.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    account_name Any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batch_uri Any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    The Azure Storage linked service reference.
    pool_name Any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    access_key AzureKeyVaultSecretReference | SecureString
    The Azure Batch account access key.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    accountName Any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri Any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    The Azure Storage linked service reference.
    poolName Any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey Property Map | Property Map
    The Azure Batch account access key.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureBatchLinkedServiceResponse, AzureBatchLinkedServiceResponseArgs

    AccountName object
    The Azure Batch account name. Type: string (or Expression with resultType string).
    BatchUri object
    The Azure Batch URI. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    PoolName object
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    AccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Azure Batch account access key.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    AccountName interface{}
    The Azure Batch account name. Type: string (or Expression with resultType string).
    BatchUri interface{}
    The Azure Batch URI. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    PoolName interface{}
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    AccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure Batch account access key.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    accountName Object
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri Object
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    poolName Object
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure Batch account access key.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    accountName any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    poolName any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure Batch account access key.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    account_name Any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batch_uri Any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    pool_name Any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    access_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure Batch account access key.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    accountName Any
    The Azure Batch account name. Type: string (or Expression with resultType string).
    batchUri Any
    The Azure Batch URI. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    The Azure Storage linked service reference.
    poolName Any
    The Azure Batch pool name. Type: string (or Expression with resultType string).
    accessKey Property Map | Property Map
    The Azure Batch account access key.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureBlobFSLinkedService, AzureBlobFSLinkedServiceArgs

    AccountKey object
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Url object
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey interface{}
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Url interface{}
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey Object
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Object
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key Any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReference | SecureString
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map | Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureBlobFSLinkedServiceResponse, AzureBlobFSLinkedServiceResponseArgs

    AccountKey object
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Url object
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey interface{}
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Url interface{}
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey Object
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Object
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key Any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Any
    Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map | Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Storage Gen2 account.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    url Any
    Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureBlobStorageLinkedService, AzureBlobStorageLinkedServiceArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    AccountKind object
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AzureStorageAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ContainerUri object
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    AccountKind interface{}
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | AzureStorageAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ContainerUri interface{}
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    accountKind Object
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | AzureStorageAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri Object
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    accountKind any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | AzureStorageAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    account_kind Any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | AzureStorageAuthenticationType
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    container_uri Any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    accountKind Any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "Anonymous" | "AccountKey" | "SasUri" | "ServicePrincipal" | "Msi"
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri Any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureBlobStorageLinkedServiceResponse, AzureBlobStorageLinkedServiceResponseArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    AccountKind object
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ContainerUri object
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    AccountKind interface{}
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ContainerUri interface{}
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    accountKind Object
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri Object
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    accountKind any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    account_kind Any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    container_uri Any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    accountKind Any
    Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    containerUri Any
    Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataExplorerLinkedService, AzureDataExplorerLinkedServiceArgs

    Database object
    Database name for connection. Type: string (or Expression with resultType string).
    Endpoint object
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Kusto.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Database interface{}
    Database name for connection. Type: string (or Expression with resultType string).
    Endpoint interface{}
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Kusto.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    database Object
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Object
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Kusto.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    database any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Kusto.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    database Any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Kusto.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    database Any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Kusto.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataExplorerLinkedServiceResponse, AzureDataExplorerLinkedServiceResponseArgs

    Database object
    Database name for connection. Type: string (or Expression with resultType string).
    Endpoint object
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Kusto.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Database interface{}
    Database name for connection. Type: string (or Expression with resultType string).
    Endpoint interface{}
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Kusto.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    database Object
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Object
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Kusto.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    database any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Kusto.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    database Any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Kusto.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    database Any
    Database name for connection. Type: string (or Expression with resultType string).
    endpoint Any
    The endpoint of Azure Data Explorer (the engine's endpoint). URL will be in the format https://..kusto.windows.net. Type: string (or Expression with resultType string)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Kusto.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataLakeAnalyticsLinkedService, AzureDataLakeAnalyticsLinkedServiceArgs

    AccountName object
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    DataLakeAnalyticsUri object
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ResourceGroupName object
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    SubscriptionId object
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountName interface{}
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    DataLakeAnalyticsUri interface{}
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ResourceGroupName interface{}
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    SubscriptionId interface{}
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountName Object
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    dataLakeAnalyticsUri Object
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    resourceGroupName Object
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId Object
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountName any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    dataLakeAnalyticsUri any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    resourceGroupName any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_name Any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    data_lake_analytics_uri Any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    resource_group_name Any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscription_id Any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountName Any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    dataLakeAnalyticsUri Any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceGroupName Any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId Any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataLakeAnalyticsLinkedServiceResponse, AzureDataLakeAnalyticsLinkedServiceResponseArgs

    AccountName object
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    DataLakeAnalyticsUri object
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ResourceGroupName object
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    SubscriptionId object
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountName interface{}
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    DataLakeAnalyticsUri interface{}
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ResourceGroupName interface{}
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    SubscriptionId interface{}
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountName Object
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    dataLakeAnalyticsUri Object
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    resourceGroupName Object
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId Object
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountName any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    dataLakeAnalyticsUri any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    resourceGroupName any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_name Any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    data_lake_analytics_uri Any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    resource_group_name Any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscription_id Any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountName Any
    The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    dataLakeAnalyticsUri Any
    Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceGroupName Any
    Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Analytics account.
    subscriptionId Any
    Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataLakeStoreLinkedService, AzureDataLakeStoreLinkedServiceArgs

    DataLakeStoreUri object
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    AccountName object
    Data Lake Store account name. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ResourceGroupName object
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    SubscriptionId object
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    DataLakeStoreUri interface{}
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    AccountName interface{}
    Data Lake Store account name. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ResourceGroupName interface{}
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    SubscriptionId interface{}
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    dataLakeStoreUri Object
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName Object
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    resourceGroupName Object
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId Object
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    dataLakeStoreUri any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    resourceGroupName any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    data_lake_store_uri Any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    account_name Any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    resource_group_name Any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscription_id Any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    dataLakeStoreUri Any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName Any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceGroupName Any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId Any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDataLakeStoreLinkedServiceResponse, AzureDataLakeStoreLinkedServiceResponseArgs

    DataLakeStoreUri object
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    AccountName object
    Data Lake Store account name. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ResourceGroupName object
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    SubscriptionId object
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    DataLakeStoreUri interface{}
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    AccountName interface{}
    Data Lake Store account name. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ResourceGroupName interface{}
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    SubscriptionId interface{}
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    dataLakeStoreUri Object
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName Object
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    resourceGroupName Object
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId Object
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    dataLakeStoreUri any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    resourceGroupName any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    data_lake_store_uri Any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    account_name Any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    resource_group_name Any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscription_id Any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    dataLakeStoreUri Any
    Data Lake Store service URI. Type: string (or Expression with resultType string).
    accountName Any
    Data Lake Store account name. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceGroupName Any
    Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against the Azure Data Lake Store account.
    subscriptionId Any
    Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureDatabricksDeltaLakeLinkedService, AzureDatabricksDeltaLakeLinkedServiceArgs

    Domain object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClusterId object
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    Domain interface{}
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClusterId interface{}
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clusterId Object
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    clusterId any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    workspaceResourceId any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    access_token AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    cluster_id Any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    workspace_resource_id Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken Property Map | Property Map
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clusterId Any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).

    AzureDatabricksDeltaLakeLinkedServiceResponse, AzureDatabricksDeltaLakeLinkedServiceResponseArgs

    Domain object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClusterId object
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    Domain interface{}
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClusterId interface{}
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clusterId Object
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    clusterId any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    workspaceResourceId any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    cluster_id Any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    workspace_resource_id Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken Property Map | Property Map
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clusterId Any
    The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).

    AzureDatabricksLinkedService, AzureDatabricksLinkedServiceArgs

    Domain object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    DataSecurityMode object
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ExistingClusterId object
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    InstancePoolId object
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    NewClusterCustomTags Dictionary<string, object>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    NewClusterDriverNodeType object
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    NewClusterEnableElasticDisk object
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    NewClusterInitScripts object
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    NewClusterLogDestination object
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    NewClusterNodeType object
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    NewClusterNumOfWorker object
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    NewClusterSparkConf Dictionary<string, object>
    A set of optional, user-specified Spark configuration key-value pairs.
    NewClusterSparkEnvVars Dictionary<string, object>
    A set of optional, user-specified Spark environment variables key-value pairs.
    NewClusterVersion object
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    PolicyId object
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    Domain interface{}
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    DataSecurityMode interface{}
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ExistingClusterId interface{}
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    InstancePoolId interface{}
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    NewClusterCustomTags map[string]interface{}
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    NewClusterDriverNodeType interface{}
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    NewClusterEnableElasticDisk interface{}
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    NewClusterInitScripts interface{}
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    NewClusterLogDestination interface{}
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    NewClusterNodeType interface{}
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    NewClusterNumOfWorker interface{}
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    NewClusterSparkConf map[string]interface{}
    A set of optional, user-specified Spark configuration key-value pairs.
    NewClusterSparkEnvVars map[string]interface{}
    A set of optional, user-specified Spark environment variables key-value pairs.
    NewClusterVersion interface{}
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    PolicyId interface{}
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    dataSecurityMode Object
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId Object
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId Object
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags Map<String,Object>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType Object
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk Object
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts Object
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination Object
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType Object
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker Object
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf Map<String,Object>
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars Map<String,Object>
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion Object
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    policyId Object
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    workspaceResourceId Object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    dataSecurityMode any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags {[key: string]: any}
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf {[key: string]: any}
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars {[key: string]: any}
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    policyId any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    workspaceResourceId any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    access_token AzureKeyVaultSecretReference | SecureString
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    data_security_mode Any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existing_cluster_id Any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instance_pool_id Any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    new_cluster_custom_tags Mapping[str, Any]
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    new_cluster_driver_node_type Any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    new_cluster_enable_elastic_disk Any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    new_cluster_init_scripts Any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    new_cluster_log_destination Any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    new_cluster_node_type Any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    new_cluster_num_of_worker Any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    new_cluster_spark_conf Mapping[str, Any]
    A set of optional, user-specified Spark configuration key-value pairs.
    new_cluster_spark_env_vars Mapping[str, Any]
    A set of optional, user-specified Spark environment variables key-value pairs.
    new_cluster_version Any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    policy_id Any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    workspace_resource_id Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken Property Map | Property Map
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    dataSecurityMode Any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId Any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId Any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags Map<Any>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType Any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk Any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts Any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination Any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType Any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker Any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf Map<Any>
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars Map<Any>
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion Any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    policyId Any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    workspaceResourceId Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).

    AzureDatabricksLinkedServiceResponse, AzureDatabricksLinkedServiceResponseArgs

    Domain object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    DataSecurityMode object
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ExistingClusterId object
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    InstancePoolId object
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    NewClusterCustomTags Dictionary<string, object>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    NewClusterDriverNodeType object
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    NewClusterEnableElasticDisk object
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    NewClusterInitScripts object
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    NewClusterLogDestination object
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    NewClusterNodeType object
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    NewClusterNumOfWorker object
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    NewClusterSparkConf Dictionary<string, object>
    A set of optional, user-specified Spark configuration key-value pairs.
    NewClusterSparkEnvVars Dictionary<string, object>
    A set of optional, user-specified Spark environment variables key-value pairs.
    NewClusterVersion object
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    PolicyId object
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    Domain interface{}
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    DataSecurityMode interface{}
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    ExistingClusterId interface{}
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    InstancePoolId interface{}
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    NewClusterCustomTags map[string]interface{}
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    NewClusterDriverNodeType interface{}
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    NewClusterEnableElasticDisk interface{}
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    NewClusterInitScripts interface{}
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    NewClusterLogDestination interface{}
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    NewClusterNodeType interface{}
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    NewClusterNumOfWorker interface{}
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    NewClusterSparkConf map[string]interface{}
    A set of optional, user-specified Spark configuration key-value pairs.
    NewClusterSparkEnvVars map[string]interface{}
    A set of optional, user-specified Spark environment variables key-value pairs.
    NewClusterVersion interface{}
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    PolicyId interface{}
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Object
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    dataSecurityMode Object
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId Object
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId Object
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags Map<String,Object>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType Object
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk Object
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts Object
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination Object
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType Object
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker Object
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf Map<String,Object>
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars Map<String,Object>
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion Object
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    policyId Object
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    workspaceResourceId Object
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    dataSecurityMode any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags {[key: string]: any}
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf {[key: string]: any}
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars {[key: string]: any}
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    policyId any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    workspaceResourceId any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    data_security_mode Any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existing_cluster_id Any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instance_pool_id Any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    new_cluster_custom_tags Mapping[str, Any]
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    new_cluster_driver_node_type Any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    new_cluster_enable_elastic_disk Any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    new_cluster_init_scripts Any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    new_cluster_log_destination Any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    new_cluster_node_type Any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    new_cluster_num_of_worker Any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    new_cluster_spark_conf Mapping[str, Any]
    A set of optional, user-specified Spark configuration key-value pairs.
    new_cluster_spark_env_vars Mapping[str, Any]
    A set of optional, user-specified Spark environment variables key-value pairs.
    new_cluster_version Any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    policy_id Any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    workspace_resource_id Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    domain Any
    .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
    accessToken Property Map | Property Map
    Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    dataSecurityMode Any
    The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    existingClusterId Any
    The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    instancePoolId Any
    The id of an existing instance pool that will be used for all runs of this activity. Type: string (or Expression with resultType string).
    newClusterCustomTags Map<Any>
    Additional tags for cluster resources. This property is ignored in instance pool configurations.
    newClusterDriverNodeType Any
    The driver node type for the new job cluster. This property is ignored in instance pool configurations. Type: string (or Expression with resultType string).
    newClusterEnableElasticDisk Any
    Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean).
    newClusterInitScripts Any
    User-defined initialization scripts for the new cluster. Type: array of strings (or Expression with resultType array of strings).
    newClusterLogDestination Any
    Specify a location to deliver Spark driver, worker, and event logs. Type: string (or Expression with resultType string).
    newClusterNodeType Any
    The node type of the new job cluster. This property is required if newClusterVersion is specified and instancePoolId is not specified. If instancePoolId is specified, this property is ignored. Type: string (or Expression with resultType string).
    newClusterNumOfWorker Any
    If not using an existing interactive cluster, this specifies the number of worker nodes to use for the new job cluster or instance pool. For new job clusters, this a string-formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 (min) to 10 (max). For instance pools, this is a string-formatted Int32, and can only specify a fixed number of worker nodes, such as '2'. Required if newClusterVersion is specified. Type: string (or Expression with resultType string).
    newClusterSparkConf Map<Any>
    A set of optional, user-specified Spark configuration key-value pairs.
    newClusterSparkEnvVars Map<Any>
    A set of optional, user-specified Spark environment variables key-value pairs.
    newClusterVersion Any
    If not using an existing interactive cluster, this specifies the Spark version of a new job cluster or instance pool nodes created for each run of this activity. Required if instancePoolId is specified. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    policyId Any
    The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    workspaceResourceId Any
    Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).

    AzureFileStorageLinkedService, AzureFileStorageLinkedServiceArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileShare object
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    Host object
    Host name of the server. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to logon the server.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Snapshot object
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    UserId object
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileShare interface{}
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    Host interface{}
    Host name of the server. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    SasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Snapshot interface{}
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    UserId interface{}
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare Object
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Object
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Object
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId Object
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    file_share Any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    sas_token AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    user_id Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare Any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the server.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureFileStorageLinkedServiceResponse, AzureFileStorageLinkedServiceResponseArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileShare object
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    Host object
    Host name of the server. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to logon the server.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Snapshot object
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    UserId object
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileShare interface{}
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    Host interface{}
    Host name of the server. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    SasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Snapshot interface{}
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    UserId interface{}
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare Object
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Object
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Object
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId Object
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    file_share Any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    sas_token AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    user_id Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileShare Any
    The azure file share name. It is required when auth with accountKey/sasToken. Type: string (or Expression with resultType string).
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the server.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure File resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property.
    snapshot Any
    The azure file share snapshot version. Type: string (or Expression with resultType string).
    userId Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureFunctionLinkedService, AzureFunctionLinkedServiceArgs

    FunctionAppUrl object
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FunctionKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Function or Host key for Azure Function App.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ResourceId object
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    FunctionAppUrl interface{}
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FunctionKey AzureKeyVaultSecretReference | SecureString
    Function or Host key for Azure Function App.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ResourceId interface{}
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    functionAppUrl Object
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey AzureKeyVaultSecretReference | SecureString
    Function or Host key for Azure Function App.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    resourceId Object
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    functionAppUrl any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey AzureKeyVaultSecretReference | SecureString
    Function or Host key for Azure Function App.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    resourceId any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    function_app_url Any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    function_key AzureKeyVaultSecretReference | SecureString
    Function or Host key for Azure Function App.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    resource_id Any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    functionAppUrl Any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey Property Map | Property Map
    Function or Host key for Azure Function App.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceId Any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureFunctionLinkedServiceResponse, AzureFunctionLinkedServiceResponseArgs

    FunctionAppUrl object
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FunctionKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Function or Host key for Azure Function App.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ResourceId object
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    FunctionAppUrl interface{}
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FunctionKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Function or Host key for Azure Function App.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ResourceId interface{}
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    functionAppUrl Object
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Function or Host key for Azure Function App.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    resourceId Object
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    functionAppUrl any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Function or Host key for Azure Function App.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    resourceId any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    function_app_url Any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    function_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Function or Host key for Azure Function App.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    resource_id Any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    functionAppUrl Any
    The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    functionKey Property Map | Property Map
    Function or Host key for Azure Function App.
    parameters Map<Property Map>
    Parameters for linked service.
    resourceId Any
    Allowed token audiences for azure function. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureKeyVaultLinkedService, AzureKeyVaultLinkedServiceArgs

    BaseUrl object
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    BaseUrl interface{}
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    baseUrl Object
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    baseUrl any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    base_url Any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    baseUrl Any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureKeyVaultLinkedServiceResponse, AzureKeyVaultLinkedServiceResponseArgs

    BaseUrl object
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    BaseUrl interface{}
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    baseUrl Object
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    baseUrl any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    base_url Any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    baseUrl Any
    The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureKeyVaultSecretReference, AzureKeyVaultSecretReferenceArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    AzureKeyVaultSecretReferenceResponse, AzureKeyVaultSecretReferenceResponseArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    AzureMLLinkedService, AzureMLLinkedServiceArgs

    ApiKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The API key for accessing the Azure ML model endpoint.
    MlEndpoint object
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    UpdateResourceEndpoint object
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    ApiKey AzureKeyVaultSecretReference | SecureString
    The API key for accessing the Azure ML model endpoint.
    MlEndpoint interface{}
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    UpdateResourceEndpoint interface{}
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    apiKey AzureKeyVaultSecretReference | SecureString
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint Object
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint Object
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    apiKey AzureKeyVaultSecretReference | SecureString
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    api_key AzureKeyVaultSecretReference | SecureString
    The API key for accessing the Azure ML model endpoint.
    ml_endpoint Any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    update_resource_endpoint Any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    apiKey Property Map | Property Map
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint Any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint Any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureMLLinkedServiceResponse, AzureMLLinkedServiceResponseArgs

    ApiKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The API key for accessing the Azure ML model endpoint.
    MlEndpoint object
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    UpdateResourceEndpoint object
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    ApiKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The API key for accessing the Azure ML model endpoint.
    MlEndpoint interface{}
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    UpdateResourceEndpoint interface{}
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    apiKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint Object
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint Object
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    apiKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    api_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The API key for accessing the Azure ML model endpoint.
    ml_endpoint Any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    update_resource_endpoint Any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    apiKey Property Map | Property Map
    The API key for accessing the Azure ML model endpoint.
    mlEndpoint Any
    The Batch Execution REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML Studio web service.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    updateResourceEndpoint Any
    The Update Resource REST URL for an Azure ML Studio Web Service endpoint. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureMLServiceLinkedService, AzureMLServiceLinkedServiceArgs

    MlWorkspaceName object
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    ResourceGroupName object
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    SubscriptionId object
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    MlWorkspaceName interface{}
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    ResourceGroupName interface{}
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    SubscriptionId interface{}
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    mlWorkspaceName Object
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName Object
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId Object
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    mlWorkspaceName any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    ml_workspace_name Any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resource_group_name Any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscription_id Any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    mlWorkspaceName Any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName Any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId Any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureMLServiceLinkedServiceResponse, AzureMLServiceLinkedServiceResponseArgs

    MlWorkspaceName object
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    ResourceGroupName object
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    SubscriptionId object
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ServicePrincipalId object
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    MlWorkspaceName interface{}
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    ResourceGroupName interface{}
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    SubscriptionId interface{}
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    mlWorkspaceName Object
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName Object
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId Object
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    servicePrincipalId Object
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    mlWorkspaceName any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    servicePrincipalId any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    ml_workspace_name Any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resource_group_name Any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscription_id Any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    service_principal_id Any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    mlWorkspaceName Any
    Azure ML Service workspace name. Type: string (or Expression with resultType string).
    resourceGroupName Any
    Azure ML Service workspace resource group name. Type: string (or Expression with resultType string).
    subscriptionId Any
    Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalId Any
    The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureMariaDBLinkedService, AzureMariaDBLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    AzureMariaDBLinkedServiceResponse, AzureMariaDBLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    AzureMySqlLinkedService, AzureMySqlLinkedServiceArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    AzureMySqlLinkedServiceResponse, AzureMySqlLinkedServiceResponseArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    AzurePostgreSqlLinkedService, AzurePostgreSqlLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    Encoding object
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Port object
    The port for the connection. Type: integer.
    ReadBufferSize object
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    Server object
    Server name for connection. Type: string.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Timeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    Timezone object
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate object
    Whether to trust the server certificate without validating it. Type: boolean.
    Username object
    Username for authentication. Type: string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    Encoding interface{}
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Port interface{}
    The port for the connection. Type: integer.
    ReadBufferSize interface{}
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    Server interface{}
    Server name for connection. Type: string.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Timeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    Timezone interface{}
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate interface{}
    Whether to trust the server certificate without validating it. Type: boolean.
    Username interface{}
    Username for authentication. Type: string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    encoding Object
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    port Object
    The port for the connection. Type: integer.
    readBufferSize Object
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Object
    Server name for connection. Type: string.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Object
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Object
    Whether to trust the server certificate without validating it. Type: boolean.
    username Object
    Username for authentication. Type: string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    encoding any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    port any
    The port for the connection. Type: integer.
    readBufferSize any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server any
    Server name for connection. Type: string.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert AzureKeyVaultSecretReference | SecureString
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReference | SecureString
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate any
    Whether to trust the server certificate without validating it. Type: boolean.
    username any
    Username for authentication. Type: string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    encoding Any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    port Any
    The port for the connection. Type: integer.
    read_buffer_size Any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Any
    Server name for connection. Type: string.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_embedded_cert AzureKeyVaultSecretReference | SecureString
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    service_principal_embedded_cert_password AzureKeyVaultSecretReference | SecureString
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trust_server_certificate Any
    Whether to trust the server certificate without validating it. Type: boolean.
    username Any
    Username for authentication. Type: string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    encoding Any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    port Any
    The port for the connection. Type: integer.
    readBufferSize Any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Any
    Server name for connection. Type: string.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert Property Map | Property Map
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword Property Map | Property Map
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Any
    Whether to trust the server certificate without validating it. Type: boolean.
    username Any
    Username for authentication. Type: string.
    version String
    Version of the linked service.

    AzurePostgreSqlLinkedServiceResponse, AzurePostgreSqlLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    Encoding object
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Port object
    The port for the connection. Type: integer.
    ReadBufferSize object
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    Server object
    Server name for connection. Type: string.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCert Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCertPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Timeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    Timezone object
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate object
    Whether to trust the server certificate without validating it. Type: boolean.
    Username object
    Username for authentication. Type: string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    Encoding interface{}
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Port interface{}
    The port for the connection. Type: integer.
    ReadBufferSize interface{}
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    Server interface{}
    Server name for connection. Type: string.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Timeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    Timezone interface{}
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate interface{}
    Whether to trust the server certificate without validating it. Type: boolean.
    Username interface{}
    Username for authentication. Type: string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    encoding Object
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    port Object
    The port for the connection. Type: integer.
    readBufferSize Object
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Object
    Server name for connection. Type: string.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Object
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Object
    Whether to trust the server certificate without validating it. Type: boolean.
    username Object
    Username for authentication. Type: string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    encoding any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    port any
    The port for the connection. Type: integer.
    readBufferSize any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server any
    Server name for connection. Type: string.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate any
    Whether to trust the server certificate without validating it. Type: boolean.
    username any
    Username for authentication. Type: string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    encoding Any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    port Any
    The port for the connection. Type: integer.
    read_buffer_size Any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Any
    Server name for connection. Type: string.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_embedded_cert AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    service_principal_embedded_cert_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trust_server_certificate Any
    Whether to trust the server certificate without validating it. Type: boolean.
    username Any
    Username for authentication. Type: string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    encoding Any
    Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    port Any
    The port for the connection. Type: integer.
    readBufferSize Any
    Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
    server Any
    Server name for connection. Type: string.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCert Property Map | Property Map
    Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalEmbeddedCertPassword Property Map | Property Map
    Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure Database for PostgreSQL Flexible server.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Any
    Whether to trust the server certificate without validating it. Type: boolean.
    username Any
    Username for authentication. Type: string.
    version String
    Version of the linked service.

    AzureSearchLinkedService, AzureSearchLinkedServiceArgs

    Url object
    URL for Azure Search service. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Key Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Admin Key for Azure Search service
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Url interface{}
    URL for Azure Search service. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Key AzureKeyVaultSecretReference | SecureString
    Admin Key for Azure Search service
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    url Object
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReference | SecureString
    Admin Key for Azure Search service
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    url any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReference | SecureString
    Admin Key for Azure Search service
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    url Any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReference | SecureString
    Admin Key for Azure Search service
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    url Any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key Property Map | Property Map
    Admin Key for Azure Search service
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureSearchLinkedServiceResponse, AzureSearchLinkedServiceResponseArgs

    Url object
    URL for Azure Search service. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Key Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Admin Key for Azure Search service
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Url interface{}
    URL for Azure Search service. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Admin Key for Azure Search service
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    url Object
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Admin Key for Azure Search service
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    url any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Admin Key for Azure Search service
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    url Any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Admin Key for Azure Search service
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    url Any
    URL for Azure Search service. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key Property Map | Property Map
    Admin Key for Azure Search service
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    AzureSqlDWAuthenticationType, AzureSqlDWAuthenticationTypeArgs

    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    AzureSqlDWAuthenticationTypeSQL
    SQL
    AzureSqlDWAuthenticationTypeServicePrincipal
    ServicePrincipal
    AzureSqlDWAuthenticationTypeSystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    AzureSqlDWAuthenticationTypeUserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    SERVICE_PRINCIPAL
    ServicePrincipal
    SYSTEM_ASSIGNED_MANAGED_IDENTITY
    SystemAssignedManagedIdentity
    USER_ASSIGNED_MANAGED_IDENTITY
    UserAssignedManagedIdentity
    "SQL"
    SQL
    "ServicePrincipal"
    ServicePrincipal
    "SystemAssignedManagedIdentity"
    SystemAssignedManagedIdentity
    "UserAssignedManagedIdentity"
    UserAssignedManagedIdentity

    AzureSqlDWLinkedService, AzureSqlDWLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AzureSqlDWAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | AzureSqlDWAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | AzureSqlDWAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string | AzureSqlDWAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str | AzureSqlDWAuthenticationType
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | "SQL" | "ServicePrincipal" | "SystemAssignedManagedIdentity" | "UserAssignedManagedIdentity"
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureSqlDWLinkedServiceResponse, AzureSqlDWLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Data Warehouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureSqlDatabaseAuthenticationType, AzureSqlDatabaseAuthenticationTypeArgs

    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    AzureSqlDatabaseAuthenticationTypeSQL
    SQL
    AzureSqlDatabaseAuthenticationTypeServicePrincipal
    ServicePrincipal
    AzureSqlDatabaseAuthenticationTypeSystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    AzureSqlDatabaseAuthenticationTypeUserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    SERVICE_PRINCIPAL
    ServicePrincipal
    SYSTEM_ASSIGNED_MANAGED_IDENTITY
    SystemAssignedManagedIdentity
    USER_ASSIGNED_MANAGED_IDENTITY
    UserAssignedManagedIdentity
    "SQL"
    SQL
    "ServicePrincipal"
    ServicePrincipal
    "SystemAssignedManagedIdentity"
    SystemAssignedManagedIdentity
    "UserAssignedManagedIdentity"
    UserAssignedManagedIdentity

    AzureSqlDatabaseLinkedService, AzureSqlDatabaseLinkedServiceArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AzureSqlDatabaseAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Azure SQL Database.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | AzureSqlDatabaseAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Database.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | AzureSqlDatabaseAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string | AzureSqlDatabaseAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str | AzureSqlDatabaseAuthenticationType
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | "SQL" | "ServicePrincipal" | "SystemAssignedManagedIdentity" | "UserAssignedManagedIdentity"
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureSqlDatabaseLinkedServiceResponse, AzureSqlDatabaseLinkedServiceResponseArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Database.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Database.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Database.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureSqlMIAuthenticationType, AzureSqlMIAuthenticationTypeArgs

    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    AzureSqlMIAuthenticationTypeSQL
    SQL
    AzureSqlMIAuthenticationTypeServicePrincipal
    ServicePrincipal
    AzureSqlMIAuthenticationTypeSystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    AzureSqlMIAuthenticationTypeUserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    ServicePrincipal
    ServicePrincipal
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentity
    SQL
    SQL
    SERVICE_PRINCIPAL
    ServicePrincipal
    SYSTEM_ASSIGNED_MANAGED_IDENTITY
    SystemAssignedManagedIdentity
    USER_ASSIGNED_MANAGED_IDENTITY
    UserAssignedManagedIdentity
    "SQL"
    SQL
    "ServicePrincipal"
    ServicePrincipal
    "SystemAssignedManagedIdentity"
    SystemAssignedManagedIdentity
    "UserAssignedManagedIdentity"
    UserAssignedManagedIdentity

    AzureSqlMILinkedService, AzureSqlMILinkedServiceArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.AzureSqlMIAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string | AzureSqlMIAuthenticationType
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | AzureSqlMIAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string | AzureSqlMIAuthenticationType
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str | AzureSqlMIAuthenticationType
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String | "SQL" | "ServicePrincipal" | "SystemAssignedManagedIdentity" | "UserAssignedManagedIdentity"
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureSqlMILinkedServiceResponse, AzureSqlMILinkedServiceResponseArgs

    AlwaysEncryptedSettings Pulumi.AzureNative.DataFactory.Inputs.SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ApplicationIntent object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Database object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ApplicationIntent interface{}
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    AuthenticationType string
    The type used for authentication. Type: string.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    CommandTimeout interface{}
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectRetryCount interface{}
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    ConnectRetryInterval interface{}
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    ConnectTimeout interface{}
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Database interface{}
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    Encrypt interface{}
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FailoverPartner interface{}
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    HostNameInCertificate interface{}
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    IntegratedSecurity interface{}
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    LoadBalanceTimeout interface{}
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    MaxPoolSize interface{}
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MinPoolSize interface{}
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    MultiSubnetFailover interface{}
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    MultipleActiveResultSets interface{}
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    PacketSize interface{}
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Pooling interface{}
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    Server interface{}
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    TrustServerCertificate interface{}
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    UserName interface{}
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    applicationIntent Object
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Object
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Object
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Object
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Object
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Object
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Object
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Object
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Object
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Object
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Object
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Object
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Object
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Object
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Object
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Object
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Object
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Object
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Object
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Object
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations any[]
    List of tags that can be used for describing the linked service.
    applicationIntent any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType string
    The type used for authentication. Type: string.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encrypt any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    application_intent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authentication_type str
    The type used for authentication. Type: string.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    command_timeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_retry_count Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connect_retry_interval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connect_timeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failover_partner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    host_name_in_certificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integrated_security Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    load_balance_timeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    max_pool_size Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    min_pool_size Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multi_subnet_failover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multiple_active_result_sets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packet_size Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trust_server_certificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    user_name Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    applicationIntent Any
    The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
    authenticationType String
    The type used for authentication. Type: string.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    commandTimeout Any
    The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectRetryCount Any
    The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
    connectRetryInterval Any
    The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
    connectTimeout Any
    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database, used by recommended version. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encrypt Any
    Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    failoverPartner Any
    The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
    hostNameInCertificate Any
    The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
    integratedSecurity Any
    Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
    loadBalanceTimeout Any
    The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
    maxPoolSize Any
    The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    minPoolSize Any
    The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
    multiSubnetFailover Any
    If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    multipleActiveResultSets Any
    When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    packetSize Any
    The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string.
    pooling Any
    Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    server Any
    The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key of the service principal used to authenticate against Azure SQL Managed Instance.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    trustServerCertificate Any
    Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
    userName Any
    The user name to be used when connecting to server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    AzureStorageAuthenticationType, AzureStorageAuthenticationTypeArgs

    Anonymous
    Anonymous
    AccountKey
    AccountKey
    SasUri
    SasUri
    ServicePrincipal
    ServicePrincipal
    Msi
    Msi
    AzureStorageAuthenticationTypeAnonymous
    Anonymous
    AzureStorageAuthenticationTypeAccountKey
    AccountKey
    AzureStorageAuthenticationTypeSasUri
    SasUri
    AzureStorageAuthenticationTypeServicePrincipal
    ServicePrincipal
    AzureStorageAuthenticationTypeMsi
    Msi
    Anonymous
    Anonymous
    AccountKey
    AccountKey
    SasUri
    SasUri
    ServicePrincipal
    ServicePrincipal
    Msi
    Msi
    Anonymous
    Anonymous
    AccountKey
    AccountKey
    SasUri
    SasUri
    ServicePrincipal
    ServicePrincipal
    Msi
    Msi
    ANONYMOUS
    Anonymous
    ACCOUNT_KEY
    AccountKey
    SAS_URI
    SasUri
    SERVICE_PRINCIPAL
    ServicePrincipal
    MSI
    Msi
    "Anonymous"
    Anonymous
    "AccountKey"
    AccountKey
    "SasUri"
    SasUri
    "ServicePrincipal"
    ServicePrincipal
    "Msi"
    Msi

    AzureStorageLinkedService, AzureStorageLinkedServiceArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version String
    Version of the linked service.

    AzureStorageLinkedServiceResponse, AzureStorageLinkedServiceResponseArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    version String
    Version of the linked service.

    AzureSynapseArtifactsLinkedService, AzureSynapseArtifactsLinkedServiceArgs

    Endpoint object
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    Endpoint interface{}
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Object
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Object
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    workspaceResourceId any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    workspace_resource_id Any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).

    AzureSynapseArtifactsLinkedServiceResponse, AzureSynapseArtifactsLinkedServiceResponseArgs

    Endpoint object
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    Authentication object
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId object
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    Endpoint interface{}
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    Authentication interface{}
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    WorkspaceResourceId interface{}
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Object
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authentication Object
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Object
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authentication any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    workspaceResourceId any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    workspace_resource_id Any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).
    endpoint Any
    https://.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authentication Any
    Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.
    workspaceResourceId Any
    The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string).

    AzureTableStorageLinkedService, AzureTableStorageLinkedServiceArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReference
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReference
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version String
    Version of the linked service.

    AzureTableStorageLinkedServiceResponse, AzureTableStorageLinkedServiceResponseArgs

    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SasToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint object
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Version string
    Version of the linked service.
    AccountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    SasUri interface{}
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    ServiceEndpoint interface{}
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    Version string
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Object
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Object
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version String
    Version of the linked service.
    accountKey AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    sasToken AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version string
    Version of the linked service.
    account_key AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of accountKey in connection string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    sas_token AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of sasToken in sas uri.
    sas_uri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    service_endpoint Any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version str
    Version of the linked service.
    accountKey Property Map
    The Azure key vault secret reference of accountKey in connection string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    sasToken Property Map
    The Azure key vault secret reference of sasToken in sas uri.
    sasUri Any
    SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.
    serviceEndpoint Any
    Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property.
    version String
    Version of the linked service.

    CassandraLinkedService, CassandraLinkedServiceArgs

    Host object
    Host name for connection. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password for authentication.
    Port object
    The port for the connection. Type: integer (or Expression with resultType integer).
    Username object
    Username for authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name for connection. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    Port interface{}
    The port for the connection. Type: integer (or Expression with resultType integer).
    Username interface{}
    Username for authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name for connection. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    port Object
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Object
    Username for authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    port any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username any
    Username for authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    port Any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for authentication.
    port Any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    CassandraLinkedServiceResponse, CassandraLinkedServiceResponseArgs

    Host object
    Host name for connection. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password for authentication.
    Port object
    The port for the connection. Type: integer (or Expression with resultType integer).
    Username object
    Username for authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name for connection. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    Port interface{}
    The port for the connection. Type: integer (or Expression with resultType integer).
    Username interface{}
    Username for authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name for connection. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    port Object
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Object
    Username for authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    port any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username any
    Username for authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    port Any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name for connection. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for authentication.
    port Any
    The port for the connection. Type: integer (or Expression with resultType integer).
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    CommonDataServiceForAppsLinkedService, CommonDataServiceForAppsLinkedServiceArgs

    AuthenticationType object
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to access the Common Data Service for Apps instance.
    Port object
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to access the Common Data Service for Apps instance.
    Port interface{}
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Common Data Service for Apps instance.
    port Object
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Common Data Service for Apps instance.
    port any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Common Data Service for Apps instance.
    port Any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Common Data Service for Apps instance.
    port Any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    CommonDataServiceForAppsLinkedServiceResponse, CommonDataServiceForAppsLinkedServiceResponseArgs

    AuthenticationType object
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to access the Common Data Service for Apps instance.
    Port object
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Common Data Service for Apps instance.
    Port interface{}
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Common Data Service for Apps instance.
    port Object
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Common Data Service for Apps instance.
    port any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Common Data Service for Apps instance.
    port Any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Common Data Service for Apps instance. 'Online' for Common Data Service for Apps Online and 'OnPremisesWithIfd' for Common Data Service for Apps on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Common Data Service for Apps instance.
    port Any
    The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Common Data Service for Apps server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    ConcurLinkedService, ConcurLinkedServiceArgs

    ClientId object
    Application client_id supplied by Concur App Management.
    Username object
    The user name that you use to access Concur Service.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties object
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password corresponding to the user name that you provided in the username field.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    ClientId interface{}
    Application client_id supplied by Concur App Management.
    Username interface{}
    The user name that you use to access Concur Service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties interface{}
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username field.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    clientId Object
    Application client_id supplied by Concur App Management.
    username Object
    The user name that you use to access Concur Service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties Object
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    clientId any
    Application client_id supplied by Concur App Management.
    username any
    The user name that you use to access Concur Service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    client_id Any
    Application client_id supplied by Concur App Management.
    username Any
    The user name that you use to access Concur Service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_properties Any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username field.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    clientId Any
    Application client_id supplied by Concur App Management.
    username Any
    The user name that you use to access Concur Service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    ConcurLinkedServiceResponse, ConcurLinkedServiceResponseArgs

    ClientId object
    Application client_id supplied by Concur App Management.
    Username object
    The user name that you use to access Concur Service.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties object
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password corresponding to the user name that you provided in the username field.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    ClientId interface{}
    Application client_id supplied by Concur App Management.
    Username interface{}
    The user name that you use to access Concur Service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties interface{}
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username field.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    clientId Object
    Application client_id supplied by Concur App Management.
    username Object
    The user name that you use to access Concur Service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties Object
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    clientId any
    Application client_id supplied by Concur App Management.
    username any
    The user name that you use to access Concur Service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    client_id Any
    Application client_id supplied by Concur App Management.
    username Any
    The user name that you use to access Concur Service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_properties Any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username field.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    clientId Any
    Application client_id supplied by Concur App Management.
    username Any
    The user name that you use to access Concur Service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    Properties used to connect to Concur. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the username field.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    CosmosDbConnectionMode, CosmosDbConnectionModeArgs

    Gateway
    Gateway
    Direct
    Direct
    CosmosDbConnectionModeGateway
    Gateway
    CosmosDbConnectionModeDirect
    Direct
    Gateway
    Gateway
    Direct
    Direct
    Gateway
    Gateway
    Direct
    Direct
    GATEWAY
    Gateway
    DIRECT
    Direct
    "Gateway"
    Gateway
    "Direct"
    Direct

    CosmosDbLinkedService, CosmosDbLinkedServiceArgs

    AccountEndpoint object
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionMode string | Pulumi.AzureNative.DataFactory.CosmosDbConnectionMode
    The connection mode used to access CosmosDB account. Type: string.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Database object
    The name of the database. Type: string (or Expression with resultType string)
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountEndpoint interface{}
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    AccountKey AzureKeyVaultSecretReference | SecureString
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionMode string | CosmosDbConnectionMode
    The connection mode used to access CosmosDB account. Type: string.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Database interface{}
    The name of the database. Type: string (or Expression with resultType string)
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountEndpoint Object
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey AzureKeyVaultSecretReference | SecureString
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionMode String | CosmosDbConnectionMode
    The connection mode used to access CosmosDB account. Type: string.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Object
    The name of the database. Type: string (or Expression with resultType string)
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountEndpoint any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey AzureKeyVaultSecretReference | SecureString
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionMode string | CosmosDbConnectionMode
    The connection mode used to access CosmosDB account. Type: string.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database any
    The name of the database. Type: string (or Expression with resultType string)
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_endpoint Any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    account_key AzureKeyVaultSecretReference | SecureString
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_mode str | CosmosDbConnectionMode
    The connection mode used to access CosmosDB account. Type: string.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReference
    The credential reference containing authentication information.
    database Any
    The name of the database. Type: string (or Expression with resultType string)
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountEndpoint Any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey Property Map | Property Map
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionMode String | "Gateway" | "Direct"
    The connection mode used to access CosmosDB account. Type: string.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database. Type: string (or Expression with resultType string)
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    CosmosDbLinkedServiceResponse, CosmosDbLinkedServiceResponseArgs

    AccountEndpoint object
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AzureCloudType object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionMode string
    The connection mode used to access CosmosDB account. Type: string.
    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Database object
    The name of the database. Type: string (or Expression with resultType string)
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccountEndpoint interface{}
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    AccountKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AzureCloudType interface{}
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionMode string
    The connection mode used to access CosmosDB account. Type: string.
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Database interface{}
    The name of the database. Type: string (or Expression with resultType string)
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accountEndpoint Object
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    azureCloudType Object
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionMode String
    The connection mode used to access CosmosDB account. Type: string.
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Object
    The name of the database. Type: string (or Expression with resultType string)
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accountEndpoint any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations any[]
    List of tags that can be used for describing the linked service.
    azureCloudType any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionMode string
    The connection mode used to access CosmosDB account. Type: string.
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database any
    The name of the database. Type: string (or Expression with resultType string)
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    account_endpoint Any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    account_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    azure_cloud_type Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_mode str
    The connection mode used to access CosmosDB account. Type: string.
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    database Any
    The name of the database. Type: string (or Expression with resultType string)
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accountEndpoint Any
    The endpoint of the Azure CosmosDB account. Type: string (or Expression with resultType string)
    accountKey Property Map | Property Map
    The account key of the Azure CosmosDB account. Type: SecureString or AzureKeyVaultSecretReference.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    azureCloudType Any
    Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionMode String
    The connection mode used to access CosmosDB account. Type: string.
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credential Property Map
    The credential reference containing authentication information.
    database Any
    The name of the database. Type: string (or Expression with resultType string)
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string.
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    CosmosDbMongoDbApiLinkedService, CosmosDbMongoDbApiLinkedServiceArgs

    ConnectionString object
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    IsServerVersionAbove32 object
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ConnectionString interface{}
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    IsServerVersionAbove32 interface{}
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    connectionString Object
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    isServerVersionAbove32 Object
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    connectionString any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    isServerVersionAbove32 any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    connection_string Any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    is_server_version_above32 Any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    connectionString Any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    isServerVersionAbove32 Any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    CosmosDbMongoDbApiLinkedServiceResponse, CosmosDbMongoDbApiLinkedServiceResponseArgs

    ConnectionString object
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    IsServerVersionAbove32 object
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ConnectionString interface{}
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    IsServerVersionAbove32 interface{}
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    connectionString Object
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    isServerVersionAbove32 Object
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    connectionString any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    isServerVersionAbove32 any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    connection_string Any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    is_server_version_above32 Any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    connectionString Any
    The CosmosDB (MongoDB API) connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the CosmosDB (MongoDB API) database that you want to access. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    isServerVersionAbove32 Any
    Whether the CosmosDB (MongoDB API) server version is higher than 3.2. The default value is false. Type: boolean (or Expression with resultType boolean).
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    CouchbaseLinkedService, CouchbaseLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    CredString Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of credString in connection string.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    CredString AzureKeyVaultSecretReference
    The Azure key vault secret reference of credString in connection string.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString AzureKeyVaultSecretReference
    The Azure key vault secret reference of credString in connection string.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString AzureKeyVaultSecretReference
    The Azure key vault secret reference of credString in connection string.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    cred_string AzureKeyVaultSecretReference
    The Azure key vault secret reference of credString in connection string.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString Property Map
    The Azure key vault secret reference of credString in connection string.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    CouchbaseLinkedServiceResponse, CouchbaseLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    CredString Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of credString in connection string.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    CredString AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of credString in connection string.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of credString in connection string.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of credString in connection string.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    cred_string AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of credString in connection string.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    credString Property Map
    The Azure key vault secret reference of credString in connection string.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    CredentialReference, CredentialReferenceArgs

    ReferenceName string
    Reference credential name.
    Type string | Pulumi.AzureNative.DataFactory.CredentialReferenceType
    Credential reference type.
    ReferenceName string
    Reference credential name.
    Type string | CredentialReferenceType
    Credential reference type.
    referenceName String
    Reference credential name.
    type String | CredentialReferenceType
    Credential reference type.
    referenceName string
    Reference credential name.
    type string | CredentialReferenceType
    Credential reference type.
    reference_name str
    Reference credential name.
    type str | CredentialReferenceType
    Credential reference type.
    referenceName String
    Reference credential name.
    type String | "CredentialReference"
    Credential reference type.

    CredentialReferenceResponse, CredentialReferenceResponseArgs

    ReferenceName string
    Reference credential name.
    Type string
    Credential reference type.
    ReferenceName string
    Reference credential name.
    Type string
    Credential reference type.
    referenceName String
    Reference credential name.
    type String
    Credential reference type.
    referenceName string
    Reference credential name.
    type string
    Credential reference type.
    reference_name str
    Reference credential name.
    type str
    Credential reference type.
    referenceName String
    Reference credential name.
    type String
    Credential reference type.

    CredentialReferenceType, CredentialReferenceTypeArgs

    CredentialReference
    CredentialReference
    CredentialReferenceTypeCredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CREDENTIAL_REFERENCE
    CredentialReference
    "CredentialReference"
    CredentialReference

    CustomDataSourceLinkedService, CustomDataSourceLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    CustomDataSourceLinkedServiceResponse, CustomDataSourceLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    DataworldLinkedService, DataworldLinkedServiceArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The api token for the Dataworld source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Dataworld source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Dataworld source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the Dataworld source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReference | SecureString
    The api token for the Dataworld source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the Dataworld source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    DataworldLinkedServiceResponse, DataworldLinkedServiceResponseArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The api token for the Dataworld source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Dataworld source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Dataworld source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Dataworld source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the Dataworld source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the Dataworld source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    Db2AuthenticationType, Db2AuthenticationTypeArgs

    Basic
    Basic
    Db2AuthenticationTypeBasic
    Basic
    Basic
    Basic
    Basic
    Basic
    BASIC
    Basic
    "Basic"
    Basic

    Db2LinkedService, Db2LinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.Db2AuthenticationType
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    CertificateCommonName object
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    PackageCollection object
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password for authentication.
    Server object
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Username object
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Db2AuthenticationType
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    CertificateCommonName interface{}
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    PackageCollection interface{}
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    Server interface{}
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Username interface{}
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | Db2AuthenticationType
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName Object
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection Object
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    server Object
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Object
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | Db2AuthenticationType
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    server any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | Db2AuthenticationType
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificate_common_name Any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    package_collection Any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for authentication.
    server Any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "Basic"
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName Any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection Any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for authentication.
    server Any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    Db2LinkedServiceResponse, Db2LinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    CertificateCommonName object
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    PackageCollection object
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password for authentication.
    Server object
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Username object
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    CertificateCommonName interface{}
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    PackageCollection interface{}
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    Server interface{}
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Username interface{}
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName Object
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection Object
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    server Object
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Object
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    server any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificate_common_name Any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    package_collection Any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for authentication.
    server Any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    AuthenticationType to be used for connection. It is mutually exclusive with connectionString property.
    certificateCommonName Any
    Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    The connection string. It is mutually exclusive with server, database, authenticationType, userName, packageCollection and certificateCommonName property. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string.
    packageCollection Any
    Under where packages are created when querying database. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for authentication.
    server Any
    Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    username Any
    Username for authentication. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    DrillLinkedService, DrillLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    DrillLinkedServiceResponse, DrillLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    version String
    Version of the linked service.

    DynamicsAXLinkedService, DynamicsAXLinkedServiceArgs

    AadResourceId object
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    Specify the application's client ID. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    Tenant object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    Url object
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    AadResourceId interface{}
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    Specify the application's client ID. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    Tenant interface{}
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    Url interface{}
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    aadResourceId Object
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Object
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    aadResourceId any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    aad_resource_id Any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    service_principal_id Any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    aadResourceId Any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    DynamicsAXLinkedServiceResponse, DynamicsAXLinkedServiceResponseArgs

    AadResourceId object
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    Specify the application's client ID. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    Tenant object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    Url object
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    AadResourceId interface{}
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    Specify the application's client ID. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    Tenant interface{}
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    Url interface{}
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    aadResourceId Object
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Object
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    aadResourceId any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    aad_resource_id Any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    service_principal_id Any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    aadResourceId Any
    Specify the resource you are requesting authorization. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    Specify the application's client ID. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    Specify the application's key. Mark this field as a SecureString to store it securely in Data Factory, or reference a secret stored in Azure Key Vault. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).
    url Any
    The Dynamics AX (or Dynamics 365 Finance and Operations) instance OData endpoint.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    DynamicsCrmLinkedService, DynamicsCrmLinkedServiceArgs

    AuthenticationType object
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to access the Dynamics CRM instance.
    Port object
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics CRM instance.
    Port interface{}
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics CRM instance.
    port Object
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics CRM instance.
    port any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics CRM instance.
    port Any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Dynamics CRM instance.
    port Any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    DynamicsCrmLinkedServiceResponse, DynamicsCrmLinkedServiceResponseArgs

    AuthenticationType object
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to access the Dynamics CRM instance.
    Port object
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics CRM instance.
    Port interface{}
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics CRM instance.
    port Object
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics CRM instance.
    port any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics CRM instance.
    port Any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Dynamics CRM instance. 'Online' for Dynamics CRM Online and 'OnPremisesWithIfd' for Dynamics CRM on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Dynamics CRM instance.
    port Any
    The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Dynamics CRM server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    DynamicsLinkedService, DynamicsLinkedServiceArgs

    AuthenticationType object
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to access the Dynamics instance.
    Port object
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential CredentialReference
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics instance.
    Port interface{}
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics instance.
    port Object
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics instance.
    port any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential CredentialReference
    The credential reference containing authentication information.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to access the Dynamics instance.
    port Any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReference | SecureString
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Dynamics instance.
    port Any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    DynamicsLinkedServiceResponse, DynamicsLinkedServiceResponseArgs

    AuthenticationType object
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType object
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName object
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName object
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to access the Dynamics instance.
    Port object
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri object
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username object
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AuthenticationType interface{}
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    DeploymentType interface{}
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    Description string
    Linked service description.
    Domain interface{}
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HostName interface{}
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    OrganizationName interface{}
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics instance.
    Port interface{}
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    ServicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    ServicePrincipalCredentialType interface{}
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    ServicePrincipalId interface{}
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    ServiceUri interface{}
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    Username interface{}
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    authenticationType Object
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Object
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Object
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Object
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Object
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics instance.
    port Object
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Object
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Object
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Object
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Object
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    authenticationType any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description string
    Linked service description.
    domain any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics instance.
    port any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    authentication_type Any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deployment_type Any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    description str
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host_name Any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organization_name Any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to access the Dynamics instance.
    port Any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    service_principal_credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    service_principal_credential_type Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    service_principal_id Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    service_uri Any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    authenticationType Any
    The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string).
    deploymentType Any
    The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    credential Property Map
    The credential reference containing authentication information.
    description String
    Linked service description.
    domain Any
    The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hostName Any
    The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
    organizationName Any
    The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to access the Dynamics instance.
    port Any
    The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
    servicePrincipalCredential Property Map | Property Map
    The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.
    servicePrincipalCredentialType Any
    The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).
    servicePrincipalId Any
    The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string).
    serviceUri Any
    The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
    username Any
    User name to access the Dynamics instance. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    EloquaLinkedService, EloquaLinkedServiceArgs

    Endpoint object
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    Username object
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password corresponding to the user name.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    Endpoint interface{}
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    Username interface{}
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    endpoint Object
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Object
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    endpoint any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    endpoint Any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    endpoint Any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    EloquaLinkedServiceResponse, EloquaLinkedServiceResponseArgs

    Endpoint object
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    Username object
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password corresponding to the user name.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    Endpoint interface{}
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    Username interface{}
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    endpoint Object
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Object
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    endpoint any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    endpoint Any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    endpoint Any
    The endpoint of the Eloqua server. (i.e. eloqua.example.com)
    username Any
    The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    FileServerLinkedService, FileServerLinkedServiceArgs

    Host object
    Host name of the server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to logon the server.
    UserId object
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name of the server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    UserId interface{}
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name of the server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    userId Object
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    userId any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the server.
    user_id Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the server.
    userId Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    FileServerLinkedServiceResponse, FileServerLinkedServiceResponseArgs

    Host object
    Host name of the server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to logon the server.
    UserId object
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name of the server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    UserId interface{}
    User ID to logon the server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name of the server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    userId Object
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    userId any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the server.
    user_id Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name of the server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the server.
    userId Any
    User ID to logon the server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    FtpAuthenticationType, FtpAuthenticationTypeArgs

    Basic
    Basic
    Anonymous
    Anonymous
    FtpAuthenticationTypeBasic
    Basic
    FtpAuthenticationTypeAnonymous
    Anonymous
    Basic
    Basic
    Anonymous
    Anonymous
    Basic
    Basic
    Anonymous
    Anonymous
    BASIC
    Basic
    ANONYMOUS
    Anonymous
    "Basic"
    Basic
    "Anonymous"
    Anonymous

    FtpServerLinkedService, FtpServerLinkedServiceArgs

    Host object
    Host name of the FTP server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.FtpAuthenticationType
    The authentication type to be used to connect to the FTP server.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation object
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EnableSsl object
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password to logon the FTP server.
    Port object
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    UserName object
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name of the FTP server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | FtpAuthenticationType
    The authentication type to be used to connect to the FTP server.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation interface{}
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EnableSsl interface{}
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password to logon the FTP server.
    Port interface{}
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    UserName interface{}
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | FtpAuthenticationType
    The authentication type to be used to connect to the FTP server.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Object
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl Object
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the FTP server.
    port Object
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName Object
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | FtpAuthenticationType
    The authentication type to be used to connect to the FTP server.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    enableServerCertificateValidation any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the FTP server.
    port any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | FtpAuthenticationType
    The authentication type to be used to connect to the FTP server.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    enable_server_certificate_validation Any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enable_ssl Any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password to logon the FTP server.
    port Any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    user_name Any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "Basic" | "Anonymous"
    The authentication type to be used to connect to the FTP server.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl Any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the FTP server.
    port Any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName Any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    FtpServerLinkedServiceResponse, FtpServerLinkedServiceResponseArgs

    Host object
    Host name of the FTP server. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The authentication type to be used to connect to the FTP server.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation object
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EnableSsl object
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password to logon the FTP server.
    Port object
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    UserName object
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Host interface{}
    Host name of the FTP server. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The authentication type to be used to connect to the FTP server.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation interface{}
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EnableSsl interface{}
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the FTP server.
    Port interface{}
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    UserName interface{}
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    host Object
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The authentication type to be used to connect to the FTP server.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Object
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl Object
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the FTP server.
    port Object
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName Object
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    host any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    The authentication type to be used to connect to the FTP server.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    enableServerCertificateValidation any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the FTP server.
    port any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    host Any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    The authentication type to be used to connect to the FTP server.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    enable_server_certificate_validation Any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enable_ssl Any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password to logon the FTP server.
    port Any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    user_name Any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    host Any
    Host name of the FTP server. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The authentication type to be used to connect to the FTP server.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Any
    If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    enableSsl Any
    If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password to logon the FTP server.
    port Any
    The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
    userName Any
    Username to logon the FTP server. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    GoogleAdWordsAuthenticationType, GoogleAdWordsAuthenticationTypeArgs

    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    GoogleAdWordsAuthenticationTypeServiceAuthentication
    ServiceAuthentication
    GoogleAdWordsAuthenticationTypeUserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    SERVICE_AUTHENTICATION
    ServiceAuthentication
    USER_AUTHENTICATION
    UserAuthentication
    "ServiceAuthentication"
    ServiceAuthentication
    "UserAuthentication"
    UserAuthentication

    GoogleAdWordsLinkedService, GoogleAdWordsLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.GoogleAdWordsAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    ClientCustomerID object
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties object
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    DeveloperToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    Email object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    GoogleAdsApiVersion object
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    KeyFilePath object
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    LoginCustomerID object
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    SupportLegacyDataTypes object
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    TrustedCertPath object
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore object
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | GoogleAdWordsAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    ClientCustomerID interface{}
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties interface{}
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    DeveloperToken AzureKeyVaultSecretReference | SecureString
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    Email interface{}
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    GoogleAdsApiVersion interface{}
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    KeyFilePath interface{}
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    LoginCustomerID interface{}
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    PrivateKey AzureKeyVaultSecretReference | SecureString
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    RefreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    SupportLegacyDataTypes interface{}
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    TrustedCertPath interface{}
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore interface{}
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | GoogleAdWordsAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID Object
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties Object
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    developerToken AzureKeyVaultSecretReference | SecureString
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion Object
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath Object
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID Object
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    privateKey AzureKeyVaultSecretReference | SecureString
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes Object
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath Object
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Object
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | GoogleAdWordsAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description string
    Linked service description.
    developerToken AzureKeyVaultSecretReference | SecureString
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    privateKey AzureKeyVaultSecretReference | SecureString
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | GoogleAdWordsAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    client_customer_id Any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_properties Any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description str
    Linked service description.
    developer_token AzureKeyVaultSecretReference | SecureString
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    key_file_path Any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    login_customer_id Any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    private_key AzureKeyVaultSecretReference | SecureString
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refresh_token AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    support_legacy_data_types Any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trusted_cert_path Any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    use_system_trust_store Any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "ServiceAuthentication" | "UserAuthentication"
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID Any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    developerToken Property Map | Property Map
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion Any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath Any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID Any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    privateKey Property Map | Property Map
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes Any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath Any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.

    GoogleAdWordsLinkedServiceResponse, GoogleAdWordsLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    ClientCustomerID object
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties object
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    DeveloperToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    Email object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    GoogleAdsApiVersion object
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    KeyFilePath object
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    LoginCustomerID object
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    PrivateKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    SupportLegacyDataTypes object
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    TrustedCertPath object
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore object
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    ClientCustomerID interface{}
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties interface{}
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    Description string
    Linked service description.
    DeveloperToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    Email interface{}
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    GoogleAdsApiVersion interface{}
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    KeyFilePath interface{}
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    LoginCustomerID interface{}
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    PrivateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    RefreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    SupportLegacyDataTypes interface{}
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    TrustedCertPath interface{}
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore interface{}
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID Object
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties Object
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    developerToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion Object
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath Object
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID Object
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes Object
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath Object
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Object
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description string
    Linked service description.
    developerToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    privateKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    client_customer_id Any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_properties Any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description str
    Linked service description.
    developer_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    key_file_path Any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    login_customer_id Any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    private_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refresh_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    support_legacy_data_types Any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trusted_cert_path Any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    use_system_trust_store Any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    clientCustomerID Any
    The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string).
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.
    description String
    Linked service description.
    developerToken Property Map | Property Map
    The developer token associated with the manager account that you use to grant access to the AdWords API.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    googleAdsApiVersion Any
    The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string).
    keyFilePath Any
    (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    loginCustomerID Any
    The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    privateKey Property Map | Property Map
    The private key that is used to authenticate the service account email address and can only be used on self-hosted IR.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to AdWords for UserAuthentication.
    supportLegacyDataTypes Any
    Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean).
    trustedCertPath Any
    (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Any
    (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.

    GoogleBigQueryAuthenticationType, GoogleBigQueryAuthenticationTypeArgs

    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    GoogleBigQueryAuthenticationTypeServiceAuthentication
    ServiceAuthentication
    GoogleBigQueryAuthenticationTypeUserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    SERVICE_AUTHENTICATION
    ServiceAuthentication
    USER_AUTHENTICATION
    UserAuthentication
    "ServiceAuthentication"
    ServiceAuthentication
    "UserAuthentication"
    UserAuthentication

    GoogleBigQueryLinkedService, GoogleBigQueryLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.GoogleBigQueryAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    Project object
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    AdditionalProjects object
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Email object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFilePath object
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    RequestGoogleDriveScope object
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    AuthenticationType string | GoogleBigQueryAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    Project interface{}
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    AdditionalProjects interface{}
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    Email interface{}
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFilePath interface{}
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    RefreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    RequestGoogleDriveScope interface{}
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore interface{}
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    authenticationType String | GoogleBigQueryAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Object
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects Object
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    email Object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath Object
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope Object
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.
    authenticationType string | GoogleBigQueryAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    email any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version string
    Version of the linked service.
    authentication_type str | GoogleBigQueryAuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additional_projects Any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key_file_path Any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    refresh_token AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    request_google_drive_scope Any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    use_system_trust_store Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version str
    Version of the linked service.
    authenticationType String | "ServiceAuthentication" | "UserAuthentication"
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects Any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath Any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope Any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.

    GoogleBigQueryLinkedServiceResponse, GoogleBigQueryLinkedServiceResponseArgs

    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    Project object
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    AdditionalProjects object
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Email object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFilePath object
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    RequestGoogleDriveScope object
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    Project interface{}
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    AdditionalProjects interface{}
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    Email interface{}
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFilePath interface{}
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    RefreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    RequestGoogleDriveScope interface{}
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    UseSystemTrustStore interface{}
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    Version string
    Version of the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Object
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects Object
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    email Object
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath Object
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope Object
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.
    authenticationType string
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    email any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version string
    Version of the linked service.
    authentication_type str
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additional_projects Any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key_file_path Any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    refresh_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    request_google_drive_scope Any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    use_system_trust_store Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version str
    Version of the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
    project Any
    The default BigQuery project to query against. Type: string (or Expression with resultType string).
    additionalProjects Any
    A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    email Any
    The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFilePath Any
    The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    requestGoogleDriveScope Any
    Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string).
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string).
    useSystemTrustStore Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean).
    version String
    Version of the linked service.

    GoogleBigQueryV2AuthenticationType, GoogleBigQueryV2AuthenticationTypeArgs

    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    GoogleBigQueryV2AuthenticationTypeServiceAuthentication
    ServiceAuthentication
    GoogleBigQueryV2AuthenticationTypeUserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    ServiceAuthentication
    ServiceAuthentication
    UserAuthentication
    UserAuthentication
    SERVICE_AUTHENTICATION
    ServiceAuthentication
    USER_AUTHENTICATION
    UserAuthentication
    "ServiceAuthentication"
    ServiceAuthentication
    "UserAuthentication"
    UserAuthentication

    GoogleBigQueryV2LinkedService, GoogleBigQueryV2LinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.GoogleBigQueryV2AuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication.
    ProjectId object
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFileContent Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    Version string
    Version of the linked service.
    AuthenticationType string | GoogleBigQueryV2AuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication.
    ProjectId interface{}
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFileContent AzureKeyVaultSecretReference | SecureString
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    RefreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    Version string
    Version of the linked service.
    authenticationType String | GoogleBigQueryV2AuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId Object
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent AzureKeyVaultSecretReference | SecureString
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version String
    Version of the linked service.
    authenticationType string | GoogleBigQueryV2AuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent AzureKeyVaultSecretReference | SecureString
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version string
    Version of the linked service.
    authentication_type str | GoogleBigQueryV2AuthenticationType
    The OAuth 2.0 authentication mechanism used for authentication.
    project_id Any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReference | SecureString
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key_file_content AzureKeyVaultSecretReference | SecureString
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    refresh_token AzureKeyVaultSecretReference | SecureString
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version str
    Version of the linked service.
    authenticationType String | "ServiceAuthentication" | "UserAuthentication"
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId Any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent Property Map | Property Map
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version String
    Version of the linked service.

    GoogleBigQueryV2LinkedServiceResponse, GoogleBigQueryV2LinkedServiceResponseArgs

    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication.
    ProjectId object
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientId object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFileContent Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    Version string
    Version of the linked service.
    AuthenticationType string
    The OAuth 2.0 authentication mechanism used for authentication.
    ProjectId interface{}
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientId interface{}
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    KeyFileContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    RefreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    Version string
    Version of the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId Object
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientId Object
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version String
    Version of the linked service.
    authenticationType string
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientId any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version string
    Version of the linked service.
    authentication_type str
    The OAuth 2.0 authentication mechanism used for authentication.
    project_id Any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_id Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of the google application used to acquire the refresh token.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    key_file_content AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    refresh_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version str
    Version of the linked service.
    authenticationType String
    The OAuth 2.0 authentication mechanism used for authentication.
    projectId Any
    The default BigQuery project id to query against. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientId Any
    The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
    clientSecret Property Map | Property Map
    The client secret of the google application used to acquire the refresh token.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    keyFileContent Property Map | Property Map
    The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.
    refreshToken Property Map | Property Map
    The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
    version String
    Version of the linked service.

    GoogleCloudStorageLinkedService, GoogleCloudStorageLinkedServiceArgs

    AccessKeyId object
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReference | SecureString
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReference | SecureString
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    GoogleCloudStorageLinkedServiceResponse, GoogleCloudStorageLinkedServiceResponseArgs

    AccessKeyId object
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    SecretAccessKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AccessKeyId interface{}
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    SecretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    accessKeyId Object
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    accessKeyId any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    secretAccessKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    access_key_id Any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    secret_access_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    accessKeyId Any
    The access key identifier of the Google Cloud Storage Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    secretAccessKey Property Map | Property Map
    The secret access key of the Google Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    GoogleSheetsLinkedService, GoogleSheetsLinkedServiceArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The api token for the GoogleSheets source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReference | SecureString
    The api token for the GoogleSheets source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the GoogleSheets source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReference | SecureString
    The api token for the GoogleSheets source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReference | SecureString
    The api token for the GoogleSheets source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the GoogleSheets source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    GoogleSheetsLinkedServiceResponse, GoogleSheetsLinkedServiceResponseArgs

    ApiToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The api token for the GoogleSheets source.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Version string
    Version of the linked service.
    ApiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the GoogleSheets source.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Version string
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the GoogleSheets source.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    version String
    Version of the linked service.
    apiToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the GoogleSheets source.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    version string
    Version of the linked service.
    api_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The api token for the GoogleSheets source.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    version str
    Version of the linked service.
    apiToken Property Map | Property Map
    The api token for the GoogleSheets source.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    version String
    Version of the linked service.

    GreenplumAuthenticationType, GreenplumAuthenticationTypeArgs

    Basic
    Basic
    GreenplumAuthenticationTypeBasic
    Basic
    Basic
    Basic
    Basic
    Basic
    BASIC
    Basic
    "Basic"
    Basic

    GreenplumLinkedService, GreenplumLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string | Pulumi.AzureNative.DataFactory.GreenplumAuthenticationType
    The authentication type to use. Type: string. Only used for V2.
    CommandTimeout object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    ConnectionTimeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    Database object
    Database name for connection. Type: string. Only used for V2.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Host object
    Host name for connection. Type: string. Only used for V2.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Port object
    The port for the connection. Type: integer. Only used for V2.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    Username object
    Username for authentication. Type: string. Only used for V2.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string | GreenplumAuthenticationType
    The authentication type to use. Type: string. Only used for V2.
    CommandTimeout interface{}
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    ConnectionTimeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    Database interface{}
    Database name for connection. Type: string. Only used for V2.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Host interface{}
    Host name for connection. Type: string. Only used for V2.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Port interface{}
    The port for the connection. Type: integer. Only used for V2.
    Pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    Username interface{}
    Username for authentication. Type: string. Only used for V2.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String | GreenplumAuthenticationType
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout Object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Object
    Database name for connection. Type: string. Only used for V2.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Object
    Host name for connection. Type: string. Only used for V2.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    port Object
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Object
    Username for authentication. Type: string. Only used for V2.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string | GreenplumAuthenticationType
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database any
    Database name for connection. Type: string. Only used for V2.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host any
    Host name for connection. Type: string. Only used for V2.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    port any
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username any
    Username for authentication. Type: string. Only used for V2.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str | GreenplumAuthenticationType
    The authentication type to use. Type: string. Only used for V2.
    command_timeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connection_timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Any
    Database name for connection. Type: string. Only used for V2.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Any
    Host name for connection. Type: string. Only used for V2.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    port Any
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Any
    Username for authentication. Type: string. Only used for V2.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String | "Basic"
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Any
    Database name for connection. Type: string. Only used for V2.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Any
    Host name for connection. Type: string. Only used for V2.
    parameters Map<Property Map>
    Parameters for linked service.
    port Any
    The port for the connection. Type: integer. Only used for V2.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Any
    Username for authentication. Type: string. Only used for V2.
    version String
    Version of the linked service.

    GreenplumLinkedServiceResponse, GreenplumLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The authentication type to use. Type: string. Only used for V2.
    CommandTimeout object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    ConnectionTimeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    Database object
    Database name for connection. Type: string. Only used for V2.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Host object
    Host name for connection. Type: string. Only used for V2.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Port object
    The port for the connection. Type: integer. Only used for V2.
    Pwd Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    Username object
    Username for authentication. Type: string. Only used for V2.
    Version string
    Version of the linked service.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType string
    The authentication type to use. Type: string. Only used for V2.
    CommandTimeout interface{}
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionString interface{}
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    ConnectionTimeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    Database interface{}
    Database name for connection. Type: string. Only used for V2.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Host interface{}
    Host name for connection. Type: string. Only used for V2.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Port interface{}
    The port for the connection. Type: integer. Only used for V2.
    Pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    Username interface{}
    Username for authentication. Type: string. Only used for V2.
    Version string
    Version of the linked service.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout Object
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString Object
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Object
    Database name for connection. Type: string. Only used for V2.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Object
    Host name for connection. Type: string. Only used for V2.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    port Object
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Object
    Username for authentication. Type: string. Only used for V2.
    version String
    Version of the linked service.
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType string
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionString any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database any
    Database name for connection. Type: string. Only used for V2.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host any
    Host name for connection. Type: string. Only used for V2.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    port any
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username any
    Username for authentication. Type: string. Only used for V2.
    version string
    Version of the linked service.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type str
    The authentication type to use. Type: string. Only used for V2.
    command_timeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_string Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connection_timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Any
    Database name for connection. Type: string. Only used for V2.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Any
    Host name for connection. Type: string. Only used for V2.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    port Any
    The port for the connection. Type: integer. Only used for V2.
    pwd AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Any
    Username for authentication. Type: string. Only used for V2.
    version str
    Version of the linked service.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType String
    The authentication type to use. Type: string. Only used for V2.
    commandTimeout Any
    The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. Only used for V2.
    connectVia Property Map
    The integration runtime reference.
    connectionString Any
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    connectionTimeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. Only used for V2.
    database Any
    Database name for connection. Type: string. Only used for V2.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    host Any
    Host name for connection. Type: string. Only used for V2.
    parameters Map<Property Map>
    Parameters for linked service.
    port Any
    The port for the connection. Type: integer. Only used for V2.
    pwd Property Map
    The Azure key vault secret reference of password in connection string.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. Only used for V2.
    username Any
    Username for authentication. Type: string. Only used for V2.
    version String
    Version of the linked service.

    HBaseAuthenticationType, HBaseAuthenticationTypeArgs

    Anonymous
    Anonymous
    Basic
    Basic
    HBaseAuthenticationTypeAnonymous
    Anonymous
    HBaseAuthenticationTypeBasic
    Basic
    Anonymous
    Anonymous
    Basic
    Basic
    Anonymous
    Anonymous
    Basic
    Basic
    ANONYMOUS
    Anonymous
    BASIC
    Basic
    "Anonymous"
    Anonymous
    "Basic"
    Basic

    HBaseLinkedService, HBaseLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.HBaseAuthenticationType
    The authentication mechanism to use to connect to the HBase server.
    Host object
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    AllowHostNameCNMismatch object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableSsl object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath object
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password corresponding to the user name.
    Port object
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    Username object
    The user name used to connect to the HBase instance.
    Version string
    Version of the linked service.
    AuthenticationType string | HBaseAuthenticationType
    The authentication mechanism to use to connect to the HBase server.
    Host interface{}
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    AllowHostNameCNMismatch interface{}
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableSsl interface{}
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath interface{}
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    Port interface{}
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    Username interface{}
    The user name used to connect to the HBase instance.
    Version string
    Version of the linked service.
    authenticationType String | HBaseAuthenticationType
    The authentication mechanism to use to connect to the HBase server.
    host Object
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch Object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    enableSsl Object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Object
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    port Object
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Object
    The user name used to connect to the HBase instance.
    version String
    Version of the linked service.
    authenticationType string | HBaseAuthenticationType
    The authentication mechanism to use to connect to the HBase server.
    host any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    enableSsl any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    port any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username any
    The user name used to connect to the HBase instance.
    version string
    Version of the linked service.
    authentication_type str | HBaseAuthenticationType
    The authentication mechanism to use to connect to the HBase server.
    host Any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allow_host_name_cn_mismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    enable_ssl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    http_path Any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name.
    port Any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Any
    The user name used to connect to the HBase instance.
    version str
    Version of the linked service.
    authenticationType String | "Anonymous" | "Basic"
    The authentication mechanism to use to connect to the HBase server.
    host Any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableSsl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name.
    port Any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Any
    The user name used to connect to the HBase instance.
    version String
    Version of the linked service.

    HBaseLinkedServiceResponse, HBaseLinkedServiceResponseArgs

    AuthenticationType string
    The authentication mechanism to use to connect to the HBase server.
    Host object
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    AllowHostNameCNMismatch object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableSsl object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath object
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password corresponding to the user name.
    Port object
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    Username object
    The user name used to connect to the HBase instance.
    Version string
    Version of the linked service.
    AuthenticationType string
    The authentication mechanism to use to connect to the HBase server.
    Host interface{}
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    AllowHostNameCNMismatch interface{}
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableSsl interface{}
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath interface{}
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    Port interface{}
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    Username interface{}
    The user name used to connect to the HBase instance.
    Version string
    Version of the linked service.
    authenticationType String
    The authentication mechanism to use to connect to the HBase server.
    host Object
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch Object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    enableSsl Object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Object
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    port Object
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Object
    The user name used to connect to the HBase instance.
    version String
    Version of the linked service.
    authenticationType string
    The authentication mechanism to use to connect to the HBase server.
    host any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    enableSsl any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    port any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username any
    The user name used to connect to the HBase instance.
    version string
    Version of the linked service.
    authentication_type str
    The authentication mechanism to use to connect to the HBase server.
    host Any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allow_host_name_cn_mismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    enable_ssl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    http_path Any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name.
    port Any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Any
    The user name used to connect to the HBase instance.
    version str
    Version of the linked service.
    authenticationType String
    The authentication mechanism to use to connect to the HBase server.
    host Any
    The IP address or host name of the HBase server. (i.e. 192.168.222.160)
    allowHostNameCNMismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableSsl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Any
    The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name.
    port Any
    The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    username Any
    The user name used to connect to the HBase instance.
    version String
    Version of the linked service.

    HDInsightLinkedService, HDInsightLinkedServiceArgs

    ClusterUri object
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileSystem object
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    HcatalogLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    A reference to the Azure SQL linked service that points to the HCatalog database.
    IsEspEnabled object
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The Azure Storage linked service reference.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    HDInsight cluster password.
    UserName object
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    ClusterUri interface{}
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileSystem interface{}
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    HcatalogLinkedServiceName LinkedServiceReference
    A reference to the Azure SQL linked service that points to the HCatalog database.
    IsEspEnabled interface{}
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    LinkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    HDInsight cluster password.
    UserName interface{}
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    clusterUri Object
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem Object
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName LinkedServiceReference
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled Object
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    HDInsight cluster password.
    userName Object
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    clusterUri any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName LinkedServiceReference
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName LinkedServiceReference
    The Azure Storage linked service reference.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    HDInsight cluster password.
    userName any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    cluster_uri Any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    file_system Any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalog_linked_service_name LinkedServiceReference
    A reference to the Azure SQL linked service that points to the HCatalog database.
    is_esp_enabled Any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linked_service_name LinkedServiceReference
    The Azure Storage linked service reference.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    HDInsight cluster password.
    user_name Any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    clusterUri Any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem Any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName Property Map
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled Any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName Property Map
    The Azure Storage linked service reference.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    HDInsight cluster password.
    userName Any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HDInsightLinkedServiceResponse, HDInsightLinkedServiceResponseArgs

    ClusterUri object
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileSystem object
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    HcatalogLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    A reference to the Azure SQL linked service that points to the HCatalog database.
    IsEspEnabled object
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    HDInsight cluster password.
    UserName object
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    ClusterUri interface{}
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    FileSystem interface{}
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    HcatalogLinkedServiceName LinkedServiceReferenceResponse
    A reference to the Azure SQL linked service that points to the HCatalog database.
    IsEspEnabled interface{}
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    LinkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    HDInsight cluster password.
    UserName interface{}
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    clusterUri Object
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem Object
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName LinkedServiceReferenceResponse
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled Object
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    HDInsight cluster password.
    userName Object
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    clusterUri any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName LinkedServiceReferenceResponse
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    HDInsight cluster password.
    userName any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    cluster_uri Any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    file_system Any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalog_linked_service_name LinkedServiceReferenceResponse
    A reference to the Azure SQL linked service that points to the HCatalog database.
    is_esp_enabled Any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linked_service_name LinkedServiceReferenceResponse
    The Azure Storage linked service reference.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    HDInsight cluster password.
    user_name Any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    clusterUri Any
    HDInsight cluster URI. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    fileSystem Any
    Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
    hcatalogLinkedServiceName Property Map
    A reference to the Azure SQL linked service that points to the HCatalog database.
    isEspEnabled Any
    Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
    linkedServiceName Property Map
    The Azure Storage linked service reference.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    HDInsight cluster password.
    userName Any
    HDInsight cluster user name. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HDInsightOnDemandLinkedService, HDInsightOnDemandLinkedServiceArgs

    ClusterResourceGroup object
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    ClusterSize object
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    HostSubscriptionId object
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    Tenant object
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    TimeToLive object
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AdditionalLinkedServiceNames List<Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClusterNamePrefix object
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    ClusterPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password to access the cluster.
    ClusterSshPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password to SSH remotely connect cluster’s node (for Linux).
    ClusterSshUserName object
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    ClusterType object
    The cluster type. Type: string (or Expression with resultType string).
    ClusterUserName object
    The username to access the cluster. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    CoreConfiguration object
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReference
    The credential reference containing authentication information.
    DataNodeSize object
    Specifies the size of the data node for the HDInsight cluster.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HBaseConfiguration object
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    HcatalogLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    HdfsConfiguration object
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    HeadNodeSize object
    Specifies the size of the head node for the HDInsight cluster.
    HiveConfiguration object
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    MapReduceConfiguration object
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    OozieConfiguration object
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ScriptActions List<Pulumi.AzureNative.DataFactory.Inputs.ScriptAction>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    ServicePrincipalId object
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The key for the service principal id.
    SparkVersion object
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    StormConfiguration object
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    SubnetName object
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    VirtualNetworkId object
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    YarnConfiguration object
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    ZookeeperNodeSize object
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    ClusterResourceGroup interface{}
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    ClusterSize interface{}
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    HostSubscriptionId interface{}
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    Tenant interface{}
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    TimeToLive interface{}
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AdditionalLinkedServiceNames []LinkedServiceReference
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClusterNamePrefix interface{}
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    ClusterPassword AzureKeyVaultSecretReference | SecureString
    The password to access the cluster.
    ClusterSshPassword AzureKeyVaultSecretReference | SecureString
    The password to SSH remotely connect cluster’s node (for Linux).
    ClusterSshUserName interface{}
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    ClusterType interface{}
    The cluster type. Type: string (or Expression with resultType string).
    ClusterUserName interface{}
    The username to access the cluster. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    CoreConfiguration interface{}
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    Credential CredentialReference
    The credential reference containing authentication information.
    DataNodeSize interface{}
    Specifies the size of the data node for the HDInsight cluster.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HBaseConfiguration interface{}
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    HcatalogLinkedServiceName LinkedServiceReference
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    HdfsConfiguration interface{}
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    HeadNodeSize interface{}
    Specifies the size of the head node for the HDInsight cluster.
    HiveConfiguration interface{}
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    MapReduceConfiguration interface{}
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    OozieConfiguration interface{}
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    ScriptActions []ScriptAction
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    ServicePrincipalId interface{}
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key for the service principal id.
    SparkVersion interface{}
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    StormConfiguration interface{}
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    SubnetName interface{}
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    VirtualNetworkId interface{}
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    YarnConfiguration interface{}
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    ZookeeperNodeSize interface{}
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup Object
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize Object
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId Object
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Object
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive Object
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    additionalLinkedServiceNames List<LinkedServiceReference>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clusterNamePrefix Object
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword AzureKeyVaultSecretReference | SecureString
    The password to access the cluster.
    clusterSshPassword AzureKeyVaultSecretReference | SecureString
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName Object
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType Object
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName Object
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    coreConfiguration Object
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReference
    The credential reference containing authentication information.
    dataNodeSize Object
    Specifies the size of the data node for the HDInsight cluster.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration Object
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName LinkedServiceReference
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration Object
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize Object
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration Object
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration Object
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration Object
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    scriptActions List<ScriptAction>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId Object
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key for the service principal id.
    sparkVersion Object
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration Object
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName Object
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId Object
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration Object
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize Object
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    additionalLinkedServiceNames LinkedServiceReference[]
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations any[]
    List of tags that can be used for describing the linked service.
    clusterNamePrefix any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword AzureKeyVaultSecretReference | SecureString
    The password to access the cluster.
    clusterSshPassword AzureKeyVaultSecretReference | SecureString
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType any
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    coreConfiguration any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReference
    The credential reference containing authentication information.
    dataNodeSize any
    Specifies the size of the data node for the HDInsight cluster.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName LinkedServiceReference
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize any
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    scriptActions ScriptAction[]
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The key for the service principal id.
    sparkVersion any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    cluster_resource_group Any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    cluster_size Any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    host_subscription_id Any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    time_to_live Any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    additional_linked_service_names Sequence[LinkedServiceReference]
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    cluster_name_prefix Any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    cluster_password AzureKeyVaultSecretReference | SecureString
    The password to access the cluster.
    cluster_ssh_password AzureKeyVaultSecretReference | SecureString
    The password to SSH remotely connect cluster’s node (for Linux).
    cluster_ssh_user_name Any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    cluster_type Any
    The cluster type. Type: string (or Expression with resultType string).
    cluster_user_name Any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    core_configuration Any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReference
    The credential reference containing authentication information.
    data_node_size Any
    Specifies the size of the data node for the HDInsight cluster.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    h_base_configuration Any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalog_linked_service_name LinkedServiceReference
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfs_configuration Any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    head_node_size Any
    Specifies the size of the head node for the HDInsight cluster.
    hive_configuration Any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    map_reduce_configuration Any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozie_configuration Any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    script_actions Sequence[ScriptAction]
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    service_principal_id Any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The key for the service principal id.
    spark_version Any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    storm_configuration Any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnet_name Any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtual_network_id Any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarn_configuration Any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeper_node_size Any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup Any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize Any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId Any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive Any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    additionalLinkedServiceNames List<Property Map>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clusterNamePrefix Any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword Property Map | Property Map
    The password to access the cluster.
    clusterSshPassword Property Map | Property Map
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName Any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType Any
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName Any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    coreConfiguration Any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential Property Map
    The credential reference containing authentication information.
    dataNodeSize Any
    Specifies the size of the data node for the HDInsight cluster.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration Any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName Property Map
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration Any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize Any
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration Any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration Any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration Any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Map<Property Map>
    Parameters for linked service.
    scriptActions List<Property Map>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId Any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key for the service principal id.
    sparkVersion Any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration Any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName Any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId Any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration Any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize Any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.

    HDInsightOnDemandLinkedServiceResponse, HDInsightOnDemandLinkedServiceResponseArgs

    ClusterResourceGroup object
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    ClusterSize object
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    HostSubscriptionId object
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    Tenant object
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    TimeToLive object
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AdditionalLinkedServiceNames List<Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClusterNamePrefix object
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    ClusterPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password to access the cluster.
    ClusterSshPassword Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password to SSH remotely connect cluster’s node (for Linux).
    ClusterSshUserName object
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    ClusterType object
    The cluster type. Type: string (or Expression with resultType string).
    ClusterUserName object
    The username to access the cluster. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    CoreConfiguration object
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    Credential Pulumi.AzureNative.DataFactory.Inputs.CredentialReferenceResponse
    The credential reference containing authentication information.
    DataNodeSize object
    Specifies the size of the data node for the HDInsight cluster.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HBaseConfiguration object
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    HcatalogLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    HdfsConfiguration object
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    HeadNodeSize object
    Specifies the size of the head node for the HDInsight cluster.
    HiveConfiguration object
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    MapReduceConfiguration object
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    OozieConfiguration object
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ScriptActions List<Pulumi.AzureNative.DataFactory.Inputs.ScriptActionResponse>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    ServicePrincipalId object
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The key for the service principal id.
    SparkVersion object
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    StormConfiguration object
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    SubnetName object
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    VirtualNetworkId object
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    YarnConfiguration object
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    ZookeeperNodeSize object
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    ClusterResourceGroup interface{}
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    ClusterSize interface{}
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    HostSubscriptionId interface{}
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    Tenant interface{}
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    TimeToLive interface{}
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    AdditionalLinkedServiceNames []LinkedServiceReferenceResponse
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClusterNamePrefix interface{}
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    ClusterPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to access the cluster.
    ClusterSshPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to SSH remotely connect cluster’s node (for Linux).
    ClusterSshUserName interface{}
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    ClusterType interface{}
    The cluster type. Type: string (or Expression with resultType string).
    ClusterUserName interface{}
    The username to access the cluster. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    CoreConfiguration interface{}
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    Credential CredentialReferenceResponse
    The credential reference containing authentication information.
    DataNodeSize interface{}
    Specifies the size of the data node for the HDInsight cluster.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HBaseConfiguration interface{}
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    HcatalogLinkedServiceName LinkedServiceReferenceResponse
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    HdfsConfiguration interface{}
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    HeadNodeSize interface{}
    Specifies the size of the head node for the HDInsight cluster.
    HiveConfiguration interface{}
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    MapReduceConfiguration interface{}
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    OozieConfiguration interface{}
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    ScriptActions []ScriptActionResponse
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    ServicePrincipalId interface{}
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key for the service principal id.
    SparkVersion interface{}
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    StormConfiguration interface{}
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    SubnetName interface{}
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    VirtualNetworkId interface{}
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    YarnConfiguration interface{}
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    ZookeeperNodeSize interface{}
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup Object
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize Object
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId Object
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Object
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive Object
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    additionalLinkedServiceNames List<LinkedServiceReferenceResponse>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clusterNamePrefix Object
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to access the cluster.
    clusterSshPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName Object
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType Object
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName Object
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    coreConfiguration Object
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    dataNodeSize Object
    Specifies the size of the data node for the HDInsight cluster.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration Object
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName LinkedServiceReferenceResponse
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration Object
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize Object
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration Object
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration Object
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration Object
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    scriptActions List<ScriptActionResponse>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId Object
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key for the service principal id.
    sparkVersion Object
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration Object
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName Object
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId Object
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration Object
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize Object
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    additionalLinkedServiceNames LinkedServiceReferenceResponse[]
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations any[]
    List of tags that can be used for describing the linked service.
    clusterNamePrefix any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to access the cluster.
    clusterSshPassword AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType any
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    coreConfiguration any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    dataNodeSize any
    Specifies the size of the data node for the HDInsight cluster.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName LinkedServiceReferenceResponse
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize any
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    scriptActions ScriptActionResponse[]
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key for the service principal id.
    sparkVersion any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    cluster_resource_group Any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    cluster_size Any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    host_subscription_id Any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    time_to_live Any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    additional_linked_service_names Sequence[LinkedServiceReferenceResponse]
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    cluster_name_prefix Any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    cluster_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to access the cluster.
    cluster_ssh_password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password to SSH remotely connect cluster’s node (for Linux).
    cluster_ssh_user_name Any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    cluster_type Any
    The cluster type. Type: string (or Expression with resultType string).
    cluster_user_name Any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    core_configuration Any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential CredentialReferenceResponse
    The credential reference containing authentication information.
    data_node_size Any
    Specifies the size of the data node for the HDInsight cluster.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    h_base_configuration Any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalog_linked_service_name LinkedServiceReferenceResponse
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfs_configuration Any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    head_node_size Any
    Specifies the size of the head node for the HDInsight cluster.
    hive_configuration Any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    map_reduce_configuration Any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozie_configuration Any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    script_actions Sequence[ScriptActionResponse]
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    service_principal_id Any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The key for the service principal id.
    spark_version Any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    storm_configuration Any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnet_name Any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtual_network_id Any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarn_configuration Any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeper_node_size Any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.
    clusterResourceGroup Any
    The resource group where the cluster belongs. Type: string (or Expression with resultType string).
    clusterSize Any
    Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int).
    hostSubscriptionId Any
    The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
    tenant Any
    The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
    timeToLive Any
    The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    additionalLinkedServiceNames List<Property Map>
    Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clusterNamePrefix Any
    The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
    clusterPassword Property Map | Property Map
    The password to access the cluster.
    clusterSshPassword Property Map | Property Map
    The password to SSH remotely connect cluster’s node (for Linux).
    clusterSshUserName Any
    The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
    clusterType Any
    The cluster type. Type: string (or Expression with resultType string).
    clusterUserName Any
    The username to access the cluster. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    coreConfiguration Any
    Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
    credential Property Map
    The credential reference containing authentication information.
    dataNodeSize Any
    Specifies the size of the data node for the HDInsight cluster.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    hBaseConfiguration Any
    Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
    hcatalogLinkedServiceName Property Map
    The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
    hdfsConfiguration Any
    Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
    headNodeSize Any
    Specifies the size of the head node for the HDInsight cluster.
    hiveConfiguration Any
    Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
    mapReduceConfiguration Any
    Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
    oozieConfiguration Any
    Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
    parameters Map<Property Map>
    Parameters for linked service.
    scriptActions List<Property Map>
    Custom script actions to run on HDI ondemand cluster once it's up. Please refer to https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-hadoop-customize-cluster-linux?toc=%2Fen-us%2Fazure%2Fhdinsight%2Fr-server%2FTOC.json&bc=%2Fen-us%2Fazure%2Fbread%2Ftoc.json#understanding-script-actions.
    servicePrincipalId Any
    The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The key for the service principal id.
    sparkVersion Any
    The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
    stormConfiguration Any
    Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
    subnetName Any
    The ARM resource ID for the subnet in the vNet. If virtualNetworkId was specified, then this property is required. Type: string (or Expression with resultType string).
    virtualNetworkId Any
    The ARM resource ID for the vNet to which the cluster should be joined after creation. Type: string (or Expression with resultType string).
    yarnConfiguration Any
    Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
    zookeeperNodeSize Any
    Specifies the size of the Zoo Keeper node for the HDInsight cluster.

    HdfsLinkedService, HdfsLinkedServiceArgs

    Url object
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password for Windows authentication.
    UserName object
    User name for Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Url interface{}
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password for Windows authentication.
    UserName interface{}
    User name for Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    url Object
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Windows authentication.
    userName Object
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    url any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Windows authentication.
    userName any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    url Any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Windows authentication.
    user_name Any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    url Any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for Windows authentication.
    userName Any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HdfsLinkedServiceResponse, HdfsLinkedServiceResponseArgs

    Url object
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthenticationType object
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password for Windows authentication.
    UserName object
    User name for Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Url interface{}
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthenticationType interface{}
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Windows authentication.
    UserName interface{}
    User name for Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    url Object
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authenticationType Object
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Windows authentication.
    userName Object
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    url any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authenticationType any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Windows authentication.
    userName any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    url Any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    authentication_type Any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Windows authentication.
    user_name Any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    url Any
    The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authenticationType Any
    Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for Windows authentication.
    userName Any
    User name for Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HiveAuthenticationType, HiveAuthenticationTypeArgs

    Anonymous
    Anonymous
    Username
    Username
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    HiveAuthenticationTypeAnonymous
    Anonymous
    HiveAuthenticationTypeUsername
    Username
    HiveAuthenticationTypeUsernameAndPassword
    UsernameAndPassword
    HiveAuthenticationTypeWindowsAzureHDInsightService
    WindowsAzureHDInsightService
    Anonymous
    Anonymous
    Username
    Username
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    Anonymous
    Anonymous
    Username
    Username
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    ANONYMOUS
    Anonymous
    USERNAME
    Username
    USERNAME_AND_PASSWORD
    UsernameAndPassword
    WINDOWS_AZURE_HD_INSIGHT_SERVICE
    WindowsAzureHDInsightService
    "Anonymous"
    Anonymous
    "Username"
    Username
    "UsernameAndPassword"
    UsernameAndPassword
    "WindowsAzureHDInsightService"
    WindowsAzureHDInsightService

    HiveLinkedService, HiveLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.HiveAuthenticationType
    The authentication method used to access the Hive server.
    Host object
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    AllowHostNameCNMismatch object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation object
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    EnableSsl object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath object
    The partial URL corresponding to the Hive server.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password corresponding to the user name that you provided in the Username field
    Port object
    The TCP port that the Hive server uses to listen for client connections.
    ServerType string | Pulumi.AzureNative.DataFactory.HiveServerType
    The type of Hive server.
    ServiceDiscoveryMode object
    true to indicate using the ZooKeeper service, false not.
    ThriftTransportProtocol string | Pulumi.AzureNative.DataFactory.HiveThriftTransportProtocol
    The transport protocol to use in the Thrift layer.
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    UseNativeQuery object
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    UseSystemTrustStore object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    Username object
    The user name that you use to access Hive Server.
    Version string
    Version of the linked service.
    ZooKeeperNameSpace object
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    AuthenticationType string | HiveAuthenticationType
    The authentication method used to access the Hive server.
    Host interface{}
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    AllowHostNameCNMismatch interface{}
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation interface{}
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    EnableSsl interface{}
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath interface{}
    The partial URL corresponding to the Hive server.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the Username field
    Port interface{}
    The TCP port that the Hive server uses to listen for client connections.
    ServerType string | HiveServerType
    The type of Hive server.
    ServiceDiscoveryMode interface{}
    true to indicate using the ZooKeeper service, false not.
    ThriftTransportProtocol string | HiveThriftTransportProtocol
    The transport protocol to use in the Thrift layer.
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    UseNativeQuery interface{}
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    UseSystemTrustStore interface{}
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    Username interface{}
    The user name that you use to access Hive Server.
    Version string
    Version of the linked service.
    ZooKeeperNameSpace interface{}
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType String | HiveAuthenticationType
    The authentication method used to access the Hive server.
    host Object
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch Object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Object
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl Object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Object
    The partial URL corresponding to the Hive server.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the Username field
    port Object
    The TCP port that the Hive server uses to listen for client connections.
    serverType String | HiveServerType
    The type of Hive server.
    serviceDiscoveryMode Object
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol String | HiveThriftTransportProtocol
    The transport protocol to use in the Thrift layer.
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery Object
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore Object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Object
    The user name that you use to access Hive Server.
    version String
    Version of the linked service.
    zooKeeperNameSpace Object
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType string | HiveAuthenticationType
    The authentication method used to access the Hive server.
    host any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    enableServerCertificateValidation any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath any
    The partial URL corresponding to the Hive server.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the Username field
    port any
    The TCP port that the Hive server uses to listen for client connections.
    serverType string | HiveServerType
    The type of Hive server.
    serviceDiscoveryMode any
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol string | HiveThriftTransportProtocol
    The transport protocol to use in the Thrift layer.
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username any
    The user name that you use to access Hive Server.
    version string
    Version of the linked service.
    zooKeeperNameSpace any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authentication_type str | HiveAuthenticationType
    The authentication method used to access the Hive server.
    host Any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allow_host_name_cn_mismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    enable_server_certificate_validation Any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enable_ssl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    http_path Any
    The partial URL corresponding to the Hive server.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the Username field
    port Any
    The TCP port that the Hive server uses to listen for client connections.
    server_type str | HiveServerType
    The type of Hive server.
    service_discovery_mode Any
    true to indicate using the ZooKeeper service, false not.
    thrift_transport_protocol str | HiveThriftTransportProtocol
    The transport protocol to use in the Thrift layer.
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    use_native_query Any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    use_system_trust_store Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Any
    The user name that you use to access Hive Server.
    version str
    Version of the linked service.
    zoo_keeper_name_space Any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType String | "Anonymous" | "Username" | "UsernameAndPassword" | "WindowsAzureHDInsightService"
    The authentication method used to access the Hive server.
    host Any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Any
    The partial URL corresponding to the Hive server.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the Username field
    port Any
    The TCP port that the Hive server uses to listen for client connections.
    serverType String | "HiveServer1" | "HiveServer2" | "HiveThriftServer"
    The type of Hive server.
    serviceDiscoveryMode Any
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol String | "Binary" | "SASL" | "HTTP "
    The transport protocol to use in the Thrift layer.
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery Any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Any
    The user name that you use to access Hive Server.
    version String
    Version of the linked service.
    zooKeeperNameSpace Any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.

    HiveLinkedServiceResponse, HiveLinkedServiceResponseArgs

    AuthenticationType string
    The authentication method used to access the Hive server.
    Host object
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    AllowHostNameCNMismatch object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation object
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    EnableSsl object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath object
    The partial URL corresponding to the Hive server.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password corresponding to the user name that you provided in the Username field
    Port object
    The TCP port that the Hive server uses to listen for client connections.
    ServerType string
    The type of Hive server.
    ServiceDiscoveryMode object
    true to indicate using the ZooKeeper service, false not.
    ThriftTransportProtocol string
    The transport protocol to use in the Thrift layer.
    TrustedCertPath object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    UseNativeQuery object
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    UseSystemTrustStore object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    Username object
    The user name that you use to access Hive Server.
    Version string
    Version of the linked service.
    ZooKeeperNameSpace object
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    AuthenticationType string
    The authentication method used to access the Hive server.
    Host interface{}
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    AllowHostNameCNMismatch interface{}
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EnableServerCertificateValidation interface{}
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    EnableSsl interface{}
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    HttpPath interface{}
    The partial URL corresponding to the Hive server.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the Username field
    Port interface{}
    The TCP port that the Hive server uses to listen for client connections.
    ServerType string
    The type of Hive server.
    ServiceDiscoveryMode interface{}
    true to indicate using the ZooKeeper service, false not.
    ThriftTransportProtocol string
    The transport protocol to use in the Thrift layer.
    TrustedCertPath interface{}
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    UseNativeQuery interface{}
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    UseSystemTrustStore interface{}
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    Username interface{}
    The user name that you use to access Hive Server.
    Version string
    Version of the linked service.
    ZooKeeperNameSpace interface{}
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType String
    The authentication method used to access the Hive server.
    host Object
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch Object
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Object
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl Object
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Object
    The partial URL corresponding to the Hive server.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the Username field
    port Object
    The TCP port that the Hive server uses to listen for client connections.
    serverType String
    The type of Hive server.
    serviceDiscoveryMode Object
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol String
    The transport protocol to use in the Thrift layer.
    trustedCertPath Object
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery Object
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore Object
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Object
    The user name that you use to access Hive Server.
    version String
    Version of the linked service.
    zooKeeperNameSpace Object
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType string
    The authentication method used to access the Hive server.
    host any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations any[]
    List of tags that can be used for describing the linked service.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    enableServerCertificateValidation any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath any
    The partial URL corresponding to the Hive server.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the Username field
    port any
    The TCP port that the Hive server uses to listen for client connections.
    serverType string
    The type of Hive server.
    serviceDiscoveryMode any
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol string
    The transport protocol to use in the Thrift layer.
    trustedCertPath any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username any
    The user name that you use to access Hive Server.
    version string
    Version of the linked service.
    zooKeeperNameSpace any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authentication_type str
    The authentication method used to access the Hive server.
    host Any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allow_host_name_cn_mismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    enable_server_certificate_validation Any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enable_ssl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    http_path Any
    The partial URL corresponding to the Hive server.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the Username field
    port Any
    The TCP port that the Hive server uses to listen for client connections.
    server_type str
    The type of Hive server.
    service_discovery_mode Any
    true to indicate using the ZooKeeper service, false not.
    thrift_transport_protocol str
    The transport protocol to use in the Thrift layer.
    trusted_cert_path Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    use_native_query Any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    use_system_trust_store Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Any
    The user name that you use to access Hive Server.
    version str
    Version of the linked service.
    zoo_keeper_name_space Any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.
    authenticationType String
    The authentication method used to access the Hive server.
    host Any
    IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
    allowHostNameCNMismatch Any
    Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    enableServerCertificateValidation Any
    Specifies whether the connections to the server will validate server certificate, the default value is True. Only used for Version 2.0
    enableSsl Any
    Specifies whether the connections to the server are encrypted using SSL. The default value is false.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    httpPath Any
    The partial URL corresponding to the Hive server.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the Username field
    port Any
    The TCP port that the Hive server uses to listen for client connections.
    serverType String
    The type of Hive server.
    serviceDiscoveryMode Any
    true to indicate using the ZooKeeper service, false not.
    thriftTransportProtocol String
    The transport protocol to use in the Thrift layer.
    trustedCertPath Any
    The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
    useNativeQuery Any
    Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
    useSystemTrustStore Any
    Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
    username Any
    The user name that you use to access Hive Server.
    version String
    Version of the linked service.
    zooKeeperNameSpace Any
    The namespace on ZooKeeper under which Hive Server 2 nodes are added.

    HiveServerType, HiveServerTypeArgs

    HiveServer1
    HiveServer1
    HiveServer2
    HiveServer2
    HiveThriftServer
    HiveThriftServer
    HiveServerTypeHiveServer1
    HiveServer1
    HiveServerTypeHiveServer2
    HiveServer2
    HiveServerTypeHiveThriftServer
    HiveThriftServer
    HiveServer1
    HiveServer1
    HiveServer2
    HiveServer2
    HiveThriftServer
    HiveThriftServer
    HiveServer1
    HiveServer1
    HiveServer2
    HiveServer2
    HiveThriftServer
    HiveThriftServer
    HIVE_SERVER1
    HiveServer1
    HIVE_SERVER2
    HiveServer2
    HIVE_THRIFT_SERVER
    HiveThriftServer
    "HiveServer1"
    HiveServer1
    "HiveServer2"
    HiveServer2
    "HiveThriftServer"
    HiveThriftServer

    HiveThriftTransportProtocol, HiveThriftTransportProtocolArgs

    Binary
    Binary
    SASL
    SASL
    HTTP_
    HTTP
    HiveThriftTransportProtocolBinary
    Binary
    HiveThriftTransportProtocolSASL
    SASL
    HiveThriftTransportProtocol_HTTP_
    HTTP
    Binary
    Binary
    SASL
    SASL
    HTTP_
    HTTP
    Binary
    Binary
    SASL
    SASL
    HTTP_
    HTTP
    BINARY
    Binary
    SASL
    SASL
    HTT_P_
    HTTP
    "Binary"
    Binary
    "SASL"
    SASL
    "HTTP "
    HTTP

    HttpAuthenticationType, HttpAuthenticationTypeArgs

    Basic
    Basic
    Anonymous
    Anonymous
    Digest
    Digest
    Windows
    Windows
    ClientCertificate
    ClientCertificate
    HttpAuthenticationTypeBasic
    Basic
    HttpAuthenticationTypeAnonymous
    Anonymous
    HttpAuthenticationTypeDigest
    Digest
    HttpAuthenticationTypeWindows
    Windows
    HttpAuthenticationTypeClientCertificate
    ClientCertificate
    Basic
    Basic
    Anonymous
    Anonymous
    Digest
    Digest
    Windows
    Windows
    ClientCertificate
    ClientCertificate
    Basic
    Basic
    Anonymous
    Anonymous
    Digest
    Digest
    Windows
    Windows
    ClientCertificate
    ClientCertificate
    BASIC
    Basic
    ANONYMOUS
    Anonymous
    DIGEST
    Digest
    WINDOWS
    Windows
    CLIENT_CERTIFICATE
    ClientCertificate
    "Basic"
    Basic
    "Anonymous"
    Anonymous
    "Digest"
    Digest
    "Windows"
    Windows
    "ClientCertificate"
    ClientCertificate

    HttpLinkedService, HttpLinkedServiceArgs

    Url object
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthHeaders object
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.HttpAuthenticationType
    The authentication type to be used to connect to the HTTP server.
    CertThumbprint object
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EmbeddedCertData object
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    EnableServerCertificateValidation object
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    UserName object
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Url interface{}
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthHeaders interface{}
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    AuthenticationType string | HttpAuthenticationType
    The authentication type to be used to connect to the HTTP server.
    CertThumbprint interface{}
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EmbeddedCertData interface{}
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    EnableServerCertificateValidation interface{}
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    UserName interface{}
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    url Object
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authHeaders Object
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType String | HttpAuthenticationType
    The authentication type to be used to connect to the HTTP server.
    certThumbprint Object
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    embeddedCertData Object
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation Object
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName Object
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    url any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authHeaders any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType string | HttpAuthenticationType
    The authentication type to be used to connect to the HTTP server.
    certThumbprint any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    embeddedCertData any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    url Any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    auth_headers Any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authentication_type str | HttpAuthenticationType
    The authentication type to be used to connect to the HTTP server.
    cert_thumbprint Any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    embedded_cert_data Any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enable_server_certificate_validation Any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    user_name Any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    url Any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authHeaders Any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType String | "Basic" | "Anonymous" | "Digest" | "Windows" | "ClientCertificate"
    The authentication type to be used to connect to the HTTP server.
    certThumbprint Any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    embeddedCertData Any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation Any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName Any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HttpLinkedServiceResponse, HttpLinkedServiceResponseArgs

    Url object
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthHeaders object
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    AuthenticationType string
    The authentication type to be used to connect to the HTTP server.
    CertThumbprint object
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EmbeddedCertData object
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    EnableServerCertificateValidation object
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    UserName object
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    Url interface{}
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthHeaders interface{}
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    AuthenticationType string
    The authentication type to be used to connect to the HTTP server.
    CertThumbprint interface{}
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Description string
    Linked service description.
    EmbeddedCertData interface{}
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    EnableServerCertificateValidation interface{}
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    UserName interface{}
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    Version string
    Version of the linked service.
    url Object
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authHeaders Object
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType String
    The authentication type to be used to connect to the HTTP server.
    certThumbprint Object
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description String
    Linked service description.
    embeddedCertData Object
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation Object
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName Object
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.
    url any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authHeaders any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType string
    The authentication type to be used to connect to the HTTP server.
    certThumbprint any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description string
    Linked service description.
    embeddedCertData any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version string
    Version of the linked service.
    url Any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    auth_headers Any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authentication_type str
    The authentication type to be used to connect to the HTTP server.
    cert_thumbprint Any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    description str
    Linked service description.
    embedded_cert_data Any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enable_server_certificate_validation Any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    user_name Any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version str
    Version of the linked service.
    url Any
    The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authHeaders Any
    The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type).
    authenticationType String
    The authentication type to be used to connect to the HTTP server.
    certThumbprint Any
    Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    embeddedCertData Any
    Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
    enableServerCertificateValidation Any
    If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
    userName Any
    User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
    version String
    Version of the linked service.

    HubspotLinkedService, HubspotLinkedServiceArgs

    ClientId object
    The client ID associated with your Hubspot application.
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access token obtained when initially authenticating your OAuth integration.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The client secret associated with your Hubspot application.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The refresh token obtained when initially authenticating your OAuth integration.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    ClientId interface{}
    The client ID associated with your Hubspot application.
    AccessToken AzureKeyVaultSecretReference | SecureString
    The access token obtained when initially authenticating your OAuth integration.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your Hubspot application.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    RefreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained when initially authenticating your OAuth integration.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    UseHostVerification interface{}
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    Version string
    Version of the linked service.
    clientId Object
    The client ID associated with your Hubspot application.
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token obtained when initially authenticating your OAuth integration.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your Hubspot application.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained when initially authenticating your OAuth integration.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Object
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.
    clientId any
    The client ID associated with your Hubspot application.
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token obtained when initially authenticating your OAuth integration.
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your Hubspot application.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    refreshToken AzureKeyVaultSecretReference | SecureString
    The refresh token obtained when initially authenticating your OAuth integration.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version string
    Version of the linked service.
    client_id Any
    The client ID associated with your Hubspot application.
    access_token AzureKeyVaultSecretReference | SecureString
    The access token obtained when initially authenticating your OAuth integration.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_secret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your Hubspot application.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    description str
    Linked service description.
    encrypted_credential str
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    refresh_token AzureKeyVaultSecretReference | SecureString
    The refresh token obtained when initially authenticating your OAuth integration.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    use_host_verification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version str
    Version of the linked service.
    clientId Any
    The client ID associated with your Hubspot application.
    accessToken Property Map | Property Map
    The access token obtained when initially authenticating your OAuth integration.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientSecret Property Map | Property Map
    The client secret associated with your Hubspot application.
    connectVia Property Map
    The integration runtime reference.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    parameters Map<Property Map>
    Parameters for linked service.
    refreshToken Property Map | Property Map
    The refresh token obtained when initially authenticating your OAuth integration.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    useHostVerification Any
    Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
    version String
    Version of the linked service.

    HubspotLinkedServiceResponse, HubspotLinkedServiceResponseArgs

    ClientId object
    The client ID associated with your Hubspot application.
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access token obtained when initially authenticating your OAuth integration.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ClientSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The client secret associated with your Hubspot application.
    ConnectVia