1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. LinkedService
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 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 v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Linked service resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 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 = 
                {
                    { "type", "SecureString" },
                    { "value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>" },
                },
                Type = "AzureStorage",
            },
            ResourceGroupName = "exampleResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
    	"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.AzureStorageLinkedService{
    				ConnectionString: map[string]interface{}{
    					"type":  "SecureString",
    					"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
    				},
    				Type: "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 pulumi
    import pulumi_azure_native as azure_native
    
    linked_service = azure_native.datafactory.LinkedService("linkedService",
        factory_name="exampleFactoryName",
        linked_service_name="exampleLinkedService",
        properties=azure_native.datafactory.AzureStorageLinkedServiceArgs(
            connection_string={
                "type": "SecureString",
                "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            type="AzureStorage",
        ),
        resource_group_name="exampleResourceGroup")
    
    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",
    });
    
    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 = 
                {
                    { "type", "SecureString" },
                    { "value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>" },
                },
                Description = "Example description",
                Type = "AzureStorage",
            },
            ResourceGroupName = "exampleResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
    	"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.AzureStorageLinkedService{
    				ConnectionString: map[string]interface{}{
    					"type":  "SecureString",
    					"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
    				},
    				Description: "Example description",
    				Type:        "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 pulumi
    import pulumi_azure_native as azure_native
    
    linked_service = azure_native.datafactory.LinkedService("linkedService",
        factory_name="exampleFactoryName",
        linked_service_name="exampleLinkedService",
        properties=azure_native.datafactory.AzureStorageLinkedServiceArgs(
            connection_string={
                "type": "SecureString",
                "value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
            },
            description="Example description",
            type="AzureStorage",
        ),
        resource_group_name="exampleResourceGroup")
    
    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",
    });
    
    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.

    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",
            Description = "string",
            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",
            },
            Parameters = 
            {
                { "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "string",
                    DefaultValue = "any",
                } },
            },
            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",
        },
        ResourceGroupName = "string",
        LinkedServiceName = "string",
    });
    
    example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
    FactoryName: pulumi.String("string"),
    Properties: datafactory.AmazonMWSLinkedService{
    Endpoint: "any",
    Type: "AmazonMWS",
    SellerID: "any",
    AccessKeyId: "any",
    MarketplaceID: "any",
    Description: "string",
    EncryptedCredential: "string",
    MwsAuthToken: datafactory.AzureKeyVaultSecretReference{
    SecretName: "any",
    Store: datafactory.LinkedServiceReference{
    ReferenceName: "string",
    Type: "string",
    Parameters: map[string]interface{}{
    "string": "any",
    },
    },
    Type: "AzureKeyVaultSecret",
    SecretVersion: "any",
    },
    Parameters: interface{}{
    String: datafactory.ParameterSpecification{
    Type: "string",
    DefaultValue: "any",
    },
    },
    SecretKey: datafactory.AzureKeyVaultSecretReference{
    SecretName: "any",
    Store: datafactory.LinkedServiceReference{
    ReferenceName: "string",
    Type: "string",
    Parameters: map[string]interface{}{
    "string": "any",
    },
    },
    Type: "AzureKeyVaultSecret",
    SecretVersion: "any",
    },
    ConnectVia: datafactory.IntegrationRuntimeReference{
    ReferenceName: "string",
    Type: "string",
    Parameters: map[string]interface{}{
    "string": "any",
    },
    },
    Annotations: []string{
    "any",
    },
    UseEncryptedEndpoints: "any",
    UseHostVerification: "any",
    UsePeerVerification: "any",
    },
    ResourceGroupName: pulumi.String("string"),
    LinkedServiceName: pulumi.String("string"),
    })
    
    var linkedServiceResource = new LinkedService("linkedServiceResource", LinkedServiceArgs.builder()        
        .factoryName("string")
        .properties(AmazonMWSLinkedServiceArgs.builder()
            .endpoint("any")
            .type("AmazonMWS")
            .sellerID("any")
            .accessKeyId("any")
            .marketplaceID("any")
            .description("string")
            .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())
            .parameters(Map.of("string", Map.ofEntries(
                Map.entry("type", "string"),
                Map.entry("defaultValue", "any")
            )))
            .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")
            .build())
        .resourceGroupName("string")
        .linkedServiceName("string")
        .build());
    
    linked_service_resource = azure_native.datafactory.LinkedService("linkedServiceResource",
        factory_name="string",
        properties=azure_native.datafactory.AmazonMWSLinkedServiceArgs(
            endpoint="any",
            type="AmazonMWS",
            seller_id="any",
            access_key_id="any",
            marketplace_id="any",
            description="string",
            encrypted_credential="string",
            mws_auth_token=azure_native.datafactory.AzureKeyVaultSecretReferenceArgs(
                secret_name="any",
                store=azure_native.datafactory.LinkedServiceReferenceArgs(
                    reference_name="string",
                    type="string",
                    parameters={
                        "string": "any",
                    },
                ),
                type="AzureKeyVaultSecret",
                secret_version="any",
            ),
            parameters={
                "string": azure_native.datafactory.ParameterSpecificationArgs(
                    type="string",
                    default_value="any",
                ),
            },
            secret_key=azure_native.datafactory.AzureKeyVaultSecretReferenceArgs(
                secret_name="any",
                store=azure_native.datafactory.LinkedServiceReferenceArgs(
                    reference_name="string",
                    type="string",
                    parameters={
                        "string": "any",
                    },
                ),
                type="AzureKeyVaultSecret",
                secret_version="any",
            ),
            connect_via=azure_native.datafactory.IntegrationRuntimeReferenceArgs(
                reference_name="string",
                type="string",
                parameters={
                    "string": "any",
                },
            ),
            annotations=["any"],
            use_encrypted_endpoints="any",
            use_host_verification="any",
            use_peer_verification="any",
        ),
        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",
            description: "string",
            encryptedCredential: "string",
            mwsAuthToken: {
                secretName: "any",
                store: {
                    referenceName: "string",
                    type: "string",
                    parameters: {
                        string: "any",
                    },
                },
                type: "AzureKeyVaultSecret",
                secretVersion: "any",
            },
            parameters: {
                string: {
                    type: "string",
                    defaultValue: "any",
                },
            },
            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",
        },
        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
        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

    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:

    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.
    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.
    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.
    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.
    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.
    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

    Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    AmazonRdsForOracleLinkedService, AmazonRdsForOracleLinkedServiceArgs

    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 | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The Azure key vault secret reference of password in connection string.
    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 | SecureString
    The Azure key vault secret reference of password in connection string.
    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 | SecureString
    The Azure key vault secret reference of password in connection string.
    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 | SecureString
    The Azure key vault secret reference of password in connection string.
    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 | SecureString
    The Azure key vault secret reference of password in connection string.
    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 | Property Map
    The Azure key vault secret reference of password in connection string.

    AmazonRdsForOracleLinkedServiceResponse, AmazonRdsForOracleLinkedServiceResponseArgs

    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 | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    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 | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    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 | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    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 | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    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 | SecureStringResponse
    The Azure key vault secret reference of password in connection string.
    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 | Property Map
    The Azure key vault secret reference of password in connection string.

    AmazonRdsForSqlServerLinkedService, AmazonRdsForSqlServerLinkedServiceArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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 on-premises Windows authentication password.
    UserName object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    UserName interface{}
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName Object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    user_name Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).

    AmazonRdsForSqlServerLinkedServiceResponse, AmazonRdsForSqlServerLinkedServiceResponseArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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 on-premises Windows authentication password.
    UserName object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    UserName interface{}
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName Object
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    user_name Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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 on-premises Windows authentication password.
    userName Any
    The on-premises Windows authentication user name. Type: string (or Expression with resultType string).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).

    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).
    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.
    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.
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    AzurePostgreSqlLinkedService, AzurePostgreSqlLinkedServiceArgs

    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password 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{}
    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.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password 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
    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.
    password Property Map
    The Azure key vault secret reference of password in connection string.

    AzurePostgreSqlLinkedServiceResponse, AzurePostgreSqlLinkedServiceResponseArgs

    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password 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{}
    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.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password 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
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password 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
    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.
    password Property Map
    The Azure key vault secret reference of password in connection string.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    AzureSqlDWLinkedService, AzureSqlDWLinkedServiceArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    AzureSqlDWLinkedServiceResponse, AzureSqlDWLinkedServiceResponseArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, 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.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    AzureSqlDatabaseLinkedService, AzureSqlDatabaseLinkedServiceArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    AzureSqlDatabaseLinkedServiceResponse, AzureSqlDatabaseLinkedServiceResponseArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    AzureSqlMILinkedService, AzureSqlMILinkedServiceArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedProperties
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    AzureSqlMILinkedServiceResponse, AzureSqlMILinkedServiceResponseArgs

    ConnectionString object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    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.
    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.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    ConnectionString interface{}
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    AlwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Object
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connection_string Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    always_encrypted_settings SqlAlwaysEncryptedPropertiesResponse
    Sql always encrypted properties.
    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.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection 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).
    connectionString Any
    The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    alwaysEncryptedSettings Property Map
    Sql always encrypted properties.
    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.
    password Property Map
    The Azure key vault secret reference of password in connection 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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    Description 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.
    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.
    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.
    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.
    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.
    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.

    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.
    Description 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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).

    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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. 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.
    Description string
    Linked service description.
    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).
    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. 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.
    Description string
    Linked service description.
    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).
    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. 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.
    description String
    Linked service description.
    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).
    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. 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.
    description string
    Linked service description.
    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).
    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. 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.
    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_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).
    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. 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.
    description String
    Linked service description.
    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).

    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. 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.
    Description string
    Linked service description.
    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).
    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. 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.
    Description string
    Linked service description.
    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).
    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. 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.
    description String
    Linked service description.
    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).
    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. 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.
    description string
    Linked service description.
    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).
    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. 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.
    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_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).
    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. 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.
    description String
    Linked service description.
    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).

    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).

    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).
    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. 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.
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    GreenplumLinkedService, GreenplumLinkedServiceArgs

    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.
    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.
    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.
    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.
    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.
    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.

    GreenplumLinkedServiceResponse, GreenplumLinkedServiceResponseArgs

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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.
    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.
    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.
    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.
    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.
    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.

    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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 object
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 interface{}
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Object
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 object
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 interface{}
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Object
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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 Any
    Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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_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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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_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.
    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.
    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.
    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).
    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).
    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).
    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).
    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).
    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).

    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).
    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).
    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).
    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).
    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).
    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).

    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.
    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.
    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.
    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.
    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.
    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.

    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 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.
    RefreshToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    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.
    ClientId interface{}
    The client ID associated with your Hubspot application.
    AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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 AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your Hubspot application.
    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.
    RefreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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.
    clientId Object
    The client ID associated with your Hubspot application.
    accessToken AzureKeyVaultSecretReferenceResponse | 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 AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your Hubspot application.
    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.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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.
    clientId any
    The client ID associated with your Hubspot application.
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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 AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your Hubspot application.
    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.
    refreshToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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.
    client_id Any
    The client ID associated with your Hubspot application.
    access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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 AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your Hubspot application.
    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.
    refresh_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    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.
    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.

    ImpalaAuthenticationType, ImpalaAuthenticationTypeArgs

    Anonymous
    Anonymous
    SASLUsername
    SASLUsername
    UsernameAndPassword
    UsernameAndPassword
    ImpalaAuthenticationTypeAnonymous
    Anonymous
    ImpalaAuthenticationTypeSASLUsername
    SASLUsername
    ImpalaAuthenticationTypeUsernameAndPassword
    UsernameAndPassword
    Anonymous
    Anonymous
    SASLUsername
    SASLUsername
    UsernameAndPassword
    UsernameAndPassword
    Anonymous
    Anonymous
    SASLUsername
    SASLUsername
    UsernameAndPassword
    UsernameAndPassword
    ANONYMOUS
    Anonymous
    SASLUSERNAME
    SASLUsername
    USERNAME_AND_PASSWORD
    UsernameAndPassword
    "Anonymous"
    Anonymous
    "SASLUsername"
    SASLUsername
    "UsernameAndPassword"
    UsernameAndPassword

    ImpalaLinkedService, ImpalaLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.ImpalaAuthenticationType
    The authentication type to use.
    Host object
    The IP address or host name of the Impala 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.
    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 when using UsernameAndPassword.
    Port object
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    AuthenticationType string | ImpalaAuthenticationType
    The authentication type to use.
    Host interface{}
    The IP address or host name of the Impala 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.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name when using UsernameAndPassword.
    Port interface{}
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType String | ImpalaAuthenticationType
    The authentication type to use.
    host Object
    The IP address or host name of the Impala 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.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name when using UsernameAndPassword.
    port Object
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType string | ImpalaAuthenticationType
    The authentication type to use.
    host any
    The IP address or host name of the Impala 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.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name when using UsernameAndPassword.
    port any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authentication_type str | ImpalaAuthenticationType
    The authentication type to use.
    host Any
    The IP address or host name of the Impala 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.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name when using UsernameAndPassword.
    port Any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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_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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType String | "Anonymous" | "SASLUsername" | "UsernameAndPassword"
    The authentication type to use.
    host Any
    The IP address or host name of the Impala 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.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name when using UsernameAndPassword.
    port Any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.

    ImpalaLinkedServiceResponse, ImpalaLinkedServiceResponseArgs

    AuthenticationType string
    The authentication type to use.
    Host object
    The IP address or host name of the Impala 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.
    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 when using UsernameAndPassword.
    Port object
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    AuthenticationType string
    The authentication type to use.
    Host interface{}
    The IP address or host name of the Impala 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.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name when using UsernameAndPassword.
    Port interface{}
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType String
    The authentication type to use.
    host Object
    The IP address or host name of the Impala 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.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name when using UsernameAndPassword.
    port Object
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType string
    The authentication type to use.
    host any
    The IP address or host name of the Impala 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.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name when using UsernameAndPassword.
    port any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authentication_type str
    The authentication type to use.
    host Any
    The IP address or host name of the Impala 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.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name when using UsernameAndPassword.
    port Any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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_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 used to access the Impala server. The default value is anonymous when using SASLUsername.
    authenticationType String
    The authentication type to use.
    host Any
    The IP address or host name of the Impala 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.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map | Property Map
    The password corresponding to the user name when using UsernameAndPassword.
    port Any
    The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
    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.
    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 used to access the Impala server. The default value is anonymous when using SASLUsername.

    InformixLinkedService, InformixLinkedServiceArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    InformixLinkedServiceResponse, InformixLinkedServiceResponseArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    IntegrationRuntimeReference, IntegrationRuntimeReferenceArgs

    ReferenceName string
    Reference integration runtime name.
    Type string
    Type of integration runtime.
    Parameters Dictionary<string, object>
    Arguments for integration runtime.
    ReferenceName string
    Reference integration runtime name.
    Type string
    Type of integration runtime.
    Parameters map[string]interface{}
    Arguments for integration runtime.
    referenceName String
    Reference integration runtime name.
    type String
    Type of integration runtime.
    parameters Map<String,Object>
    Arguments for integration runtime.
    referenceName string
    Reference integration runtime name.
    type string
    Type of integration runtime.
    parameters {[key: string]: any}
    Arguments for integration runtime.
    reference_name str
    Reference integration runtime name.
    type str
    Type of integration runtime.
    parameters Mapping[str, Any]
    Arguments for integration runtime.
    referenceName String
    Reference integration runtime name.
    type String
    Type of integration runtime.
    parameters Map<Any>
    Arguments for integration runtime.

    IntegrationRuntimeReferenceResponse, IntegrationRuntimeReferenceResponseArgs

    ReferenceName string
    Reference integration runtime name.
    Type string
    Type of integration runtime.
    Parameters Dictionary<string, object>
    Arguments for integration runtime.
    ReferenceName string
    Reference integration runtime name.
    Type string
    Type of integration runtime.
    Parameters map[string]interface{}
    Arguments for integration runtime.
    referenceName String
    Reference integration runtime name.
    type String
    Type of integration runtime.
    parameters Map<String,Object>
    Arguments for integration runtime.
    referenceName string
    Reference integration runtime name.
    type string
    Type of integration runtime.
    parameters {[key: string]: any}
    Arguments for integration runtime.
    reference_name str
    Reference integration runtime name.
    type str
    Type of integration runtime.
    parameters Mapping[str, Any]
    Arguments for integration runtime.
    referenceName String
    Reference integration runtime name.
    type String
    Type of integration runtime.
    parameters Map<Any>
    Arguments for integration runtime.

    JiraLinkedService, JiraLinkedServiceArgs

    Host object
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    Username object
    The user name that you use to access Jira 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.
    Description 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.
    Port object
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    Host interface{}
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    Username interface{}
    The user name that you use to access Jira 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.
    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.
    Port interface{}
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Object
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Object
    The user name that you use to access Jira 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.
    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.
    port Object
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username any
    The user name that you use to access Jira 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.
    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.
    port any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Any
    The user name that you use to access Jira 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.
    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.
    port Any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Any
    The user name that you use to access Jira 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.
    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.
    port Any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.

    JiraLinkedServiceResponse, JiraLinkedServiceResponseArgs

    Host object
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    Username object
    The user name that you use to access Jira 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.
    Description 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.
    Port object
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    Host interface{}
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    Username interface{}
    The user name that you use to access Jira 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.
    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.
    Port interface{}
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Object
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Object
    The user name that you use to access Jira 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.
    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.
    port Object
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username any
    The user name that you use to access Jira 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.
    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.
    port any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Any
    The user name that you use to access Jira 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.
    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.
    port Any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.
    host Any
    The IP address or host name of the Jira service. (e.g. jira.example.com)
    username Any
    The user name that you use to access Jira 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.
    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.
    port Any
    The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
    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.

    LakeHouseLinkedService, LakeHouseLinkedServiceArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ArtifactId object
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. 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 Microsoft Fabric LakeHouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    WorkspaceId object
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ArtifactId interface{}
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    WorkspaceId interface{}
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    artifactId Object
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId Object
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    artifactId any
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    artifact_id Any
    The ID of Microsoft Fabric LakeHouse artifact. 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_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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspace_id Any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    artifactId Any
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId Any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

    LakeHouseLinkedServiceResponse, LakeHouseLinkedServiceResponseArgs

    Annotations List<object>
    List of tags that can be used for describing the linked service.
    ArtifactId object
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. 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 Microsoft Fabric LakeHouse.
    Tenant object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    WorkspaceId object
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ArtifactId interface{}
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    Tenant interface{}
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    WorkspaceId interface{}
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    artifactId Object
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Object
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId Object
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations any[]
    List of tags that can be used for describing the linked service.
    artifactId any
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    artifact_id Any
    The ID of Microsoft Fabric LakeHouse artifact. 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_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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspace_id Any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    artifactId Any
    The ID of Microsoft Fabric LakeHouse artifact. 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.
    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 Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    The Key of the application used to authenticate against Microsoft Fabric LakeHouse.
    tenant Any
    The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
    workspaceId Any
    The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string).

    LinkedServiceReference, LinkedServiceReferenceArgs

    ReferenceName string
    Reference LinkedService name.
    Type string | Pulumi.AzureNative.DataFactory.Type
    Linked service reference type.
    Parameters Dictionary<string, object>
    Arguments for LinkedService.
    ReferenceName string
    Reference LinkedService name.
    Type string | Type
    Linked service reference type.
    Parameters map[string]interface{}
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String | Type
    Linked service reference type.
    parameters Map<String,Object>
    Arguments for LinkedService.
    referenceName string
    Reference LinkedService name.
    type string | Type
    Linked service reference type.
    parameters {[key: string]: any}
    Arguments for LinkedService.
    reference_name str
    Reference LinkedService name.
    type str | Type
    Linked service reference type.
    parameters Mapping[str, Any]
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String | "LinkedServiceReference"
    Linked service reference type.
    parameters Map<Any>
    Arguments for LinkedService.

    LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs

    ReferenceName string
    Reference LinkedService name.
    Type string
    Linked service reference type.
    Parameters Dictionary<string, object>
    Arguments for LinkedService.
    ReferenceName string
    Reference LinkedService name.
    Type string
    Linked service reference type.
    Parameters map[string]interface{}
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String
    Linked service reference type.
    parameters Map<String,Object>
    Arguments for LinkedService.
    referenceName string
    Reference LinkedService name.
    type string
    Linked service reference type.
    parameters {[key: string]: any}
    Arguments for LinkedService.
    reference_name str
    Reference LinkedService name.
    type str
    Linked service reference type.
    parameters Mapping[str, Any]
    Arguments for LinkedService.
    referenceName String
    Reference LinkedService name.
    type String
    Linked service reference type.
    parameters Map<Any>
    Arguments for LinkedService.

    MagentoLinkedService, MagentoLinkedServiceArgs

    Host object
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access token from Magento.
    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.
    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.
    Host interface{}
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    AccessToken AzureKeyVaultSecretReference | SecureString
    The access token from Magento.
    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.
    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.
    host Object
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token from Magento.
    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.
    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.
    host any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token from Magento.
    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.
    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.
    host Any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    access_token AzureKeyVaultSecretReference | SecureString
    The access token from Magento.
    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.
    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.
    host Any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken Property Map | Property Map
    The access token from Magento.
    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.
    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.

    MagentoLinkedServiceResponse, MagentoLinkedServiceResponseArgs

    Host object
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access token from Magento.
    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.
    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.
    Host interface{}
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token from Magento.
    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.
    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.
    host Object
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token from Magento.
    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.
    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.
    host any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token from Magento.
    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.
    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.
    host Any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token from Magento.
    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.
    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.
    host Any
    The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
    accessToken Property Map | Property Map
    The access token from Magento.
    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.
    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.

    MariaDBLinkedService, MariaDBLinkedServiceArgs

    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.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion object
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server object
    Server name for connection. Type: string.
    Username object
    Username for authentication. Type: string.
    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.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion interface{}
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server interface{}
    Server name for connection. Type: string.
    Username interface{}
    Username for authentication. Type: string.
    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.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Object
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Object
    Server name for connection. Type: string.
    username Object
    Username for authentication. Type: string.
    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.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    driverVersion any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server any
    Server name for connection. Type: string.
    username any
    Username for authentication. Type: 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
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    driver_version Any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    username Any
    Username for authentication. Type: 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
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    username Any
    Username for authentication. Type: string.

    MariaDBLinkedServiceResponse, MariaDBLinkedServiceResponseArgs

    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.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion object
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server object
    Server name for connection. Type: string.
    Username object
    Username for authentication. Type: string.
    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.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion interface{}
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server interface{}
    Server name for connection. Type: string.
    Username interface{}
    Username for authentication. Type: string.
    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.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Object
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Object
    Server name for connection. Type: string.
    username Object
    Username for authentication. Type: string.
    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.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    driverVersion any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server any
    Server name for connection. Type: string.
    username any
    Username for authentication. Type: 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
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    driver_version Any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    username Any
    Username for authentication. Type: 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
    An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Any
    The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    username Any
    Username for authentication. Type: string.

    MarketoLinkedService, MarketoLinkedServiceArgs

    ClientId object
    The client Id of your Marketo service.
    Endpoint object
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    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 of your Marketo 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.
    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.
    ClientId interface{}
    The client Id of your Marketo service.
    Endpoint interface{}
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of your Marketo 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.
    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.
    clientId Object
    The client Id of your Marketo service.
    endpoint Object
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of your Marketo 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.
    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.
    clientId any
    The client Id of your Marketo service.
    endpoint any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret of your Marketo 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.
    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.
    client_id Any
    The client Id of your Marketo service.
    endpoint Any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_secret AzureKeyVaultSecretReference | SecureString
    The client secret of your Marketo 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.
    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.
    clientId Any
    The client Id of your Marketo service.
    endpoint Any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientSecret Property Map | Property Map
    The client secret of your Marketo 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.
    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.

    MarketoLinkedServiceResponse, MarketoLinkedServiceResponseArgs

    ClientId object
    The client Id of your Marketo service.
    Endpoint object
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    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 of your Marketo 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.
    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.
    ClientId interface{}
    The client Id of your Marketo service.
    Endpoint interface{}
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of your Marketo 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.
    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.
    clientId Object
    The client Id of your Marketo service.
    endpoint Object
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of your Marketo 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.
    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.
    clientId any
    The client Id of your Marketo service.
    endpoint any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of your Marketo 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.
    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.
    client_id Any
    The client Id of your Marketo service.
    endpoint Any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret of your Marketo 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.
    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.
    clientId Any
    The client Id of your Marketo service.
    endpoint Any
    The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    clientSecret Property Map | Property Map
    The client secret of your Marketo 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.
    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.

    MicrosoftAccessLinkedService, MicrosoftAccessLinkedServiceArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    MicrosoftAccessLinkedServiceResponse, MicrosoftAccessLinkedServiceResponseArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    MongoDbAtlasLinkedService, MongoDbAtlasLinkedServiceArgs

    ConnectionString object
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the MongoDB Atlas 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.
    DriverVersion object
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ConnectionString interface{}
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the MongoDB Atlas 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.
    DriverVersion interface{}
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    connectionString Object
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the MongoDB Atlas 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.
    driverVersion Object
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    connectionString any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the MongoDB Atlas 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.
    driverVersion any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    connection_string Any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB Atlas 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.
    driver_version Any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    connectionString Any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB Atlas 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.
    driverVersion Any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.

    MongoDbAtlasLinkedServiceResponse, MongoDbAtlasLinkedServiceResponseArgs

    ConnectionString object
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the MongoDB Atlas 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.
    DriverVersion object
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ConnectionString interface{}
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the MongoDB Atlas 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.
    DriverVersion interface{}
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    connectionString Object
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the MongoDB Atlas 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.
    driverVersion Object
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    connectionString any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the MongoDB Atlas 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.
    driverVersion any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    connection_string Any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB Atlas 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.
    driver_version Any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    connectionString Any
    The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB Atlas 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.
    driverVersion Any
    The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string).
    parameters Map<Property Map>
    Parameters for linked service.

    MongoDbAuthenticationType, MongoDbAuthenticationTypeArgs

    Basic
    Basic
    Anonymous
    Anonymous
    MongoDbAuthenticationTypeBasic
    Basic
    MongoDbAuthenticationTypeAnonymous
    Anonymous
    Basic
    Basic
    Anonymous
    Anonymous
    Basic
    Basic
    Anonymous
    Anonymous
    BASIC
    Basic
    ANONYMOUS
    Anonymous
    "Basic"
    Basic
    "Anonymous"
    Anonymous

    MongoDbLinkedService, MongoDbLinkedServiceArgs

    DatabaseName object
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    Server object
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthSource object
    Database to verify the username and password. Type: string (or Expression with resultType string).
    AuthenticationType string | Pulumi.AzureNative.DataFactory.MongoDbAuthenticationType
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    Port object
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    Username object
    Username for authentication. Type: string (or Expression with resultType string).
    DatabaseName interface{}
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    Server interface{}
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthSource interface{}
    Database to verify the username and password. Type: string (or Expression with resultType string).
    AuthenticationType string | MongoDbAuthenticationType
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    Port interface{}
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    Username interface{}
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName Object
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Object
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authSource Object
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType String | MongoDbAuthenticationType
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Object
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Object
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authSource any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType string | MongoDbAuthenticationType
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username any
    Username for authentication. Type: string (or Expression with resultType string).
    database_name Any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    auth_source Any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authentication_type str | MongoDbAuthenticationType
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName Any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authSource Any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType String | "Basic" | "Anonymous"
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Any
    Username for authentication. Type: string (or Expression with resultType string).

    MongoDbLinkedServiceResponse, MongoDbLinkedServiceResponseArgs

    DatabaseName object
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    Server object
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    AllowSelfSignedServerCert object
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    AuthSource object
    Database to verify the username and password. Type: string (or Expression with resultType string).
    AuthenticationType string
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    Port object
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    Username object
    Username for authentication. Type: string (or Expression with resultType string).
    DatabaseName interface{}
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    Server interface{}
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    AllowSelfSignedServerCert interface{}
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    AuthSource interface{}
    Database to verify the username and password. Type: string (or Expression with resultType string).
    AuthenticationType string
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    Port interface{}
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    Username interface{}
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName Object
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Object
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert Object
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    authSource Object
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType String
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Object
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Object
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations any[]
    List of tags that can be used for describing the linked service.
    authSource any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType string
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username any
    Username for authentication. Type: string (or Expression with resultType string).
    database_name Any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allow_self_signed_server_cert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    auth_source Any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authentication_type str
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Any
    Username for authentication. Type: string (or Expression with resultType string).
    databaseName Any
    The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
    server Any
    The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
    allowSelfSignedServerCert Any
    Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    authSource Any
    Database to verify the username and password. Type: string (or Expression with resultType string).
    authenticationType String
    The authentication type to be used to connect to the MongoDB database.
    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. 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 authentication.
    port Any
    The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
    username Any
    Username for authentication. Type: string (or Expression with resultType string).

    MongoDbV2LinkedService, MongoDbV2LinkedServiceArgs

    ConnectionString object
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the MongoDB 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.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    ConnectionString interface{}
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the MongoDB 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.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    connectionString Object
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the MongoDB 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.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    connectionString any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the MongoDB 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.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    connection_string Any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB 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.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    connectionString Any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB 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.
    parameters Map<Property Map>
    Parameters for linked service.

    MongoDbV2LinkedServiceResponse, MongoDbV2LinkedServiceResponseArgs

    ConnectionString object
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    The name of the MongoDB 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.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    ConnectionString interface{}
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    The name of the MongoDB 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.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    connectionString Object
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    The name of the MongoDB 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.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    connectionString any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    The name of the MongoDB 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.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    connection_string Any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB 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.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    connectionString Any
    The MongoDB connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    The name of the MongoDB 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.
    parameters Map<Property Map>
    Parameters for linked service.

    MySqlLinkedService, MySqlLinkedServiceArgs

    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. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion object
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server object
    Server name for connection. Type: string.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    UseSystemTrustStore object
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    Username object
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion interface{}
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server interface{}
    Server name for connection. Type: string.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    UseSystemTrustStore interface{}
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    Username interface{}
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Object
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Object
    Server name for connection. Type: string.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore Object
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Object
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    driverVersion any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server any
    Server name for connection. Type: string.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username any
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    driver_version Any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    use_system_trust_store Any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Any
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore Any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Any
    Username for authentication. Type: string.

    MySqlLinkedServiceResponse, MySqlLinkedServiceResponseArgs

    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. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database object
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion object
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server object
    Server name for connection. Type: string.
    SslMode object
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    UseSystemTrustStore object
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    Username object
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    Database interface{}
    Database name for connection. Type: string.
    Description string
    Linked service description.
    DriverVersion interface{}
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    Server interface{}
    Server name for connection. Type: string.
    SslMode interface{}
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    UseSystemTrustStore interface{}
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    Username interface{}
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Object
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Object
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Object
    Server name for connection. Type: string.
    sslMode Object
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore Object
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Object
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database any
    Database name for connection. Type: string.
    description string
    Linked service description.
    driverVersion any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server any
    Server name for connection. Type: string.
    sslMode any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username any
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description str
    Linked service description.
    driver_version Any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    ssl_mode Any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    use_system_trust_store Any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Any
    Username for authentication. Type: 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. Type: string, SecureString or AzureKeyVaultSecretReference.
    database Any
    Database name for connection. Type: string.
    description String
    Linked service description.
    driverVersion Any
    The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection 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.
    server Any
    Server name for connection. Type: string.
    sslMode Any
    SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.
    useSystemTrustStore Any
    Use system trust store for connection. Type: integer. 0: enable, 1: disable.
    username Any
    Username for authentication. Type: string.

    NetezzaLinkedService, NetezzaLinkedServiceArgs

    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.
    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.
    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.
    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.
    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.
    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.

    NetezzaLinkedServiceResponse, NetezzaLinkedServiceResponseArgs

    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.
    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.
    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.
    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.
    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.
    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.

    ODataAadServicePrincipalCredentialType, ODataAadServicePrincipalCredentialTypeArgs

    ServicePrincipalKey
    ServicePrincipalKey
    ServicePrincipalCert
    ServicePrincipalCert
    ODataAadServicePrincipalCredentialTypeServicePrincipalKey
    ServicePrincipalKey
    ODataAadServicePrincipalCredentialTypeServicePrincipalCert
    ServicePrincipalCert
    ServicePrincipalKey
    ServicePrincipalKey
    ServicePrincipalCert
    ServicePrincipalCert
    ServicePrincipalKey
    ServicePrincipalKey
    ServicePrincipalCert
    ServicePrincipalCert
    SERVICE_PRINCIPAL_KEY
    ServicePrincipalKey
    SERVICE_PRINCIPAL_CERT
    ServicePrincipalCert
    "ServicePrincipalKey"
    ServicePrincipalKey
    "ServicePrincipalCert"
    ServicePrincipalCert

    ODataAuthenticationType, ODataAuthenticationTypeArgs

    Basic
    Basic
    Anonymous
    Anonymous
    Windows
    Windows
    AadServicePrincipal
    AadServicePrincipal
    ManagedServiceIdentity
    ManagedServiceIdentity
    ODataAuthenticationTypeBasic
    Basic
    ODataAuthenticationTypeAnonymous
    Anonymous
    ODataAuthenticationTypeWindows
    Windows
    ODataAuthenticationTypeAadServicePrincipal
    AadServicePrincipal
    ODataAuthenticationTypeManagedServiceIdentity
    ManagedServiceIdentity
    Basic
    Basic
    Anonymous
    Anonymous
    Windows
    Windows
    AadServicePrincipal
    AadServicePrincipal
    ManagedServiceIdentity
    ManagedServiceIdentity
    Basic
    Basic
    Anonymous
    Anonymous
    Windows
    Windows
    AadServicePrincipal
    AadServicePrincipal
    ManagedServiceIdentity
    ManagedServiceIdentity
    BASIC
    Basic
    ANONYMOUS
    Anonymous
    WINDOWS
    Windows
    AAD_SERVICE_PRINCIPAL
    AadServicePrincipal
    MANAGED_SERVICE_IDENTITY
    ManagedServiceIdentity
    "Basic"
    Basic
    "Anonymous"
    Anonymous
    "Windows"
    Windows
    "AadServicePrincipal"
    AadServicePrincipal
    "ManagedServiceIdentity"
    ManagedServiceIdentity

    ODataLinkedService, ODataLinkedServiceArgs

    Url object
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    AadResourceId object
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    AadServicePrincipalCredentialType string | Pulumi.AzureNative.DataFactory.ODataAadServicePrincipalCredentialType
    Specify the credential type (key or cert) is used for service principal.
    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.ODataAuthenticationType
    Type of authentication used to connect to the OData 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.
    Description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    Tenant object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    UserName object
    User name of the OData service. Type: string (or Expression with resultType string).
    Url interface{}
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    AadResourceId interface{}
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    AadServicePrincipalCredentialType string | ODataAadServicePrincipalCredentialType
    Specify the credential type (key or cert) is used for service principal.
    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 | ODataAuthenticationType
    Type of authentication used to connect to the OData 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.
    Description 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 of the OData service.
    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{}
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    Tenant interface{}
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    UserName interface{}
    User name of the OData service. Type: string (or Expression with resultType string).
    url Object
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId Object
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType String | ODataAadServicePrincipalCredentialType
    Specify the credential type (key or cert) is used for service principal.
    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 | ODataAuthenticationType
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName Object
    User name of the OData service. Type: string (or Expression with resultType string).
    url any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType string | ODataAadServicePrincipalCredentialType
    Specify the credential type (key or cert) is used for service principal.
    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 | ODataAuthenticationType
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReference | SecureString
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName any
    User name of the OData service. Type: string (or Expression with resultType string).
    url Any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aad_resource_id Any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aad_service_principal_credential_type str | ODataAadServicePrincipalCredentialType
    Specify the credential type (key or cert) is used for service principal.
    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 | ODataAuthenticationType
    Type of authentication used to connect to the OData 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.
    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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReference | SecureString
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    user_name Any
    User name of the OData service. Type: string (or Expression with resultType string).
    url Any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId Any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType String | "ServicePrincipalKey" | "ServicePrincipalCert"
    Specify the credential type (key or cert) is used for service principal.
    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" | "Windows" | "AadServicePrincipal" | "ManagedServiceIdentity"
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName Any
    User name of the OData service. Type: string (or Expression with resultType string).

    ODataLinkedServiceResponse, ODataLinkedServiceResponseArgs

    Url object
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    AadResourceId object
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    AadServicePrincipalCredentialType string
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    Description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    Tenant object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    UserName object
    User name of the OData service. Type: string (or Expression with resultType string).
    Url interface{}
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    AadResourceId interface{}
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    AadServicePrincipalCredentialType string
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    Description 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 of the OData service.
    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{}
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    ServicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    Tenant interface{}
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    UserName interface{}
    User name of the OData service. Type: string (or Expression with resultType string).
    url Object
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId Object
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType String
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Object
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName Object
    User name of the OData service. Type: string (or Expression with resultType string).
    url any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType string
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName any
    User name of the OData service. Type: string (or Expression with resultType string).
    url Any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aad_resource_id Any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aad_service_principal_credential_type str
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    service_principal_key AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    user_name Any
    User name of the OData service. Type: string (or Expression with resultType string).
    url Any
    The URL of the OData service endpoint. Type: string (or Expression with resultType string).
    aadResourceId Any
    Specify the resource you are requesting authorization to use Directory. Type: string (or Expression with resultType string).
    aadServicePrincipalCredentialType String
    Specify the credential type (key or cert) is used for service principal.
    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
    Type of authentication used to connect to the OData 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.
    description 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 of the OData service.
    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
    Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    servicePrincipalKey Property Map | Property Map
    Specify the secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).
    tenant Any
    Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).
    userName Any
    User name of the OData service. Type: string (or Expression with resultType string).

    OdbcLinkedService, OdbcLinkedServiceArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    Credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    credential AzureKeyVaultSecretReference | SecureString
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    OdbcLinkedServiceResponse, OdbcLinkedServiceResponseArgs

    ConnectionString object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    ConnectionString interface{}
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    Credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    Description 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 Basic authentication.
    UserName interface{}
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Object
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Object
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connection_string Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    credential AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access credential portion of the connection string specified in driver-specific property-value format.
    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 Basic authentication.
    user_name Any
    User name for Basic authentication. Type: string (or Expression with resultType string).
    connectionString Any
    The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, 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 ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
    connectVia Property Map
    The integration runtime reference.
    credential Property Map | Property Map
    The access credential portion of the connection string specified in driver-specific property-value format.
    description 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 Basic authentication.
    userName Any
    User name for Basic authentication. Type: string (or Expression with resultType string).

    Office365LinkedService, Office365LinkedServiceArgs

    Office365TenantId object
    Azure tenant ID to which the Office 365 account belongs. 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.
    ServicePrincipalTenantId object
    Specify the tenant information under which your Azure AD web application resides. 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.
    Office365TenantId interface{}
    Azure tenant ID to which the Office 365 account belongs. 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.
    ServicePrincipalTenantId interface{}
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId Object
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId Object
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId any
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId any
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365_tenant_id Any
    Azure tenant ID to which the Office 365 account belongs. 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.
    service_principal_tenant_id Any
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId Any
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId Any
    Specify the tenant information under which your Azure AD web application resides. 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.

    Office365LinkedServiceResponse, Office365LinkedServiceResponseArgs

    Office365TenantId object
    Azure tenant ID to which the Office 365 account belongs. 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.
    ServicePrincipalTenantId object
    Specify the tenant information under which your Azure AD web application resides. 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.
    Office365TenantId interface{}
    Azure tenant ID to which the Office 365 account belongs. 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.
    ServicePrincipalTenantId interface{}
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId Object
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId Object
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId any
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId any
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365_tenant_id Any
    Azure tenant ID to which the Office 365 account belongs. 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.
    service_principal_tenant_id Any
    Specify the tenant information under which your Azure AD web application resides. 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.
    office365TenantId Any
    Azure tenant ID to which the Office 365 account belongs. 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.
    servicePrincipalTenantId Any
    Specify the tenant information under which your Azure AD web application resides. 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.

    OracleCloudStorageLinkedService, OracleCloudStorageLinkedServiceArgs

    AccessKeyId object
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Oracle 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).
    AccessKeyId interface{}
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId Object
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Oracle 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).
    access_key_id Any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId Any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Oracle 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).

    OracleCloudStorageLinkedServiceResponse, OracleCloudStorageLinkedServiceResponseArgs

    AccessKeyId object
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl object
    This value specifies the endpoint to access with the Oracle 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).
    AccessKeyId interface{}
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    ServiceUrl interface{}
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId Object
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Object
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl any
    This value specifies the endpoint to access with the Oracle 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).
    access_key_id Any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    service_url Any
    This value specifies the endpoint to access with the Oracle 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).
    accessKeyId Any
    The access key identifier of the Oracle 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 Oracle Cloud Storage Identity and Access Management (IAM) user.
    serviceUrl Any
    This value specifies the endpoint to access with the Oracle 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).

    OracleLinkedService, OracleLinkedServiceArgs

    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.
    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.
    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.
    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.
    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.
    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.

    OracleLinkedServiceResponse, OracleLinkedServiceResponseArgs

    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.
    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.
    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.
    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.
    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.
    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.

    OracleServiceCloudLinkedService, OracleServiceCloudLinkedServiceArgs

    Host object
    The URL of the Oracle Service Cloud instance.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The password corresponding to the user name that you provided in the username key.
    Username object
    The user name that you use to access Oracle Service Cloud server.
    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.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    Host interface{}
    The URL of the Oracle Service Cloud instance.
    Password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username key.
    Username interface{}
    The user name that you use to access Oracle Service Cloud server.
    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.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Object
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username key.
    username Object
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host any
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username key.
    username any
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Any
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReference | SecureString
    The password corresponding to the user name that you provided in the username key.
    username Any
    The user name that you use to access Oracle Service Cloud server.
    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.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Any
    The URL of the Oracle Service Cloud instance.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the username key.
    username Any
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).

    OracleServiceCloudLinkedServiceResponse, OracleServiceCloudLinkedServiceResponseArgs

    Host object
    The URL of the Oracle Service Cloud instance.
    Password Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The password corresponding to the user name that you provided in the username key.
    Username object
    The user name that you use to access Oracle Service Cloud server.
    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.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    UsePeerVerification object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    Host interface{}
    The URL of the Oracle Service Cloud instance.
    Password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username key.
    Username interface{}
    The user name that you use to access Oracle Service Cloud server.
    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.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    UsePeerVerification interface{}
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Object
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username key.
    username Object
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification Object
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host any
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username key.
    username any
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Any
    The URL of the Oracle Service Cloud instance.
    password AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The password corresponding to the user name that you provided in the username key.
    username Any
    The user name that you use to access Oracle Service Cloud server.
    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.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    use_peer_verification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
    host Any
    The URL of the Oracle Service Cloud instance.
    password Property Map | Property Map
    The password corresponding to the user name that you provided in the username key.
    username Any
    The user name that you use to access Oracle Service Cloud server.
    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.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
    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. Type: boolean (or Expression with resultType boolean).
    usePeerVerification Any
    Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).

    ParameterSpecification, ParameterSpecificationArgs

    Type string | Pulumi.AzureNative.DataFactory.ParameterType
    Parameter type.
    DefaultValue object
    Default value of parameter.
    Type string | ParameterType
    Parameter type.
    DefaultValue interface{}
    Default value of parameter.
    type String | ParameterType
    Parameter type.
    defaultValue Object
    Default value of parameter.
    type string | ParameterType
    Parameter type.
    defaultValue any
    Default value of parameter.
    type str | ParameterType
    Parameter type.
    default_value Any
    Default value of parameter.

    ParameterSpecificationResponse, ParameterSpecificationResponseArgs

    Type string
    Parameter type.
    DefaultValue object
    Default value of parameter.
    Type string
    Parameter type.
    DefaultValue interface{}
    Default value of parameter.
    type String
    Parameter type.
    defaultValue Object
    Default value of parameter.
    type string
    Parameter type.
    defaultValue any
    Default value of parameter.
    type str
    Parameter type.
    default_value Any
    Default value of parameter.
    type String
    Parameter type.
    defaultValue Any
    Default value of parameter.

    ParameterType, ParameterTypeArgs

    Object
    Object
    String
    String
    Int
    Int
    Float
    Float
    Bool
    Bool
    Array
    Array
    SecureString
    SecureString
    ParameterTypeObject
    Object
    ParameterTypeString
    String
    ParameterTypeInt
    Int
    ParameterTypeFloat
    Float
    ParameterTypeBool
    Bool
    ParameterTypeArray
    Array
    ParameterTypeSecureString
    SecureString
    Object
    Object
    String
    String
    Int
    Int
    Float
    Float
    Bool
    Bool
    Array
    Array
    SecureString
    SecureString
    Object
    Object
    String
    String
    Int
    Int
    Float
    Float
    Bool
    Bool
    Array
    Array
    SecureString
    SecureString
    OBJECT
    Object
    STRING
    String
    INT
    Int
    FLOAT
    Float
    BOOL
    Bool
    ARRAY
    Array
    SECURE_STRING
    SecureString
    "Object"
    Object
    "String"
    String
    "Int"
    Int
    "Float"
    Float
    "Bool"
    Bool
    "Array"
    Array
    "SecureString"
    SecureString

    PaypalLinkedService, PaypalLinkedServiceArgs

    ClientId object
    The client ID associated with your PayPal application.
    Host object
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    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 PayPal 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.
    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.
    ClientId interface{}
    The client ID associated with your PayPal application.
    Host interface{}
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your PayPal 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.
    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.
    clientId Object
    The client ID associated with your PayPal application.
    host Object
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your PayPal 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.
    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.
    clientId any
    The client ID associated with your PayPal application.
    host any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReference | SecureString
    The client secret associated with your PayPal 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.
    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.
    client_id Any
    The client ID associated with your PayPal application.
    host Any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    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 PayPal 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.
    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.
    clientId Any
    The client ID associated with your PayPal application.
    host Any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    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 PayPal 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.
    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.

    PaypalLinkedServiceResponse, PaypalLinkedServiceResponseArgs

    ClientId object
    The client ID associated with your PayPal application.
    Host object
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    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 PayPal application.
    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.
    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.
    ClientId interface{}
    The client ID associated with your PayPal application.
    Host interface{}
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    ClientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your PayPal application.
    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.
    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.
    clientId Object
    The client ID associated with your PayPal application.
    host Object
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your PayPal application.
    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.
    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.
    clientId any
    The client ID associated with your PayPal application.
    host any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    annotations any[]
    List of tags that can be used for describing the linked service.
    clientSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your PayPal application.
    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.
    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.
    client_id Any
    The client ID associated with your PayPal application.
    host Any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    client_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The client secret associated with your PayPal application.
    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.
    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.
    clientId Any
    The client ID associated with your PayPal application.
    host Any
    The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
    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 PayPal 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.
    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.

    PhoenixAuthenticationType, PhoenixAuthenticationTypeArgs

    Anonymous
    Anonymous
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    PhoenixAuthenticationTypeAnonymous
    Anonymous
    PhoenixAuthenticationTypeUsernameAndPassword
    UsernameAndPassword
    PhoenixAuthenticationTypeWindowsAzureHDInsightService
    WindowsAzureHDInsightService
    Anonymous
    Anonymous
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    Anonymous
    Anonymous
    UsernameAndPassword
    UsernameAndPassword
    WindowsAzureHDInsightService
    WindowsAzureHDInsightService
    ANONYMOUS
    Anonymous
    USERNAME_AND_PASSWORD
    UsernameAndPassword
    WINDOWS_AZURE_HD_INSIGHT_SERVICE
    WindowsAzureHDInsightService
    "Anonymous"
    Anonymous
    "UsernameAndPassword"
    UsernameAndPassword
    "WindowsAzureHDInsightService"
    WindowsAzureHDInsightService

    PhoenixLinkedService, PhoenixLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.PhoenixAuthenticationType
    The authentication mechanism used to connect to the Phoenix server.
    Host object
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    AuthenticationType string | PhoenixAuthenticationType
    The authentication mechanism used to connect to the Phoenix server.
    Host interface{}
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authenticationType String | PhoenixAuthenticationType
    The authentication mechanism used to connect to the Phoenix server.
    host Object
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authenticationType string | PhoenixAuthenticationType
    The authentication mechanism used to connect to the Phoenix server.
    host any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authentication_type str | PhoenixAuthenticationType
    The authentication mechanism used to connect to the Phoenix server.
    host Any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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_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 used to connect to the Phoenix server.
    authenticationType String | "Anonymous" | "UsernameAndPassword" | "WindowsAzureHDInsightService"
    The authentication mechanism used to connect to the Phoenix server.
    host Any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.

    PhoenixLinkedServiceResponse, PhoenixLinkedServiceResponseArgs

    AuthenticationType string
    The authentication mechanism used to connect to the Phoenix server.
    Host object
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    AuthenticationType string
    The authentication mechanism used to connect to the Phoenix server.
    Host interface{}
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authenticationType String
    The authentication mechanism used to connect to the Phoenix server.
    host Object
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authenticationType string
    The authentication mechanism used to connect to the Phoenix server.
    host any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.
    authentication_type str
    The authentication mechanism used to connect to the Phoenix server.
    host Any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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_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 used to connect to the Phoenix server.
    authenticationType String
    The authentication mechanism used to connect to the Phoenix server.
    host Any
    The IP address or host name of the Phoenix 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 Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
    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 Phoenix server uses to listen for client connections. The default value is 8765.
    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.
    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 used to connect to the Phoenix server.

    PostgreSqlLinkedService, PostgreSqlLinkedServiceArgs

    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.
    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.
    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.
    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.
    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.
    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.

    PostgreSqlLinkedServiceResponse, PostgreSqlLinkedServiceResponseArgs

    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.
    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.
    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.
    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.
    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.
    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.

    PostgreSqlV2LinkedService, PostgreSqlV2LinkedServiceArgs

    Database object
    Database name for connection. Type: string.
    Server object
    Server name for connection. Type: 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.
    Username object
    Username for authentication. Type: string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    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.
    ConnectionTimeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    LogParameters object
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    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. Type: string.
    Pooling object
    Whether connection pooling should be used. Type: boolean.
    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.
    Schema object
    Sets the schema search path. Type: string.
    SslCertificate object
    Location of a client certificate to be sent to the server. Type: string.
    SslKey object
    Location of a client key for a client certificate to be sent to the server. Type: string.
    SslPassword object
    Password for a key for a client certificate. Type: string.
    Timezone object
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate object
    Whether to trust the server certificate without validating it. Type: boolean.
    Database interface{}
    Database name for connection. Type: string.
    Server interface{}
    Server name for connection. Type: 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.
    Username interface{}
    Username for authentication. Type: string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    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.
    ConnectionTimeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    LogParameters interface{}
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    Password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string. Type: string.
    Pooling interface{}
    Whether connection pooling should be used. Type: boolean.
    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.
    Schema interface{}
    Sets the schema search path. Type: string.
    SslCertificate interface{}
    Location of a client certificate to be sent to the server. Type: string.
    SslKey interface{}
    Location of a client key for a client certificate to be sent to the server. Type: string.
    SslPassword interface{}
    Password for a key for a client certificate. Type: string.
    Timezone interface{}
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate interface{}
    Whether to trust the server certificate without validating it. Type: boolean.
    database Object
    Database name for connection. Type: string.
    server Object
    Server name for connection. Type: 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.
    username Object
    Username for authentication. Type: string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters Object
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Object
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Object
    Sets the schema search path. Type: string.
    sslCertificate Object
    Location of a client certificate to be sent to the server. Type: string.
    sslKey Object
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword Object
    Password for a key for a client certificate. Type: string.
    timezone Object
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Object
    Whether to trust the server certificate without validating it. Type: boolean.
    database any
    Database name for connection. Type: string.
    server any
    Server name for connection. Type: 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.
    username any
    Username for authentication. Type: string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema any
    Sets the schema search path. Type: string.
    sslCertificate any
    Location of a client certificate to be sent to the server. Type: string.
    sslKey any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword any
    Password for a key for a client certificate. Type: string.
    timezone any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate any
    Whether to trust the server certificate without validating it. Type: boolean.
    database Any
    Database name for connection. Type: string.
    server Any
    Server name for connection. Type: 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.
    username Any
    Username for authentication. Type: string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    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_timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    log_parameters Any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    password AzureKeyVaultSecretReference
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Any
    Sets the schema search path. Type: string.
    ssl_certificate Any
    Location of a client certificate to be sent to the server. Type: string.
    ssl_key Any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    ssl_password Any
    Password for a key for a client certificate. Type: string.
    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.
    database Any
    Database name for connection. Type: string.
    server Any
    Server name for connection. Type: 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.
    username Any
    Username for authentication. Type: string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters Any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Any
    Sets the schema search path. Type: string.
    sslCertificate Any
    Location of a client certificate to be sent to the server. Type: string.
    sslKey Any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword Any
    Password for a key for a client certificate. Type: string.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Any
    Whether to trust the server certificate without validating it. Type: boolean.

    PostgreSqlV2LinkedServiceResponse, PostgreSqlV2LinkedServiceResponseArgs

    Database object
    Database name for connection. Type: string.
    Server object
    Server name for connection. Type: 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.
    Username object
    Username for authentication. Type: string.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    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.
    ConnectionTimeout object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    LogParameters object
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    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. Type: string.
    Pooling object
    Whether connection pooling should be used. Type: boolean.
    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.
    Schema object
    Sets the schema search path. Type: string.
    SslCertificate object
    Location of a client certificate to be sent to the server. Type: string.
    SslKey object
    Location of a client key for a client certificate to be sent to the server. Type: string.
    SslPassword object
    Password for a key for a client certificate. Type: string.
    Timezone object
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate object
    Whether to trust the server certificate without validating it. Type: boolean.
    Database interface{}
    Database name for connection. Type: string.
    Server interface{}
    Server name for connection. Type: 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.
    Username interface{}
    Username for authentication. Type: string.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    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.
    ConnectionTimeout interface{}
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    LogParameters interface{}
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    Password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string. Type: string.
    Pooling interface{}
    Whether connection pooling should be used. Type: boolean.
    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.
    Schema interface{}
    Sets the schema search path. Type: string.
    SslCertificate interface{}
    Location of a client certificate to be sent to the server. Type: string.
    SslKey interface{}
    Location of a client key for a client certificate to be sent to the server. Type: string.
    SslPassword interface{}
    Password for a key for a client certificate. Type: string.
    Timezone interface{}
    Gets or sets the session timezone. Type: string.
    TrustServerCertificate interface{}
    Whether to trust the server certificate without validating it. Type: boolean.
    database Object
    Database name for connection. Type: string.
    server Object
    Server name for connection. Type: 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.
    username Object
    Username for authentication. Type: string.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout Object
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters Object
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Object
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Object
    Sets the schema search path. Type: string.
    sslCertificate Object
    Location of a client certificate to be sent to the server. Type: string.
    sslKey Object
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword Object
    Password for a key for a client certificate. Type: string.
    timezone Object
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Object
    Whether to trust the server certificate without validating it. Type: boolean.
    database any
    Database name for connection. Type: string.
    server any
    Server name for connection. Type: 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.
    username any
    Username for authentication. Type: string.
    annotations any[]
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema any
    Sets the schema search path. Type: string.
    sslCertificate any
    Location of a client certificate to be sent to the server. Type: string.
    sslKey any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword any
    Password for a key for a client certificate. Type: string.
    timezone any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate any
    Whether to trust the server certificate without validating it. Type: boolean.
    database Any
    Database name for connection. Type: string.
    server Any
    Server name for connection. Type: 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.
    username Any
    Username for authentication. Type: string.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    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_timeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    log_parameters Any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    password AzureKeyVaultSecretReferenceResponse
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Any
    Sets the schema search path. Type: string.
    ssl_certificate Any
    Location of a client certificate to be sent to the server. Type: string.
    ssl_key Any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    ssl_password Any
    Password for a key for a client certificate. Type: string.
    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.
    database Any
    Database name for connection. Type: string.
    server Any
    Server name for connection. Type: 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.
    username Any
    Username for authentication. Type: string.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    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.
    connectionTimeout Any
    The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
    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.
    logParameters Any
    When enabled, parameter values are logged when commands are executed. Type: boolean.
    parameters Map<Property Map>
    Parameters for linked service.
    password Property Map
    The Azure key vault secret reference of password in connection string. Type: string.
    pooling Any
    Whether connection pooling should be used. Type: boolean.
    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.
    schema Any
    Sets the schema search path. Type: string.
    sslCertificate Any
    Location of a client certificate to be sent to the server. Type: string.
    sslKey Any
    Location of a client key for a client certificate to be sent to the server. Type: string.
    sslPassword Any
    Password for a key for a client certificate. Type: string.
    timezone Any
    Gets or sets the session timezone. Type: string.
    trustServerCertificate Any
    Whether to trust the server certificate without validating it. Type: boolean.

    PrestoAuthenticationType, PrestoAuthenticationTypeArgs

    Anonymous
    Anonymous
    LDAP
    LDAP
    PrestoAuthenticationTypeAnonymous
    Anonymous
    PrestoAuthenticationTypeLDAP
    LDAP
    Anonymous
    Anonymous
    LDAP
    LDAP
    Anonymous
    Anonymous
    LDAP
    LDAP
    ANONYMOUS
    Anonymous
    LDAP
    LDAP
    "Anonymous"
    Anonymous
    "LDAP"
    LDAP

    PrestoLinkedService, PrestoLinkedServiceArgs

    AuthenticationType string | Pulumi.AzureNative.DataFactory.PrestoAuthenticationType
    The authentication mechanism used to connect to the Presto server.
    Catalog object
    The catalog context for all request against the server.
    Host object
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    ServerVersion object
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    TimeZoneID object
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    AuthenticationType string | PrestoAuthenticationType
    The authentication mechanism used to connect to the Presto server.
    Catalog interface{}
    The catalog context for all request against the server.
    Host interface{}
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    ServerVersion interface{}
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    TimeZoneID interface{}
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authenticationType String | PrestoAuthenticationType
    The authentication mechanism used to connect to the Presto server.
    catalog Object
    The catalog context for all request against the server.
    host Object
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion Object
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID Object
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authenticationType string | PrestoAuthenticationType
    The authentication mechanism used to connect to the Presto server.
    catalog any
    The catalog context for all request against the server.
    host any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authentication_type str | PrestoAuthenticationType
    The authentication mechanism used to connect to the Presto server.
    catalog Any
    The catalog context for all request against the server.
    host Any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    server_version Any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    time_zone_id Any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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_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 used to connect to the Presto server.
    authenticationType String | "Anonymous" | "LDAP"
    The authentication mechanism used to connect to the Presto server.
    catalog Any
    The catalog context for all request against the server.
    host Any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion Any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID Any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.

    PrestoLinkedServiceResponse, PrestoLinkedServiceResponseArgs

    AuthenticationType string
    The authentication mechanism used to connect to the Presto server.
    Catalog object
    The catalog context for all request against the server.
    Host object
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    ServerVersion object
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    TimeZoneID object
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    AuthenticationType string
    The authentication mechanism used to connect to the Presto server.
    Catalog interface{}
    The catalog context for all request against the server.
    Host interface{}
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    ServerVersion interface{}
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    TimeZoneID interface{}
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authenticationType String
    The authentication mechanism used to connect to the Presto server.
    catalog Object
    The catalog context for all request against the server.
    host Object
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion Object
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID Object
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authenticationType string
    The authentication mechanism used to connect to the Presto server.
    catalog any
    The catalog context for all request against the server.
    host any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.
    authentication_type str
    The authentication mechanism used to connect to the Presto server.
    catalog Any
    The catalog context for all request against the server.
    host Any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    server_version Any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    time_zone_id Any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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_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 used to connect to the Presto server.
    authenticationType String
    The authentication mechanism used to connect to the Presto server.
    catalog Any
    The catalog context for all request against the server.
    host Any
    The IP address or host name of the Presto server. (i.e. 192.168.222.160)
    serverVersion Any
    The version of the Presto server. (i.e. 0.148-t)
    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.
    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 Presto server uses to listen for client connections. The default value is 8080.
    timeZoneID Any
    The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
    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.
    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 used to connect to the Presto server.

    QuickBooksLinkedService, QuickBooksLinkedServiceArgs

    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access token for OAuth 1.0 authentication.
    AccessTokenSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The access token secret for OAuth 1.0 authentication.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    CompanyId object
    The company ID of the QuickBooks company to authorize.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties object
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    ConsumerKey object
    The consumer key for OAuth 1.0 authentication.
    ConsumerSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference | Pulumi.AzureNative.DataFactory.Inputs.SecureString
    The consumer secret for OAuth 1.0 authentication.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Endpoint object
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
    Parameters for linked service.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    AccessToken AzureKeyVaultSecretReference | SecureString
    The access token for OAuth 1.0 authentication.
    AccessTokenSecret AzureKeyVaultSecretReference | SecureString
    The access token secret for OAuth 1.0 authentication.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    CompanyId interface{}
    The company ID of the QuickBooks company to authorize.
    ConnectVia IntegrationRuntimeReference
    The integration runtime reference.
    ConnectionProperties interface{}
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    ConsumerKey interface{}
    The consumer key for OAuth 1.0 authentication.
    ConsumerSecret AzureKeyVaultSecretReference | SecureString
    The consumer secret for OAuth 1.0 authentication.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Endpoint interface{}
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    Parameters map[string]ParameterSpecification
    Parameters for linked service.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token for OAuth 1.0 authentication.
    accessTokenSecret AzureKeyVaultSecretReference | SecureString
    The access token secret for OAuth 1.0 authentication.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    companyId Object
    The company ID of the QuickBooks company to authorize.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties Object
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey Object
    The consumer key for OAuth 1.0 authentication.
    consumerSecret AzureKeyVaultSecretReference | SecureString
    The consumer secret for OAuth 1.0 authentication.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint Object
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Map<String,ParameterSpecification>
    Parameters for linked service.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken AzureKeyVaultSecretReference | SecureString
    The access token for OAuth 1.0 authentication.
    accessTokenSecret AzureKeyVaultSecretReference | SecureString
    The access token secret for OAuth 1.0 authentication.
    annotations any[]
    List of tags that can be used for describing the linked service.
    companyId any
    The company ID of the QuickBooks company to authorize.
    connectVia IntegrationRuntimeReference
    The integration runtime reference.
    connectionProperties any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey any
    The consumer key for OAuth 1.0 authentication.
    consumerSecret AzureKeyVaultSecretReference | SecureString
    The consumer secret for OAuth 1.0 authentication.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters {[key: string]: ParameterSpecification}
    Parameters for linked service.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    access_token AzureKeyVaultSecretReference | SecureString
    The access token for OAuth 1.0 authentication.
    access_token_secret AzureKeyVaultSecretReference | SecureString
    The access token secret for OAuth 1.0 authentication.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    company_id Any
    The company ID of the QuickBooks company to authorize.
    connect_via IntegrationRuntimeReference
    The integration runtime reference.
    connection_properties Any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumer_key Any
    The consumer key for OAuth 1.0 authentication.
    consumer_secret AzureKeyVaultSecretReference | SecureString
    The consumer secret for OAuth 1.0 authentication.
    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.
    endpoint Any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Mapping[str, ParameterSpecification]
    Parameters for linked service.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken Property Map | Property Map
    The access token for OAuth 1.0 authentication.
    accessTokenSecret Property Map | Property Map
    The access token secret for OAuth 1.0 authentication.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    companyId Any
    The company ID of the QuickBooks company to authorize.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey Any
    The consumer key for OAuth 1.0 authentication.
    consumerSecret Property Map | Property Map
    The consumer secret for OAuth 1.0 authentication.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint Any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Map<Property Map>
    Parameters for linked service.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.

    QuickBooksLinkedServiceResponse, QuickBooksLinkedServiceResponseArgs

    AccessToken Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access token for OAuth 1.0 authentication.
    AccessTokenSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The access token secret for OAuth 1.0 authentication.
    Annotations List<object>
    List of tags that can be used for describing the linked service.
    CompanyId object
    The company ID of the QuickBooks company to authorize.
    ConnectVia Pulumi.AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties object
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    ConsumerKey object
    The consumer key for OAuth 1.0 authentication.
    ConsumerSecret Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse | Pulumi.AzureNative.DataFactory.Inputs.SecureStringResponse
    The consumer secret for OAuth 1.0 authentication.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Endpoint object
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
    Parameters for linked service.
    UseEncryptedEndpoints object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    AccessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token for OAuth 1.0 authentication.
    AccessTokenSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token secret for OAuth 1.0 authentication.
    Annotations []interface{}
    List of tags that can be used for describing the linked service.
    CompanyId interface{}
    The company ID of the QuickBooks company to authorize.
    ConnectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    ConnectionProperties interface{}
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    ConsumerKey interface{}
    The consumer key for OAuth 1.0 authentication.
    ConsumerSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The consumer secret for OAuth 1.0 authentication.
    Description string
    Linked service description.
    EncryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    Endpoint interface{}
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    Parameters map[string]ParameterSpecificationResponse
    Parameters for linked service.
    UseEncryptedEndpoints interface{}
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token for OAuth 1.0 authentication.
    accessTokenSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token secret for OAuth 1.0 authentication.
    annotations List<Object>
    List of tags that can be used for describing the linked service.
    companyId Object
    The company ID of the QuickBooks company to authorize.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties Object
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey Object
    The consumer key for OAuth 1.0 authentication.
    consumerSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The consumer secret for OAuth 1.0 authentication.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint Object
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Map<String,ParameterSpecificationResponse>
    Parameters for linked service.
    useEncryptedEndpoints Object
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token for OAuth 1.0 authentication.
    accessTokenSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token secret for OAuth 1.0 authentication.
    annotations any[]
    List of tags that can be used for describing the linked service.
    companyId any
    The company ID of the QuickBooks company to authorize.
    connectVia IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connectionProperties any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey any
    The consumer key for OAuth 1.0 authentication.
    consumerSecret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The consumer secret for OAuth 1.0 authentication.
    description string
    Linked service description.
    encryptedCredential string
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters {[key: string]: ParameterSpecificationResponse}
    Parameters for linked service.
    useEncryptedEndpoints any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    access_token AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token for OAuth 1.0 authentication.
    access_token_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The access token secret for OAuth 1.0 authentication.
    annotations Sequence[Any]
    List of tags that can be used for describing the linked service.
    company_id Any
    The company ID of the QuickBooks company to authorize.
    connect_via IntegrationRuntimeReferenceResponse
    The integration runtime reference.
    connection_properties Any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumer_key Any
    The consumer key for OAuth 1.0 authentication.
    consumer_secret AzureKeyVaultSecretReferenceResponse | SecureStringResponse
    The consumer secret for OAuth 1.0 authentication.
    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.
    endpoint Any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Mapping[str, ParameterSpecificationResponse]
    Parameters for linked service.
    use_encrypted_endpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
    accessToken Property Map | Property Map
    The access token for OAuth 1.0 authentication.
    accessTokenSecret Property Map | Property Map
    The access token secret for OAuth 1.0 authentication.
    annotations List<Any>
    List of tags that can be used for describing the linked service.
    companyId Any
    The company ID of the QuickBooks company to authorize.
    connectVia Property Map
    The integration runtime reference.
    connectionProperties Any
    Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.
    consumerKey Any
    The consumer key for OAuth 1.0 authentication.
    consumerSecret Property Map | Property Map
    The consumer secret for OAuth 1.0 authentication.
    description String
    Linked service description.
    encryptedCredential String
    The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
    endpoint Any
    The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
    parameters Map<Property Map>
    Parameters for linked service.
    useEncryptedEndpoints Any
    Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:datafactory:LinkedService exampleLinkedService /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/linkedservices/{linkedServiceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi