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:
- Factory
Name string The factory name.
- Properties
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. App Figures Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Asana Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Batch Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Analytics Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Function Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure MLLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure MLService Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Database Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MILinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Synapse Artifacts Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Concur Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Custom Data Source Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Dataworld Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Db2Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Drill Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. File Server Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Google Sheets Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. HBase Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. HDInsight Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. HDInsight On Demand Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Hive Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Http Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Impala Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Informix Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Jira Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Magento Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Maria DBLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Marketo Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. My Sql Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Netezza Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. OData Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Odbc Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Office365Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Oracle Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Paypal Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Presto Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Quickbase Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Responsys Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Rest Service Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap BWLinked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Service Now Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sftp Server Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Shopify Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Smartsheet Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Spark Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Square Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Sybase Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Team Desk Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Teradata Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Twilio Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Vertica Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Web Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Xero Linked Service Args Azure | Pulumi.Native. Data Factory. Inputs. Zendesk Linked Service Args Azure Native. Data Factory. Inputs. Zoho Linked Service Args Properties of linked service.
- Resource
Group stringName The resource group name.
- Linked
Service stringName The linked service name.
- Factory
Name string The factory name.
- Properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args Properties of linked service.
- Resource
Group stringName The resource group name.
- Linked
Service stringName The linked service name.
- factory
Name String The factory name.
- properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args Properties of linked service.
- resource
Group StringName The resource group name.
- linked
Service StringName The linked service name.
- factory
Name string The factory name.
- properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args Properties of linked service.
- resource
Group stringName The resource group name.
- linked
Service stringName The linked service name.
- factory_
name str The factory name.
- properties
Amazon
MWSLinked | AmazonService Args Rds | AmazonFor Oracle Linked Service Args Rds | AmazonFor Sql Server Linked Service Args Redshift | AmazonLinked Service Args S3Compatible | AmazonLinked Service Args S3Linked | AppService Args Figures | AsanaLinked Service Args Linked | AzureService Args Batch | AzureLinked Service Args Blob | AzureFSLinked Service Args Blob | AzureStorage Linked Service Args Data | AzureExplorer Linked Service Args Data | AzureLake Analytics Linked Service Args Data | AzureLake Store Linked Service Args Databricks | AzureDelta Lake Linked Service Args Databricks | AzureLinked Service Args File | AzureStorage Linked Service Args Function | AzureLinked Service Args Key | AzureVault Linked Service Args MLLinked | AzureService Args MLService | AzureLinked Service Args Maria | AzureDBLinked Service Args My | AzureSql Linked Service Args Postgre | AzureSql Linked Service Args Search | AzureLinked Service Args Sql | AzureDWLinked Service Args Sql | AzureDatabase Linked Service Args Sql | AzureMILinked Service Args Storage | AzureLinked Service Args Synapse | AzureArtifacts Linked Service Args Table | CassandraStorage Linked Service Args Linked | CommonService Args Data | ConcurService For Apps Linked Service Args Linked | CosmosService Args Db | CosmosLinked Service Args Db | CouchbaseMongo Db Api Linked Service Args Linked | CustomService Args Data | DataworldSource Linked Service Args Linked | Db2LinkedService Args Service | DrillArgs Linked | DynamicsService Args AXLinked | DynamicsService Args Crm | DynamicsLinked Service Args Linked | EloquaService Args Linked | FileService Args Server | FtpLinked Service Args Server | GoogleLinked Service Args Ad | GoogleWords Linked Service Args Big | GoogleQuery Linked Service Args Cloud | GoogleStorage Linked Service Args Sheets | GreenplumLinked Service Args Linked | HBaseService Args Linked | HDInsightService Args Linked | HDInsightService Args On | HdfsDemand Linked Service Args Linked | HiveService Args Linked | HttpService Args Linked | HubspotService Args Linked | ImpalaService Args Linked | InformixService Args Linked | JiraService Args Linked | MagentoService Args Linked | MariaService Args DBLinked | MarketoService Args Linked | MicrosoftService Args Access | MongoLinked Service Args Db | MongoAtlas Linked Service Args Db | MongoLinked Service Args Db | MyV2Linked Service Args Sql | NetezzaLinked Service Args Linked | ODataService Args Linked | OdbcService Args Linked | Office365LinkedService Args Service | OracleArgs Cloud | OracleStorage Linked Service Args Linked | OracleService Args Service | PaypalCloud Linked Service Args Linked | PhoenixService Args Linked | PostgreService Args Sql | PrestoLinked Service Args Linked | QuickService Args Books | QuickbaseLinked Service Args Linked | ResponsysService Args Linked | RestService Args Service | SalesforceLinked Service Args Linked | SalesforceService Args Marketing | SalesforceCloud Linked Service Args Service | SapCloud Linked Service Args BWLinked | SapService Args Cloud | SapFor Customer Linked Service Args Ecc | SapLinked Service Args Hana | SapLinked Service Args Odp | SapLinked Service Args Open | SapHub Linked Service Args Table | ServiceLinked Service Args Now | SftpLinked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SparkService Args Linked | SqlService Args Server | SquareLinked Service Args Linked | SybaseService Args Linked | TeamService Args Desk | TeradataLinked Service Args Linked | TwilioService Args Linked | VerticaService Args Linked | WebService Args Linked | XeroService Args Linked | ZendeskService Args Linked | ZohoService Args Linked Service Args Properties of linked service.
- resource_
group_ strname The resource group name.
- linked_
service_ strname The linked service name.
- factory
Name 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.
- resource
Group StringName The resource group name.
- linked
Service StringName The linked service name.
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkedService resource produces the following output properties:
Supporting Types
Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.
AmazonMWSLinkedService
- Access
Key objectId The access key id used to access data.
- Endpoint object
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID 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)
- Seller
ID object The Amazon seller ID.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Mws
Auth Pulumi.Token Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Amazon MWS authentication token.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Secret
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The secret key used to access data.
- Use
Encrypted objectEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification 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 objectVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Access
Key interface{}Id The access key id used to access data.
- Endpoint interface{}
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID 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)
- Seller
ID interface{} The Amazon seller ID.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential interface{} The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Mws
Auth AzureToken Key | SecureVault Secret Reference String The Amazon MWS authentication token.
- Parameters
map[string]Parameter
Specification Parameters for linked service.
- Secret
Key AzureKey | SecureVault Secret Reference String The secret key used to access data.
- Use
Encrypted interface{}Endpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification 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 interface{}Verification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key ObjectId The access key id used to access data.
- endpoint Object
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID 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)
- seller
ID Object The Amazon seller ID.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential Object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- mws
Auth AzureToken Key | SecureVault Secret Reference String The Amazon MWS authentication token.
- parameters
Map<String,Parameter
Specification> Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference String The secret key used to access data.
- use
Encrypted ObjectEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification 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 ObjectVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key anyId 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 any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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 AzureToken Key | SecureVault Secret Reference String The Amazon MWS authentication token.
- parameters
{[key: string]: Parameter
Specification} Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference String The secret key used to access data.
- use
Encrypted anyEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification 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 anyVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access_
key_ Anyid 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 IntegrationRuntime Reference 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_ Azuretoken Key | SecureVault Secret Reference String The Amazon MWS authentication token.
- parameters
Mapping[str, Parameter
Specification] Parameters for linked service.
- secret_
key AzureKey | SecureVault Secret Reference String The secret key used to access data.
- use_
encrypted_ Anyendpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification 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_ Anyverification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key AnyId 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 List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Property Map | Property MapToken The Amazon MWS authentication token.
- parameters Map<Property Map>
Parameters for linked service.
- secret
Key Property Map | Property Map The secret key used to access data.
- use
Encrypted AnyEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification 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 AnyVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
AmazonMWSLinkedServiceResponse
- Access
Key objectId The access key id used to access data.
- Endpoint object
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID 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)
- Seller
ID object The Amazon seller ID.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Mws
Auth Pulumi.Token Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Amazon MWS authentication token.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Secret
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The secret key used to access data.
- Use
Encrypted objectEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host objectVerification 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 objectVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- Access
Key interface{}Id The access key id used to access data.
- Endpoint interface{}
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- Marketplace
ID 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)
- Seller
ID interface{} The Amazon seller ID.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential interface{} The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Mws
Auth AzureToken Key | SecureVault Secret Reference Response String Response The Amazon MWS authentication token.
- Parameters
map[string]Parameter
Specification Response Parameters for linked service.
- Secret
Key AzureKey | SecureVault Secret Reference Response String Response The secret key used to access data.
- Use
Encrypted interface{}Endpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- Use
Host interface{}Verification 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 interface{}Verification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key ObjectId The access key id used to access data.
- endpoint Object
The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
- marketplace
ID 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)
- seller
ID Object The Amazon seller ID.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential Object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- mws
Auth AzureToken Key | SecureVault Secret Reference Response String Response The Amazon MWS authentication token.
- parameters
Map<String,Parameter
Specification Response> Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference Response String Response The secret key used to access data.
- use
Encrypted ObjectEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host ObjectVerification 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 ObjectVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key anyId 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 any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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 AzureToken Key | SecureVault Secret Reference Response String Response The Amazon MWS authentication token.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- secret
Key AzureKey | SecureVault Secret Reference Response String Response The secret key used to access data.
- use
Encrypted anyEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host anyVerification 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 anyVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access_
key_ Anyid 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 IntegrationRuntime Reference Response 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_ Azuretoken Key | SecureVault Secret Reference Response String Response The Amazon MWS authentication token.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for linked service.
- secret_
key AzureKey | SecureVault Secret Reference Response String Response The secret key used to access data.
- use_
encrypted_ Anyendpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use_
host_ Anyverification 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_ Anyverification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
- access
Key AnyId 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 List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Property Map | Property MapToken The Amazon MWS authentication token.
- parameters Map<Property Map>
Parameters for linked service.
- secret
Key Property Map | Property Map The secret key used to access data.
- use
Encrypted AnyEndpoints Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
- use
Host AnyVerification 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 AnyVerification Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
AmazonRdsForOracleLinkedService
- Connection
String object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Azure key vault secret reference of password in connection string.
- Connection
String interface{} The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String The Azure key vault secret reference of password in connection string.
- connection
String Object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String The Azure key vault secret reference of password in connection string.
- connection
String any The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String 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 IntegrationRuntime Reference 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, Parameter
Specification] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String The Azure key vault secret reference of password in connection string.
- connection
String Any The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- password Property Map | Property Map
The Azure key vault secret reference of password in connection string.
AmazonRdsForOracleLinkedServiceResponse
- Connection
String object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Azure key vault secret reference of password in connection string.
- Connection
String interface{} The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response The Azure key vault secret reference of password in connection string.
- connection
String Object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response The Azure key vault secret reference of password in connection string.
- connection
String any The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response 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 IntegrationRuntime Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response The Azure key vault secret reference of password in connection string.
- connection
String Any The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- password Property Map | Property Map
The Azure key vault secret reference of password in connection string.
AmazonRdsForSqlServerLinkedService
- Connection
String object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Sql always encrypted properties.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The on-premises Windows authentication password.
- User
Name object The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Sql always encrypted properties.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String The on-premises Windows authentication password.
- User
Name interface{} The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Sql always encrypted properties.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String The on-premises Windows authentication password.
- user
Name Object 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 SqlSettings Always Encrypted Properties Sql always encrypted properties.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String The on-premises Windows authentication password.
- user
Name 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_ Sqlsettings Always Encrypted Properties Sql always encrypted properties.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference 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, Parameter
Specification] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String The on-premises Windows authentication password.
- user_
name 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 Property MapSettings Sql always encrypted properties.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- password Property Map | Property Map
The on-premises Windows authentication password.
- user
Name Any The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
AmazonRdsForSqlServerLinkedServiceResponse
- Connection
String object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted Pulumi.Settings Azure Native. Data Factory. Inputs. Sql Always Encrypted Properties Response Sql always encrypted properties.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The on-premises Windows authentication password.
- User
Name object The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Connection
String interface{} The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Always
Encrypted SqlSettings Always Encrypted Properties Response Sql always encrypted properties.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response The on-premises Windows authentication password.
- User
Name interface{} The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- connection
String Object The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- always
Encrypted SqlSettings Always Encrypted Properties Response Sql always encrypted properties.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response The on-premises Windows authentication password.
- user
Name Object 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 SqlSettings Always Encrypted Properties Response Sql always encrypted properties.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response The on-premises Windows authentication password.
- user
Name 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_ Sqlsettings Always Encrypted Properties Response Sql always encrypted properties.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response The on-premises Windows authentication password.
- user_
name 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 Property MapSettings Sql always encrypted properties.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- password Property Map | Property Map
The on-premises Windows authentication password.
- user
Name 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String 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 IntegrationRuntime Reference 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, Parameter
Specification] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 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.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response 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 IntegrationRuntime Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 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
- Access
Key objectId 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Force
Path objectStyle 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url 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).
- Access
Key interface{}Id 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.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential interface{} The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Force
Path interface{}Style 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]Parameter
Specification Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference String The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url 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).
- access
Key ObjectId 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential Object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- force
Path ObjectStyle 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,Parameter
Specification> Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url 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).
- access
Key anyId 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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 anyStyle 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]: Parameter
Specification} Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String 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).
- access_
key_ Anyid 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 IntegrationRuntime Reference 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_ Anystyle 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, Parameter
Specification] Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference String 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).
- access
Key AnyId 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 AnyStyle 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.
- secret
Access Property Map | Property MapKey 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).
AmazonS3CompatibleLinkedServiceResponse
- Access
Key objectId 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Force
Path objectStyle 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url 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).
- Access
Key interface{}Id 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.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential interface{} The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- Force
Path interface{}Style 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]Parameter
Specification Response Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference Response String Response The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- Service
Url 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).
- access
Key ObjectId 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential Object The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- force
Path ObjectStyle 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,Parameter
Specification Response> Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response The secret access key of the Amazon S3 Compatible Identity and Access Management (IAM) user.
- service
Url 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).
- access
Key anyId 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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 anyStyle 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]: Parameter
Specification Response} Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response 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).
- access_
key_ Anyid 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 IntegrationRuntime Reference Response 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_ Anystyle 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, Parameter
Specification Response] Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference Response String Response 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).
- access
Key AnyId 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 AnyStyle 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.
- secret
Access Property Map | Property MapKey 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).
AmazonS3LinkedService
- Access
Key objectId 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.
- Authentication
Type object The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url 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).
- Session
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The session token for the S3 temporary security credential.
- Access
Key interface{}Id 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.
- Authentication
Type interface{} The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference String The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url 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).
- Session
Token AzureKey | SecureVault Secret Reference String The session token for the S3 temporary security credential.
- access
Key ObjectId 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.
- authentication
Type Object The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url 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).
- session
Token AzureKey | SecureVault Secret Reference String The session token for the S3 temporary security credential.
- access
Key anyId 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.
- authentication
Type any The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference String 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 AzureKey | SecureVault Secret Reference String The session token for the S3 temporary security credential.
- access_
key_ Anyid 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 IntegrationRuntime Reference 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, Parameter
Specification] Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference String 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 AzureKey | SecureVault Secret Reference String The session token for the S3 temporary security credential.
- access
Key AnyId 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.
- authentication
Type Any The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- secret
Access Property Map | Property MapKey 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 Property Map | Property Map The session token for the S3 temporary security credential.
AmazonS3LinkedServiceResponse
- Access
Key objectId 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.
- Authentication
Type object The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Secret
Access Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url 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).
- Session
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The session token for the S3 temporary security credential.
- Access
Key interface{}Id 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.
- Authentication
Type interface{} The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Secret
Access AzureKey Key | SecureVault Secret Reference Response String Response The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- Service
Url 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).
- Session
Token AzureKey | SecureVault Secret Reference Response String Response The session token for the S3 temporary security credential.
- access
Key ObjectId 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.
- authentication
Type Object The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
- service
Url 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).
- session
Token AzureKey | SecureVault Secret Reference Response String Response The session token for the S3 temporary security credential.
- access
Key anyId 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.
- authentication
Type any The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- secret
Access AzureKey Key | SecureVault Secret Reference Response String Response 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 AzureKey | SecureVault Secret Reference Response String Response The session token for the S3 temporary security credential.
- access_
key_ Anyid 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 IntegrationRuntime Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- secret_
access_ Azurekey Key | SecureVault Secret Reference Response String Response 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 AzureKey | SecureVault Secret Reference Response String Response The session token for the S3 temporary security credential.
- access
Key AnyId 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.
- authentication
Type Any The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string).
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
- secret
Access Property Map | Property MapKey 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 Property Map | Property Map The session token for the S3 temporary security credential.
AppFiguresLinkedService
- Client
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The client key for the AppFigures source.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The password of the AppFigures source.
- User
Name object The username of the Appfigures source.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Client
Key AzureKey | SecureVault Secret Reference String The client key for the AppFigures source.
- Password
Azure
Key | SecureVault Secret Reference String The password of the AppFigures source.
- User
Name interface{} The username of the Appfigures source.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Parameters
map[string]Parameter
Specification Parameters for linked service.
- client
Key AzureKey | SecureVault Secret Reference String The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String The password of the AppFigures source.
- user
Name Object The username of the Appfigures source.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- parameters
Map<String,Parameter
Specification> Parameters for linked service.
- client
Key AzureKey | SecureVault Secret Reference String The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String The password of the AppFigures source.
- user
Name any The username of the Appfigures source.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
Linked service description.
- parameters
{[key: string]: Parameter
Specification} Parameters for linked service.
- client_
key AzureKey | SecureVault Secret Reference String The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference String 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 IntegrationRuntime Reference The integration runtime reference.
- description str
Linked service description.
- parameters
Mapping[str, Parameter
Specification] Parameters for linked service.
- client
Key Property Map | Property Map The client key for the AppFigures source.
- password Property Map | Property Map
The password of the AppFigures source.
- user
Name Any The username of the Appfigures source.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
Linked service description.
- parameters Map<Property Map>
Parameters for linked service.
AppFiguresLinkedServiceResponse
- Client
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The client key for the AppFigures source.
- Password
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The password of the AppFigures source.
- User
Name object The username of the Appfigures source.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Client
Key AzureKey | SecureVault Secret Reference Response String Response The client key for the AppFigures source.
- Password
Azure
Key | SecureVault Secret Reference Response String Response The password of the AppFigures source.
- User
Name interface{} The username of the Appfigures source.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Parameters
map[string]Parameter
Specification Response Parameters for linked service.
- client
Key AzureKey | SecureVault Secret Reference Response String Response The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response The password of the AppFigures source.
- user
Name Object The username of the Appfigures source.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- parameters
Map<String,Parameter
Specification Response> Parameters for linked service.
- client
Key AzureKey | SecureVault Secret Reference Response String Response The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response The password of the AppFigures source.
- user
Name any The username of the Appfigures source.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- client_
key AzureKey | SecureVault Secret Reference Response String Response The client key for the AppFigures source.
- password
Azure
Key | SecureVault Secret Reference Response String Response 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 IntegrationRuntime Reference Response The integration runtime reference.
- description str
Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for linked service.
- client
Key Property Map | Property Map The client key for the AppFigures source.
- password Property Map | Property Map
The password of the AppFigures source.
- user
Name Any The username of the Appfigures source.
- annotations List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- description String
Linked service description.
- parameters Map<Property Map>
Parameters for linked service.
AsanaLinkedService
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The api token for the Asana source.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Api
Token AzureKey | SecureVault Secret Reference String The api token for the Asana source.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- api
Token AzureKey | SecureVault Secret Reference String The api token for the Asana source.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- api
Token AzureKey | SecureVault Secret Reference String The api token for the Asana source.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- api_
token AzureKey | SecureVault Secret Reference String The api token for the Asana source.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference 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, Parameter
Specification] Parameters for linked service.
- api
Token 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
AsanaLinkedServiceResponse
- Api
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The api token for the Asana source.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Api
Token AzureKey | SecureVault Secret Reference Response String Response The api token for the Asana source.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response The api token for the Asana source.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- api
Token AzureKey | SecureVault Secret Reference Response String Response The api token for the Asana source.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- api_
token AzureKey | SecureVault Secret Reference Response String Response The api token for the Asana source.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- api
Token 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.
- connect
Via Property Map The integration runtime reference.
- description String
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 Map<Property Map>
Parameters for linked service.
AzureBatchLinkedService
- Account
Name object The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri object The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference The Azure Storage linked service reference.
- Pool
Name object The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Azure Batch account access key.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Account
Name interface{} The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri interface{} The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference The Azure Storage linked service reference.
- Pool
Name interface{} The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key AzureKey | SecureVault Secret Reference String The Azure Batch account access key.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- account
Name Object The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Object The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference The Azure Storage linked service reference.
- pool
Name Object The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference String The Azure Batch account access key.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> 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 LinkedName Service Reference The Azure Storage linked service reference.
- pool
Name any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference String The Azure Batch account access key.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification} 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_ Linkedname Service Reference The Azure Storage linked service reference.
- pool_
name Any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access_
key AzureKey | SecureVault Secret Reference String The Azure Batch account access key.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference 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, Parameter
Specification] 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 Property MapName The Azure Storage linked service reference.
- pool
Name Any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key 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.
- connect
Via Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
AzureBatchLinkedServiceResponse
- Account
Name object The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri object The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response The Azure Storage linked service reference.
- Pool
Name object The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Azure Batch account access key.
- Annotations List<object>
List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Account
Name interface{} The Azure Batch account name. Type: string (or Expression with resultType string).
- Batch
Uri interface{} The Azure Batch URI. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response The Azure Storage linked service reference.
- Pool
Name interface{} The Azure Batch pool name. Type: string (or Expression with resultType string).
- Access
Key AzureKey | SecureVault Secret Reference Response String Response The Azure Batch account access key.
- Annotations []interface{}
List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Credential
Credential
Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- account
Name Object The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Object The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response The Azure Storage linked service reference.
- pool
Name Object The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference Response String Response The Azure Batch account access key.
- annotations List<Object>
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> 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 LinkedName Service Reference Response The Azure Storage linked service reference.
- pool
Name any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key AzureKey | SecureVault Secret Reference Response String Response The Azure Batch account access key.
- annotations any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification Response} 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_ Linkedname Service Reference Response The Azure Storage linked service reference.
- pool_
name Any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access_
key AzureKey | SecureVault Secret Reference Response String Response The Azure Batch account access key.
- annotations Sequence[Any]
List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response 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, Parameter
Specification Response] 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 Property MapName The Azure Storage linked service reference.
- pool
Name Any The Azure Batch pool name. Type: string (or Expression with resultType string).
- access
Key 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.
- connect
Via Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
AzureBlobFSLinkedService
- Account
Key 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.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Sas
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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 objectCredential Type 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 objectId 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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).
- Account
Key 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.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference The integration runtime reference.
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Sas
Token AzureKey | SecureVault Secret Reference String The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal AzureCredential Key | SecureVault Secret Reference String 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 interface{}Credential Type 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 interface{}Id 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 AzureKey Key | SecureVault Secret Reference String 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).
- account
Key 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.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference String The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference String 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 ObjectCredential Type 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 ObjectId 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 AzureKey Key | SecureVault Secret Reference String 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).
- account
Key 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.
- azure
Cloud anyType 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference String 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 AzureCredential Key | SecureVault Secret Reference String 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 anyCredential Type 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 anyId 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 AzureKey Key | SecureVault Secret Reference String 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_ Anytype 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference 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, Parameter
Specification] Parameters for linked service.
- sas_
token AzureKey | SecureVault Secret Reference String 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_ Azurecredential Key | SecureVault Secret Reference String 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_ Anycredential_ type 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_ Anyid 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_ Azurekey Key | SecureVault Secret Reference String 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 List<Any>
List of tags that can be used for describing the linked service.
- azure
Cloud AnyType 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 Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
- sas
Token Property Map | Property Map 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 Property Map | Property MapCredential 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 AnyCredential Type 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 AnyId 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 Property Map | Property MapKey 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
- Account
Key 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.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Sas
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal Pulumi.Credential Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 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 objectCredential Type 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 objectId 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 Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 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).
- Account
Key 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.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference Response The integration runtime reference.
- Credential
Credential
Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Sas
Token AzureKey | SecureVault Secret Reference Response String Response The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response 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 interface{}Credential Type 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 interface{}Id 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 AzureKey Key | SecureVault Secret Reference Response String Response 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).
- account
Key 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.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference Response String Response The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Principal AzureCredential Key | SecureVault Secret Reference Response String Response 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 ObjectCredential Type 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 ObjectId 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 AzureKey Key | SecureVault Secret Reference Response String Response 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).
- account
Key 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.
- azure
Cloud anyType 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- sas
Token AzureKey | SecureVault Secret Reference Response String Response 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 AzureCredential Key | SecureVault Secret Reference Response String Response 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 anyCredential Type 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 anyId 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 AzureKey Key | SecureVault Secret Reference Response String Response 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_ Anytype 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- sas_
token AzureKey | SecureVault Secret Reference Response String Response 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_ Azurecredential Key | SecureVault Secret Reference Response String Response 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_ Anycredential_ type 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_ Anyid 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_ Azurekey Key | SecureVault Secret Reference Response String Response 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 List<Any>
List of tags that can be used for describing the linked service.
- azure
Cloud AnyType 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 Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
- sas
Token Property Map | Property Map 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 Property Map | Property MapCredential 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 AnyCredential Type 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 AnyId 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 Property Map | Property MapKey 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
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference The Azure key vault secret reference of accountKey in connection string.
- Account
Kind 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.
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Azure Storage Authentication Type The type used for authentication. Type: string.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Connection
String object The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri object Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal objectId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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).
- Account
Key AzureKey Vault Secret Reference The Azure key vault secret reference of accountKey in connection string.
- Account
Kind 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.
- Authentication
Type string | AzureStorage Authentication Type The type used for authentication. Type: string.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference The integration runtime reference.
- Connection
String interface{} The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri interface{} Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal interface{}Id The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String 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).
- account
Key AzureKey Vault Secret Reference The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type String | AzureStorage Authentication Type The type used for authentication. Type: string.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference The integration runtime reference.
- connection
String Object The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Object Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint String Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal ObjectId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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).
- account
Key AzureKey Vault Secret Reference The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type string | AzureStorage Authentication Type The type used for authentication. Type: string.
- azure
Cloud anyType 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 IntegrationRuntime Reference 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
Credential
Reference The credential reference containing authentication information.
- description string
Linked service description.
- encrypted
Credential 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]: Parameter
Specification} Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference 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 string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal anyId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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 AzureKey Vault Secret Reference 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 | AzureStorage Authentication Type The type used for authentication. Type: string.
- azure_
cloud_ Anytype 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 IntegrationRuntime Reference 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
Credential
Reference 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, Parameter
Specification] Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference 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_ Anyid The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String 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 Property Map The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type String | "Anonymous" | "AccountKey" | "Sas Uri" | "Service Principal" | "Msi" The type used for authentication. Type: string.
- azure
Cloud AnyType 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 Property Map 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 Property Map
The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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.
- sas
Token Property Map 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 String Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal AnyId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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
- Account
Key Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response The Azure key vault secret reference of accountKey in connection string.
- Account
Kind 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.
- Authentication
Type string The type used for authentication. Type: string.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Connection
String object The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri object Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Sas
Token Pulumi.Azure Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri object SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal objectId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 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).
- Account
Key AzureKey Vault Secret Reference Response The Azure key vault secret reference of accountKey in connection string.
- Account
Kind 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.
- Authentication
Type string The type used for authentication. Type: string.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference Response The integration runtime reference.
- Connection
String interface{} The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Container
Uri interface{} Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- Credential
Credential
Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Sas
Token AzureKey Vault Secret Reference Response The Azure key vault secret reference of sasToken in sas uri.
- Sas
Uri interface{} SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- Service
Endpoint string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- Service
Principal interface{}Id The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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).
- account
Key AzureKey Vault Secret Reference Response The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type String The type used for authentication. Type: string.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference Response The integration runtime reference.
- connection
String Object The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- container
Uri Object Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string).
- credential
Credential
Reference Response The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response The Azure key vault secret reference of sasToken in sas uri.
- sas
Uri Object SAS URI of the Azure Blob Storage resource. It is mutually exclusive with connectionString, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference.
- service
Endpoint String Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal ObjectId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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).
- account
Key AzureKey Vault Secret Reference Response The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type string The type used for authentication. Type: string.
- azure
Cloud anyType 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 IntegrationRuntime Reference Response 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
Credential
Reference Response The credential reference containing authentication information.
- description string
Linked service description.
- encrypted
Credential 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]: Parameter
Specification Response} Parameters for linked service.
- sas
Token AzureKey Vault Secret Reference Response 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 string Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal anyId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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 AzureKey Vault Secret Reference Response 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_ Anytype 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 IntegrationRuntime Reference Response 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
Credential
Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- sas_
token AzureKey Vault Secret Reference Response 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_ Anyid The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response 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 Property Map The Azure key vault secret reference of accountKey in connection string.
- account
Kind 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.
- authentication
Type String The type used for authentication. Type: string.
- azure
Cloud AnyType 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 Property Map 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 Property Map
The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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.
- sas
Token Property Map 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 String Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property.
- service
Principal AnyId The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Service
Principal objectId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Parameters
map[string]Parameter
Specification Parameters for linked service.
- Service
Principal interface{}Id The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- parameters
Map<String,Parameter
Specification> Parameters for linked service.
- service
Principal ObjectId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description string
Linked service description.
- parameters
{[key: string]: Parameter
Specification} Parameters for linked service.
- service
Principal anyId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description str
Linked service description.
- parameters
Mapping[str, Parameter
Specification] Parameters for linked service.
- service_
principal_ Anyid The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String 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.
- connect
Via 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.
- service
Principal AnyId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Service
Principal objectId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 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.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Credential
Credential
Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Parameters
map[string]Parameter
Specification Response Parameters for linked service.
- Service
Principal interface{}Id The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description String
Linked service description.
- parameters
Map<String,Parameter
Specification Response> Parameters for linked service.
- service
Principal ObjectId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description string
Linked service description.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- service
Principal anyId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description str
Linked service description.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for linked service.
- service_
principal_ Anyid The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response 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.
- connect
Via 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.
- service
Principal AnyId The ID of the service principal used to authenticate against Azure Data Explorer. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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
- Account
Name 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Data
Lake objectAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Resource
Group objectName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id object Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Account
Name 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.
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Data
Lake interface{}Analytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Resource
Group interface{}Name Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id interface{} Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- account
Name 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.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- data
Lake ObjectAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- resource
Group ObjectName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Object 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 any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- data
Lake anyAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- resource
Group anyName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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).
- 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 IntegrationRuntime Reference The integration runtime reference.
- data_
lake_ Anyanalytics_ uri 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, Parameter
Specification] Parameters for linked service.
- resource_
group_ Anyname Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String 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).
- 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 List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- data
Lake AnyAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
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 Map<Property Map>
Parameters for linked service.
- resource
Group AnyName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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).
AzureDataLakeAnalyticsLinkedServiceResponse
- Account
Name 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.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Data
Lake objectAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Resource
Group objectName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id object Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- Account
Name 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.
- Connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- Data
Lake interface{}Analytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Resource
Group interface{}Name Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- Subscription
Id interface{} Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
- account
Name 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.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- data
Lake ObjectAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- resource
Group ObjectName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response The Key of the application used to authenticate against the Azure Data Lake Analytics account.
- subscription
Id Object 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 any[]
List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response The integration runtime reference.
- data
Lake anyAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- resource
Group anyName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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).
- 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 IntegrationRuntime Reference Response The integration runtime reference.
- data_
lake_ Anyanalytics_ uri 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, Parameter
Specification Response] Parameters for linked service.
- resource_
group_ Anyname Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response 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).
- 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 List<Any>
List of tags that can be used for describing the linked service.
- connect
Via Property Map The integration runtime reference.
- data
Lake AnyAnalytics Uri Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
- description String
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 Map<Property Map>
Parameters for linked service.
- resource
Group AnyName Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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).
AzureDataLakeStoreLinkedService
- Data
Lake objectStore Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name 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.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Resource
Group objectName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id 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).
- Data
Lake interface{}Store Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name 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.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference The integration runtime reference.
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Resource
Group interface{}Name Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference String The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id 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).
- data
Lake ObjectStore Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name 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.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- resource
Group ObjectName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id 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).
- data
Lake anyStore Uri 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 any[]
List of tags that can be used for describing the linked service.
- azure
Cloud anyType 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- resource
Group anyName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference String 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).
- data_
lake_ Anystore_ uri 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_ Anytype 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference 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, Parameter
Specification] Parameters for linked service.
- resource_
group_ Anyname Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference String 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).
- data
Lake AnyStore Uri 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 List<Any>
List of tags that can be used for describing the linked service.
- azure
Cloud AnyType 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 Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
- resource
Group AnyName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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).
AzureDataLakeStoreLinkedServiceResponse
- Data
Lake objectStore Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name 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.
- Azure
Cloud objectType 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 Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for linked service.
- Resource
Group objectName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal objectId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal Pulumi.Key Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id 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).
- Data
Lake interface{}Store Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- Account
Name 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.
- Azure
Cloud interface{}Type 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 IntegrationRuntime Reference Response The integration runtime reference.
- Credential
Credential
Reference Response The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Response Parameters for linked service.
- Resource
Group interface{}Name Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- Service
Principal interface{}Id The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- Service
Principal AzureKey Key | SecureVault Secret Reference Response String Response The Key of the application used to authenticate against the Azure Data Lake Store account.
- Subscription
Id 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).
- data
Lake ObjectStore Uri Data Lake Store service URI. Type: string (or Expression with resultType string).
- account
Name 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.
- azure
Cloud ObjectType 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification Response> Parameters for linked service.
- resource
Group ObjectName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal ObjectId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response The Key of the application used to authenticate against the Azure Data Lake Store account.
- subscription
Id 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).
- data
Lake anyStore Uri 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 any[]
List of tags that can be used for describing the linked service.
- azure
Cloud anyType 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification Response} Parameters for linked service.
- resource
Group anyName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal anyId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal AzureKey Key | SecureVault Secret Reference Response String Response 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).
- data_
lake_ Anystore_ uri 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_ Anytype 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 IntegrationRuntime Reference Response The integration runtime reference.
- credential
Credential
Reference Response 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, Parameter
Specification Response] Parameters for linked service.
- resource_
group_ Anyname Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service_
principal_ Anyid The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service_
principal_ Azurekey Key | SecureVault Secret Reference Response String Response 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).
- data
Lake AnyStore Uri 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 List<Any>
List of tags that can be used for describing the linked service.
- azure
Cloud AnyType 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 Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
- resource
Group AnyName Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
- service
Principal AnyId The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
- service
Principal Property Map | Property MapKey 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).
AzureDatabricksDeltaLakeLinkedService
- Domain object
.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
- Access
Token Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 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.
- Cluster
Id 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).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference The integration runtime reference.
- Credential
Pulumi.
Azure Native. Data Factory. Inputs. Credential Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for linked service.
- Workspace
Resource objectId 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).
- Access
Token AzureKey | SecureVault Secret Reference String 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.
- Cluster
Id 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).
- Connect
Via IntegrationRuntime Reference The integration runtime reference.
- Credential
Credential
Reference The credential reference containing authentication information.
- Description string
Linked service description.
- Encrypted
Credential 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]Parameter
Specification Parameters for linked service.
- Workspace
Resource interface{}Id 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).
- access
Token AzureKey | SecureVault Secret Reference String 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.
- cluster
Id 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).
- connect
Via IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description String
Linked service description.
- encrypted
Credential 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,Parameter
Specification> Parameters for linked service.
- workspace
Resource ObjectId 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 AzureKey | SecureVault Secret Reference String 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.
- 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference The credential reference containing authentication information.
- description string
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
{[key: string]: Parameter
Specification} Parameters for linked service.
- workspace
Resource anyId 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 AzureKey | SecureVault Secret Reference String 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 IntegrationRuntime Reference The integration runtime reference.
- credential
Credential
Reference 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, Parameter
Specification] Parameters for linked service.
- workspace_
resource_ Anyid 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 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.
- 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 Property Map The integration runtime reference.
- credential Property Map
The credential reference containing authentication information.
- description String
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 Map<Property Map>
Parameters for linked service.
- workspace
Resource AnyId 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).
- Access
Token