azure-native.datafactory.LinkedService

Linked service resource type. API Version: 2018-06-01.

Example Usage

LinkedServices_Create

using System.Collections.Generic;
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 (
	datafactory "github.com/pulumi/pulumi-azure-native/sdk/go/azure/datafactory"
	"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(Map.ofEntries(
                Map.entry("connectionString", AmazonMWSLinkedServiceArgs.builder()
                    .type("SecureString")
                    .value("DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
                    .build()),
                Map.entry("type", "AzureStorage")
            ))
            .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 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 (
	datafactory "github.com/pulumi/pulumi-azure-native/sdk/go/azure/datafactory"
	"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(Map.ofEntries(
                Map.entry("connectionString", AmazonMWSLinkedServiceArgs.builder()
                    .type("SecureString")
                    .value("DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
                    .build()),
                Map.entry("description", "Example description"),
                Map.entry("type", "AzureStorage")
            ))
            .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

new LinkedService(name: string, args: LinkedServiceArgs, opts?: CustomResourceOptions);
@overload
def LinkedService(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  factory_name: Optional[str] = None,
                  linked_service_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, GoogleCloudStorageLinkedServiceArgs, GoogleSheetsLinkedServiceArgs, GreenplumLinkedServiceArgs, HBaseLinkedServiceArgs, HDInsightLinkedServiceArgs, HDInsightOnDemandLinkedServiceArgs, HdfsLinkedServiceArgs, HiveLinkedServiceArgs, HttpLinkedServiceArgs, HubspotLinkedServiceArgs, ImpalaLinkedServiceArgs, InformixLinkedServiceArgs, JiraLinkedServiceArgs, MagentoLinkedServiceArgs, MariaDBLinkedServiceArgs, MarketoLinkedServiceArgs, MicrosoftAccessLinkedServiceArgs, MongoDbAtlasLinkedServiceArgs, MongoDbLinkedServiceArgs, MongoDbV2LinkedServiceArgs, MySqlLinkedServiceArgs, NetezzaLinkedServiceArgs, ODataLinkedServiceArgs, OdbcLinkedServiceArgs, Office365LinkedServiceArgs, OracleCloudStorageLinkedServiceArgs, OracleLinkedServiceArgs, OracleServiceCloudLinkedServiceArgs, PaypalLinkedServiceArgs, PhoenixLinkedServiceArgs, PostgreSqlLinkedServiceArgs, PrestoLinkedServiceArgs, QuickBooksLinkedServiceArgs, QuickbaseLinkedServiceArgs, ResponsysLinkedServiceArgs, RestServiceLinkedServiceArgs, SalesforceLinkedServiceArgs, SalesforceMarketingCloudLinkedServiceArgs, SalesforceServiceCloudLinkedServiceArgs, SapBWLinkedServiceArgs, SapCloudForCustomerLinkedServiceArgs, SapEccLinkedServiceArgs, SapHanaLinkedServiceArgs, SapOdpLinkedServiceArgs, SapOpenHubLinkedServiceArgs, SapTableLinkedServiceArgs, ServiceNowLinkedServiceArgs, SftpServerLinkedServiceArgs, SharePointOnlineListLinkedServiceArgs, ShopifyLinkedServiceArgs, SmartsheetLinkedServiceArgs, SnowflakeLinkedServiceArgs, SparkLinkedServiceArgs, SqlServerLinkedServiceArgs, SquareLinkedServiceArgs, SybaseLinkedServiceArgs, TeamDeskLinkedServiceArgs, TeradataLinkedServiceArgs, TwilioLinkedServiceArgs, VerticaLinkedServiceArgs, WebLinkedServiceArgs, XeroLinkedServiceArgs, ZendeskLinkedServiceArgs, ZohoLinkedServiceArgs]] = None,
                  resource_group_name: Optional[str] = None)
@overload
def LinkedService(resource_name: str,
                  args: LinkedServiceArgs,
                  opts: Optional[ResourceOptions] = 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.

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.

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.AmazonMWSLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AppFiguresLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AsanaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureBatchLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeAnalyticsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureFunctionLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMLLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMLServiceLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDWLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDatabaseLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlMILinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSynapseArtifactsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureTableStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CassandraLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ConcurLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.CustomDataSourceLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.DataworldLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.Db2LinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.DrillLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.EloquaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.FileServerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleSheetsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.GreenplumLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HBaseLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HDInsightLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HDInsightOnDemandLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HdfsLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HiveLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HttpLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.HubspotLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ImpalaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.InformixLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.JiraLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MagentoLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MariaDBLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MarketoLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2LinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.MySqlLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.NetezzaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ODataLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.OdbcLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.Office365LinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.OracleLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.PaypalLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.PhoenixLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.PrestoLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.QuickbaseLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ResponsysLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.RestServiceLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapBWLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapEccLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapHanaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapOdpLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SapTableLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SftpServerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ShopifyLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SmartsheetLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SparkLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SqlServerLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SquareLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.SybaseLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.TeamDeskLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.TeradataLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.TwilioLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.VerticaLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.WebLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.XeroLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ZendeskLinkedServiceArgs | Pulumi.AzureNative.DataFactory.Inputs.ZohoLinkedServiceArgs

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 | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | 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 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 | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | 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 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 | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | WebLinkedServiceArgs | XeroLinkedServiceArgs | ZendeskLinkedServiceArgs | ZohoLinkedServiceArgs

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 | GoogleCloudStorageLinkedServiceArgs | GoogleSheetsLinkedServiceArgs | GreenplumLinkedServiceArgs | HBaseLinkedServiceArgs | HDInsightLinkedServiceArgs | HDInsightOnDemandLinkedServiceArgs | HdfsLinkedServiceArgs | HiveLinkedServiceArgs | HttpLinkedServiceArgs | HubspotLinkedServiceArgs | ImpalaLinkedServiceArgs | InformixLinkedServiceArgs | JiraLinkedServiceArgs | MagentoLinkedServiceArgs | MariaDBLinkedServiceArgs | MarketoLinkedServiceArgs | MicrosoftAccessLinkedServiceArgs | MongoDbAtlasLinkedServiceArgs | MongoDbLinkedServiceArgs | MongoDbV2LinkedServiceArgs | MySqlLinkedServiceArgs | NetezzaLinkedServiceArgs | ODataLinkedServiceArgs | OdbcLinkedServiceArgs | Office365LinkedServiceArgs | OracleCloudStorageLinkedServiceArgs | OracleLinkedServiceArgs | OracleServiceCloudLinkedServiceArgs | PaypalLinkedServiceArgs | PhoenixLinkedServiceArgs | PostgreSqlLinkedServiceArgs | PrestoLinkedServiceArgs | QuickBooksLinkedServiceArgs | QuickbaseLinkedServiceArgs | ResponsysLinkedServiceArgs | RestServiceLinkedServiceArgs | SalesforceLinkedServiceArgs | SalesforceMarketingCloudLinkedServiceArgs | SalesforceServiceCloudLinkedServiceArgs | SapBWLinkedServiceArgs | SapCloudForCustomerLinkedServiceArgs | SapEccLinkedServiceArgs | SapHanaLinkedServiceArgs | SapOdpLinkedServiceArgs | SapOpenHubLinkedServiceArgs | SapTableLinkedServiceArgs | ServiceNowLinkedServiceArgs | SftpServerLinkedServiceArgs | SharePointOnlineListLinkedServiceArgs | ShopifyLinkedServiceArgs | SmartsheetLinkedServiceArgs | SnowflakeLinkedServiceArgs | SparkLinkedServiceArgs | SqlServerLinkedServiceArgs | SquareLinkedServiceArgs | SybaseLinkedServiceArgs | TeamDeskLinkedServiceArgs | TeradataLinkedServiceArgs | TwilioLinkedServiceArgs | VerticaLinkedServiceArgs | 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

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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. 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

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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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.

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.

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.

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.

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.

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.

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

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.

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.

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.

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.

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.

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.

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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for linked service.

AsanaLinkedServiceResponse

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for linked service.

AzureBatchLinkedService

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for linked service.

AzureBatchLinkedServiceResponse

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for linked service.

AzureBlobFSLinkedService

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReference

The Azure key vault secret reference of accountKey in connection string.

AccountKind string

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 (or Expression with resultType 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 string

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 string

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 (or Expression with resultType 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 string

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 String

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 (or Expression with resultType 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 String

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 string

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 (or Expression with resultType 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 string

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 str

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 (or Expression with resultType 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 str

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 String

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 (or Expression with resultType 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 String

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

AccountKey Pulumi.AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceResponse

The Azure key vault secret reference of accountKey in connection string.

AccountKind string

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 (or Expression with resultType 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 string

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 string

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 (or Expression with resultType 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 string

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 String

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 (or Expression with resultType 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 String

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 string

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 (or Expression with resultType 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 string

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 str

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 (or Expression with resultType 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 str

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 String

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 (or Expression with resultType 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 String

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

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

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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

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 object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 interface{}

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Object

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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 Any

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType 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

Domain object

.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).

AccessToken