This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.66.0 published on Wednesday, Oct 9, 2024 by Pulumi
azure-native.datafactory.LinkedService
Explore with Pulumi AI
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.66.0 published on Wednesday, Oct 9, 2024 by Pulumi
Linked service resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.
Example Usage
LinkedServices_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
{
FactoryName = "exampleFactoryName",
LinkedServiceName = "exampleLinkedService",
Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
{
ConnectionString = new Dictionary<string, object?>
{
["type"] = "SecureString",
["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Type = "AzureStorage",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: &datafactory.AzureStorageLinkedServiceArgs{
ConnectionString: pulumi.Any(map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
}),
Type: pulumi.String("AzureStorage"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(AzureStorageLinkedServiceArgs.builder()
.connectionString(Map.ofEntries(
Map.entry("type", "SecureString"),
Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
))
.type("AzureStorage")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
linked_service = azure_native.datafactory.LinkedService("linkedService",
factory_name="exampleFactoryName",
linked_service_name="exampleLinkedService",
properties={
"connection_string": {
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
"type": "AzureStorage",
},
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
factoryName: "exampleFactoryName",
linkedServiceName: "exampleLinkedService",
properties: {
connectionString: {
type: "SecureString",
value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
type: "AzureStorage",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
type: AzureStorage
resourceGroupName: exampleResourceGroup
LinkedServices_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var linkedService = new AzureNative.DataFactory.LinkedService("linkedService", new()
{
FactoryName = "exampleFactoryName",
LinkedServiceName = "exampleLinkedService",
Properties = new AzureNative.DataFactory.Inputs.AzureStorageLinkedServiceArgs
{
ConnectionString = new Dictionary<string, object?>
{
["type"] = "SecureString",
["value"] = "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
Description = "Example description",
Type = "AzureStorage",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewLinkedService(ctx, "linkedService", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("exampleFactoryName"),
LinkedServiceName: pulumi.String("exampleLinkedService"),
Properties: &datafactory.AzureStorageLinkedServiceArgs{
ConnectionString: pulumi.Any(map[string]interface{}{
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
}),
Description: pulumi.String("Example description"),
Type: pulumi.String("AzureStorage"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.LinkedService;
import com.pulumi.azurenative.datafactory.LinkedServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var linkedService = new LinkedService("linkedService", LinkedServiceArgs.builder()
.factoryName("exampleFactoryName")
.linkedServiceName("exampleLinkedService")
.properties(AzureStorageLinkedServiceArgs.builder()
.connectionString(Map.ofEntries(
Map.entry("type", "SecureString"),
Map.entry("value", "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>")
))
.description("Example description")
.type("AzureStorage")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
linked_service = azure_native.datafactory.LinkedService("linkedService",
factory_name="exampleFactoryName",
linked_service_name="exampleLinkedService",
properties={
"connection_string": {
"type": "SecureString",
"value": "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
"description": "Example description",
"type": "AzureStorage",
},
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const linkedService = new azure_native.datafactory.LinkedService("linkedService", {
factoryName: "exampleFactoryName",
linkedServiceName: "exampleLinkedService",
properties: {
connectionString: {
type: "SecureString",
value: "DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>",
},
description: "Example description",
type: "AzureStorage",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
linkedService:
type: azure-native:datafactory:LinkedService
properties:
factoryName: exampleFactoryName
linkedServiceName: exampleLinkedService
properties:
connectionString:
type: SecureString
value: DefaultEndpointsProtocol=https;AccountName=examplestorageaccount;AccountKey=<storage key>
description: Example description
type: AzureStorage
resourceGroupName: exampleResourceGroup
Create LinkedService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkedService(name: string, args: LinkedServiceArgs, opts?: CustomResourceOptions);
@overload
def LinkedService(resource_name: str,
args: LinkedServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LinkedService(resource_name: str,
opts: Optional[ResourceOptions] = None,
factory_name: Optional[str] = None,
properties: Optional[Union[AmazonMWSLinkedServiceArgs, AmazonRdsForOracleLinkedServiceArgs, AmazonRdsForSqlServerLinkedServiceArgs, AmazonRedshiftLinkedServiceArgs, AmazonS3CompatibleLinkedServiceArgs, AmazonS3LinkedServiceArgs, AppFiguresLinkedServiceArgs, AsanaLinkedServiceArgs, AzureBatchLinkedServiceArgs, AzureBlobFSLinkedServiceArgs, AzureBlobStorageLinkedServiceArgs, AzureDataExplorerLinkedServiceArgs, AzureDataLakeAnalyticsLinkedServiceArgs, AzureDataLakeStoreLinkedServiceArgs, AzureDatabricksDeltaLakeLinkedServiceArgs, AzureDatabricksLinkedServiceArgs, AzureFileStorageLinkedServiceArgs, AzureFunctionLinkedServiceArgs, AzureKeyVaultLinkedServiceArgs, AzureMLLinkedServiceArgs, AzureMLServiceLinkedServiceArgs, AzureMariaDBLinkedServiceArgs, AzureMySqlLinkedServiceArgs, AzurePostgreSqlLinkedServiceArgs, AzureSearchLinkedServiceArgs, AzureSqlDWLinkedServiceArgs, AzureSqlDatabaseLinkedServiceArgs, AzureSqlMILinkedServiceArgs, AzureStorageLinkedServiceArgs, AzureSynapseArtifactsLinkedServiceArgs, AzureTableStorageLinkedServiceArgs, CassandraLinkedServiceArgs, CommonDataServiceForAppsLinkedServiceArgs, ConcurLinkedServiceArgs, CosmosDbLinkedServiceArgs, CosmosDbMongoDbApiLinkedServiceArgs, CouchbaseLinkedServiceArgs, CustomDataSourceLinkedServiceArgs, DataworldLinkedServiceArgs, Db2LinkedServiceArgs, DrillLinkedServiceArgs, DynamicsAXLinkedServiceArgs, DynamicsCrmLinkedServiceArgs, DynamicsLinkedServiceArgs, EloquaLinkedServiceArgs, FileServerLinkedServiceArgs, FtpServerLinkedServiceArgs, GoogleAdWordsLinkedServiceArgs, GoogleBigQueryLinkedServiceArgs, GoogleBigQueryV2LinkedServiceArgs, GoogleCloudStorageLinkedServiceArgs, GoogleSheetsLinkedServiceArgs, GreenplumLinkedServiceArgs, HBaseLinkedServiceArgs, HDInsightLinkedServiceArgs, HDInsightOnDemandLinkedServiceArgs, HdfsLinkedServiceArgs, HiveLinkedServiceArgs, HttpLinkedServiceArgs, HubspotLinkedServiceArgs, ImpalaLinkedServiceArgs, InformixLinkedServiceArgs, JiraLinkedServiceArgs, LakeHouseLinkedServiceArgs, MagentoLinkedServiceArgs, MariaDBLinkedServiceArgs, MarketoLinkedServiceArgs, MicrosoftAccessLinkedServiceArgs, MongoDbAtlasLinkedServiceArgs, MongoDbLinkedServiceArgs, MongoDbV2LinkedServiceArgs, MySqlLinkedServiceArgs, NetezzaLinkedServiceArgs, ODataLinkedServiceArgs, OdbcLinkedServiceArgs, Office365LinkedServiceArgs, OracleCloudStorageLinkedServiceArgs, OracleLinkedServiceArgs, OracleServiceCloudLinkedServiceArgs, PaypalLinkedServiceArgs, PhoenixLinkedServiceArgs, PostgreSqlLinkedServiceArgs, PostgreSqlV2LinkedServiceArgs, PrestoLinkedServiceArgs, QuickBooksLinkedServiceArgs, QuickbaseLinkedServiceArgs, ResponsysLinkedServiceArgs, RestServiceLinkedServiceArgs, SalesforceLinkedServiceArgs, SalesforceMarketingCloudLinkedServiceArgs, SalesforceServiceCloudLinkedServiceArgs, SalesforceServiceCloudV2LinkedServiceArgs, SalesforceV2LinkedServiceArgs, SapBWLinkedServiceArgs, SapCloudForCustomerLinkedServiceArgs, SapEccLinkedServiceArgs, SapHanaLinkedServiceArgs, SapOdpLinkedServiceArgs, SapOpenHubLinkedServiceArgs, SapTableLinkedServiceArgs, ServiceNowLinkedServiceArgs, ServiceNowV2LinkedServiceArgs, SftpServerLinkedServiceArgs, SharePointOnlineListLinkedServiceArgs, ShopifyLinkedServiceArgs, SmartsheetLinkedServiceArgs, SnowflakeLinkedServiceArgs, SnowflakeV2LinkedServiceArgs, SparkLinkedServiceArgs, SqlServerLinkedServiceArgs, SquareLinkedServiceArgs, SybaseLinkedServiceArgs, TeamDeskLinkedServiceArgs, TeradataLinkedServiceArgs, TwilioLinkedServiceArgs, VerticaLinkedServiceArgs, WarehouseLinkedServiceArgs, WebLinkedServiceArgs, XeroLinkedServiceArgs, ZendeskLinkedServiceArgs, ZohoLinkedServiceArgs]] = None,
resource_group_name: Optional[str] = None,
linked_service_name: Optional[str] = None)
func NewLinkedService(ctx *Context, name string, args LinkedServiceArgs, opts ...ResourceOption) (*LinkedService, error)
public LinkedService(string name, LinkedServiceArgs args, CustomResourceOptions? opts = null)
public LinkedService(String name, LinkedServiceArgs args)
public LinkedService(String name, LinkedServiceArgs args, CustomResourceOptions options)
type: azure-native:datafactory:LinkedService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkedServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var linkedServiceResource = new AzureNative.DataFactory.LinkedService("linkedServiceResource", new()
{
FactoryName = "string",
Properties = new AzureNative.DataFactory.Inputs.AmazonMWSLinkedServiceArgs
{
Endpoint = "any",
Type = "AmazonMWS",
SellerID = "any",
AccessKeyId = "any",
MarketplaceID = "any",
Parameters =
{
{ "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "string",
DefaultValue = "any",
} },
},
EncryptedCredential = "string",
MwsAuthToken = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
{
SecretName = "any",
Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Type = "AzureKeyVaultSecret",
SecretVersion = "any",
},
Description = "string",
SecretKey = new AzureNative.DataFactory.Inputs.AzureKeyVaultSecretReferenceArgs
{
SecretName = "any",
Store = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Type = "AzureKeyVaultSecret",
SecretVersion = "any",
},
ConnectVia = new AzureNative.DataFactory.Inputs.IntegrationRuntimeReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Annotations = new[]
{
"any",
},
UseEncryptedEndpoints = "any",
UseHostVerification = "any",
UsePeerVerification = "any",
Version = "string",
},
ResourceGroupName = "string",
LinkedServiceName = "string",
});
example, err := datafactory.NewLinkedService(ctx, "linkedServiceResource", &datafactory.LinkedServiceArgs{
FactoryName: pulumi.String("string"),
Properties: &datafactory.AmazonMWSLinkedServiceArgs{
Endpoint: pulumi.Any("any"),
Type: pulumi.String("AmazonMWS"),
SellerID: pulumi.Any("any"),
AccessKeyId: pulumi.Any("any"),
MarketplaceID: pulumi.Any("any"),
Parameters: datafactory.ParameterSpecificationMap{
"string": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String("string"),
DefaultValue: pulumi.Any("any"),
},
},
EncryptedCredential: pulumi.String("string"),
MwsAuthToken: datafactory.AzureKeyVaultSecretReference{
SecretName: "any",
Store: datafactory.LinkedServiceReference{
ReferenceName: "string",
Type: "string",
Parameters: map[string]interface{}{
"string": "any",
},
},
Type: "AzureKeyVaultSecret",
SecretVersion: "any",
},
Description: pulumi.String("string"),
SecretKey: datafactory.AzureKeyVaultSecretReference{
SecretName: "any",
Store: datafactory.LinkedServiceReference{
ReferenceName: "string",
Type: "string",
Parameters: map[string]interface{}{
"string": "any",
},
},
Type: "AzureKeyVaultSecret",
SecretVersion: "any",
},
ConnectVia: &datafactory.IntegrationRuntimeReferenceArgs{
ReferenceName: pulumi.String("string"),
Type: pulumi.String("string"),
Parameters: pulumi.Map{
"string": pulumi.Any("any"),
},
},
Annotations: pulumi.Array{
pulumi.Any("any"),
},
UseEncryptedEndpoints: pulumi.Any("any"),
UseHostVerification: pulumi.Any("any"),
UsePeerVerification: pulumi.Any("any"),
Version: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
LinkedServiceName: pulumi.String("string"),
})
var linkedServiceResource = new LinkedService("linkedServiceResource", LinkedServiceArgs.builder()
.factoryName("string")
.properties(AmazonMWSLinkedServiceArgs.builder()
.endpoint("any")
.type("AmazonMWS")
.sellerID("any")
.accessKeyId("any")
.marketplaceID("any")
.parameters(Map.of("string", Map.ofEntries(
Map.entry("type", "string"),
Map.entry("defaultValue", "any")
)))
.encryptedCredential("string")
.mwsAuthToken(AzureKeyVaultSecretReferenceArgs.builder()
.secretName("any")
.store(LinkedServiceReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.type("AzureKeyVaultSecret")
.secretVersion("any")
.build())
.description("string")
.secretKey(AzureKeyVaultSecretReferenceArgs.builder()
.secretName("any")
.store(LinkedServiceReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.type("AzureKeyVaultSecret")
.secretVersion("any")
.build())
.connectVia(IntegrationRuntimeReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.annotations("any")
.useEncryptedEndpoints("any")
.useHostVerification("any")
.usePeerVerification("any")
.version("string")
.build())
.resourceGroupName("string")
.linkedServiceName("string")
.build());
linked_service_resource = azure_native.datafactory.LinkedService("linkedServiceResource",
factory_name="string",
properties={
"endpoint": "any",
"type": "AmazonMWS",
"sellerID": "any",
"accessKeyId": "any",
"marketplaceID": "any",
"parameters": {
"string": {
"type": "string",
"defaultValue": "any",
},
},
"encryptedCredential": "string",
"mwsAuthToken": {
"secretName": "any",
"store": {
"referenceName": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secretVersion": "any",
},
"description": "string",
"secretKey": {
"secretName": "any",
"store": {
"referenceName": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"type": "AzureKeyVaultSecret",
"secretVersion": "any",
},
"connectVia": {
"referenceName": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"annotations": ["any"],
"useEncryptedEndpoints": "any",
"useHostVerification": "any",
"usePeerVerification": "any",
"version": "string",
},
resource_group_name="string",
linked_service_name="string")
const linkedServiceResource = new azure_native.datafactory.LinkedService("linkedServiceResource", {
factoryName: "string",
properties: {
endpoint: "any",
type: "AmazonMWS",
sellerID: "any",
accessKeyId: "any",
marketplaceID: "any",
parameters: {
string: {
type: "string",
defaultValue: "any",
},
},
encryptedCredential: "string",
mwsAuthToken: {
secretName: "any",
store: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AzureKeyVaultSecret",
secretVersion: "any",
},
description: "string",
secretKey: {
secretName: "any",
store: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AzureKeyVaultSecret",
secretVersion: "any",
},
connectVia: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
annotations: ["any"],
useEncryptedEndpoints: "any",
useHostVerification: "any",
usePeerVerification: "any",
version: "string",
},
resourceGroupName: "string",
linkedServiceName: "string",
});
type: azure-native:datafactory:LinkedService
properties:
factoryName: string
linkedServiceName: string
properties:
accessKeyId: any
annotations:
- any
connectVia:
parameters:
string: any
referenceName: string
type: string
description: string
encryptedCredential: string
endpoint: any
marketplaceID: any
mwsAuthToken:
secretName: any
secretVersion: any
store:
parameters:
string: any
referenceName: string
type: string
type: AzureKeyVaultSecret
parameters:
string:
defaultValue: any
type: string
secretKey:
secretName: any
secretVersion: any
store:
parameters:
string: any
referenceName: string
type: string
type: AzureKeyVaultSecret
sellerID: any
type: AmazonMWS
useEncryptedEndpoints: any
useHostVerification: any
usePeerVerification: any
version: string
resourceGroupName: string
LinkedService Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
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 Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Linked Service Azure | Pulumi.Native. Data Factory. Inputs. App Figures Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Asana Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Batch Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Analytics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Function Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure MLService Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Database Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MILinked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Synapse Artifacts Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Concur Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Custom Data Source Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dataworld Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Db2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Drill Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Linked Service Azure | Pulumi.Native. Data Factory. Inputs. File Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Google Sheets Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HBase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HDInsight Linked Service Azure | Pulumi.Native. Data Factory. Inputs. HDInsight On Demand Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hive Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Http Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Impala Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Informix Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Jira Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Lake House Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Magento Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Maria DBLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Marketo Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. My Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Netezza Linked Service Azure | Pulumi.Native. Data Factory. Inputs. OData Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Odbc Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Office365Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Paypal Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Presto Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Quickbase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Responsys Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Rest Service Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Salesforce V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap BWLinked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Service Now Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Service Now V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sftp Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Shopify Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Smartsheet Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Snowflake V2Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Spark Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Square Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Sybase Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Team Desk Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Teradata Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Twilio Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Vertica Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Warehouse Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Web Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Xero Linked Service Azure | Pulumi.Native. Data Factory. Inputs. Zendesk Linked Service Azure Native. Data Factory. Inputs. Zoho Linked Service - 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 Big | GoogleQuery V2Linked 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 | LakeService Args House | MagentoLinked Service 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 | PostgreLinked Service Args Sql | PrestoV2Linked 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 | SalesforceCloud Linked Service Args Service | SalesforceCloud V2Linked Service Args V2Linked | SapService 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 | ServiceLinked Service Args Now | SftpV2Linked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SnowflakeService Args V2Linked | 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 | WarehouseService 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 Rds | AmazonFor Oracle Linked Service Rds | AmazonFor Sql Server Linked Service Redshift | AmazonLinked Service S3Compatible | AmazonLinked Service S3Linked | AppService Figures | AsanaLinked Service Linked | AzureService Batch | AzureLinked Service Blob | AzureFSLinked Service Blob | AzureStorage Linked Service Data | AzureExplorer Linked Service Data | AzureLake Analytics Linked Service Data | AzureLake Store Linked Service Databricks | AzureDelta Lake Linked Service Databricks | AzureLinked Service File | AzureStorage Linked Service Function | AzureLinked Service Key | AzureVault Linked Service MLLinked | AzureService MLService | AzureLinked Service Maria | AzureDBLinked Service My | AzureSql Linked Service Postgre | AzureSql Linked Service Search | AzureLinked Service Sql | AzureDWLinked Service Sql | AzureDatabase Linked Service Sql | AzureMILinked Service Storage | AzureLinked Service Synapse | AzureArtifacts Linked Service Table | CassandraStorage Linked Service Linked | CommonService Data | ConcurService For Apps Linked Service Linked | CosmosService Db | CosmosLinked Service Db | CouchbaseMongo Db Api Linked Service Linked | CustomService Data | DataworldSource Linked Service Linked | Db2LinkedService Service | DrillLinked | DynamicsService AXLinked | DynamicsService Crm | DynamicsLinked Service Linked | EloquaService Linked | FileService Server | FtpLinked Service Server | GoogleLinked Service Ad | GoogleWords Linked Service Big | GoogleQuery Linked Service Big | GoogleQuery V2Linked Service Cloud | GoogleStorage Linked Service Sheets | GreenplumLinked Service Linked | HBaseService Linked | HDInsightService Linked | HDInsightService On | HdfsDemand Linked Service Linked | HiveService Linked | HttpService Linked | HubspotService Linked | ImpalaService Linked | InformixService Linked | JiraService Linked | LakeService House | MagentoLinked Service Linked | MariaService DBLinked | MarketoService Linked | MicrosoftService Access | MongoLinked Service Db | MongoAtlas Linked Service Db | MongoLinked Service Db | MyV2Linked Service Sql | NetezzaLinked Service Linked | ODataService Linked | OdbcService Linked | Office365LinkedService Service | OracleCloud | OracleStorage Linked Service Linked | OracleService Service | PaypalCloud Linked Service Linked | PhoenixService Linked | PostgreService Sql | PostgreLinked Service Sql | PrestoV2Linked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SalesforceCloud Linked Service Service | SalesforceCloud V2Linked Service V2Linked | SapService BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | ServiceLinked Service Now | SftpV2Linked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SnowflakeService V2Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService Linked | WarehouseService Linked | WebService Linked | XeroService Linked | ZendeskService Linked | ZohoService Linked Service - 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 Rds | AmazonFor Oracle Linked Service Rds | AmazonFor Sql Server Linked Service Redshift | AmazonLinked Service S3Compatible | AmazonLinked Service S3Linked | AppService Figures | AsanaLinked Service Linked | AzureService Batch | AzureLinked Service Blob | AzureFSLinked Service Blob | AzureStorage Linked Service Data | AzureExplorer Linked Service Data | AzureLake Analytics Linked Service Data | AzureLake Store Linked Service Databricks | AzureDelta Lake Linked Service Databricks | AzureLinked Service File | AzureStorage Linked Service Function | AzureLinked Service Key | AzureVault Linked Service MLLinked | AzureService MLService | AzureLinked Service Maria | AzureDBLinked Service My | AzureSql Linked Service Postgre | AzureSql Linked Service Search | AzureLinked Service Sql | AzureDWLinked Service Sql | AzureDatabase Linked Service Sql | AzureMILinked Service Storage | AzureLinked Service Synapse | AzureArtifacts Linked Service Table | CassandraStorage Linked Service Linked | CommonService Data | ConcurService For Apps Linked Service Linked | CosmosService Db | CosmosLinked Service Db | CouchbaseMongo Db Api Linked Service Linked | CustomService Data | DataworldSource Linked Service Linked | Db2LinkedService Service | DrillLinked | DynamicsService AXLinked | DynamicsService Crm | DynamicsLinked Service Linked | EloquaService Linked | FileService Server | FtpLinked Service Server | GoogleLinked Service Ad | GoogleWords Linked Service Big | GoogleQuery Linked Service Big | GoogleQuery V2Linked Service Cloud | GoogleStorage Linked Service Sheets | GreenplumLinked Service Linked | HBaseService Linked | HDInsightService Linked | HDInsightService On | HdfsDemand Linked Service Linked | HiveService Linked | HttpService Linked | HubspotService Linked | ImpalaService Linked | InformixService Linked | JiraService Linked | LakeService House | MagentoLinked Service Linked | MariaService DBLinked | MarketoService Linked | MicrosoftService Access | MongoLinked Service Db | MongoAtlas Linked Service Db | MongoLinked Service Db | MyV2Linked Service Sql | NetezzaLinked Service Linked | ODataService Linked | OdbcService Linked | Office365LinkedService Service | OracleCloud | OracleStorage Linked Service Linked | OracleService Service | PaypalCloud Linked Service Linked | PhoenixService Linked | PostgreService Sql | PostgreLinked Service Sql | PrestoV2Linked Service Linked | QuickService Books | QuickbaseLinked Service Linked | ResponsysService Linked | RestService Service | SalesforceLinked Service Linked | SalesforceService Marketing | SalesforceCloud Linked Service Service | SalesforceCloud Linked Service Service | SalesforceCloud V2Linked Service V2Linked | SapService BWLinked | SapService Cloud | SapFor Customer Linked Service Ecc | SapLinked Service Hana | SapLinked Service Odp | SapLinked Service Open | SapHub Linked Service Table | ServiceLinked Service Now | ServiceLinked Service Now | SftpV2Linked Service Server | ShareLinked Service Point | ShopifyOnline List Linked Service Linked | SmartsheetService Linked | SnowflakeService Linked | SnowflakeService V2Linked | SparkService Linked | SqlService Server | SquareLinked Service Linked | SybaseService Linked | TeamService Desk | TeradataLinked Service Linked | TwilioService Linked | VerticaService Linked | WarehouseService Linked | WebService Linked | XeroService Linked | ZendeskService Linked | ZohoService Linked Service - 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 Big | GoogleQuery V2Linked 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 | LakeService Args House | MagentoLinked Service 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 | PostgreLinked Service Args Sql | PrestoV2Linked 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 | SalesforceCloud Linked Service Args Service | SalesforceCloud V2Linked Service Args V2Linked | SapService 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 | ServiceLinked Service Args Now | SftpV2Linked Service Args Server | ShareLinked Service Args Point | ShopifyOnline List Linked Service Args Linked | SmartsheetService Args Linked | SnowflakeService Args Linked | SnowflakeService Args V2Linked | 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 | WarehouseService 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 | 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
AmazonMWSLinkedService, AmazonMWSLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
AmazonMWSLinkedServiceResponse, AmazonMWSLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
AmazonRdsForOracleLinkedService, AmazonRdsForOracleLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The Azure key vault secret reference of password in connection string.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
AmazonRdsForOracleLinkedServiceResponse, AmazonRdsForOracleLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, 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.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The Azure key vault secret reference of password in connection string.
- version String
- Version of the linked service.
AmazonRdsForSqlAuthenticationType, AmazonRdsForSqlAuthenticationTypeArgs
- SQL
- SQL
- Windows
- Windows
- Amazon
Rds For Sql Authentication Type SQL - SQL
- Amazon
Rds For Sql Authentication Type Windows - Windows
- SQL
- SQL
- Windows
- Windows
- SQL
- SQL
- Windows
- Windows
- SQL
- SQL
- WINDOWS
- Windows
- "SQL"
- SQL
- "Windows"
- Windows
AmazonRdsForSqlServerLinkedService, AmazonRdsForSqlServerLinkedServiceArgs
- 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.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | Pulumi.Azure Native. Data Factory. Amazon Rds For Sql Authentication Type - The type used for authentication. Type: string.
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
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.
- Pooling object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- Always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt interface{}
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- Pooling interface{}
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server interface{}
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- 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.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling Object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- always
Encrypted SqlSettings Always Encrypted Properties - Sql always encrypted properties.
- annotations any[]
- List of tags that can be used for describing the linked service.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypt any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- 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.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str | AmazonRds For Sql Authentication Type - The type used for authentication. Type: string.
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover_
partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host_
name_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference String - The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String | "SQL" | "Windows" - The type used for authentication. Type: string.
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRdsForSqlServerLinkedServiceResponse, AmazonRdsForSqlServerLinkedServiceResponseArgs
- 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.
- Application
Intent object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Command
Timeout object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry objectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry objectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- Connection
String object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name objectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance objectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool objectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool objectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet objectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active objectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
Dictionary<string, Pulumi.
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.
- Pooling object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server objectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- 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.
- Application
Intent interface{} - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- Authentication
Type string - The type used for authentication. Type: string.
- Command
Timeout interface{} - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Count - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- Connect
Retry interface{}Interval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- Connect
Timeout interface{} - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- Connection
String interface{} - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- Database interface{}
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- Description string
- Linked service description.
- Encrypt interface{}
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- Encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Failover
Partner interface{} - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- Host
Name interface{}In Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- Integrated
Security interface{} - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Load
Balance interface{}Timeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- Max
Pool interface{}Size - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Min
Pool interface{}Size - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- Multi
Subnet interface{}Failover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Multiple
Active interface{}Result Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Packet
Size interface{} - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- Pooling interface{}
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- Server interface{}
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- Trust
Server interface{}Certificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- User
Name interface{} - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- Version string
- Version of the linked service.
- 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.
- application
Intent Object - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- command
Timeout Object - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry ObjectInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Object - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String Object - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Object
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Object
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Object - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name ObjectIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Object - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance ObjectTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool ObjectSize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool ObjectSize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet ObjectFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active ObjectResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Object - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling Object
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Object
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server ObjectCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Object - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
- 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.
- application
Intent any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type string - The type used for authentication. Type: string.
- command
Timeout any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry anyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry anyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- connection
String any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description string
- Linked service description.
- encrypt any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name anyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance anyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool anySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool anySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet anyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active anyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server anyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version string
- Version of the linked service.
- 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.
- application_
intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication_
type str - The type used for authentication. Type: string.
- command_
timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anycount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect_
retry_ Anyinterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect_
timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- connection_
string Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description str
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover_
partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host_
name_ Anyin_ certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated_
security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load_
balance_ Anytimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max_
pool_ Anysize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min_
pool_ Anysize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi_
subnet_ Anyfailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple_
active_ Anyresult_ sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet_
size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- password
Azure
Key | SecureVault Secret Reference Response String Response - The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust_
server_ Anycertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user_
name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version str
- Version of the linked service.
- always
Encrypted Property MapSettings - Sql always encrypted properties.
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- application
Intent Any - The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string).
- authentication
Type String - The type used for authentication. Type: string.
- command
Timeout Any - The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Retry AnyCount - The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer).
- connect
Retry AnyInterval - The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer).
- connect
Timeout Any - The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer).
- connect
Via Property Map - The integration runtime reference.
- connection
String Any - The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
- database Any
- The name of the database, used by recommended version. Type: string (or Expression with resultType string).
- description String
- Linked service description.
- encrypt Any
- Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string).
- encrypted
Credential String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- failover
Partner Any - The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string).
- host
Name AnyIn Certificate - The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string).
- integrated
Security Any - Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean).
- load
Balance AnyTimeout - The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer).
- max
Pool AnySize - The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- min
Pool AnySize - The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer).
- multi
Subnet AnyFailover - If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- multiple
Active AnyResult Sets - When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- packet
Size Any - The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer).
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The on-premises Windows authentication password.
- pooling Any
- Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- server Any
- The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string).
- trust
Server AnyCertificate - Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean).
- user
Name Any - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRedshiftLinkedService, AmazonRedshiftLinkedServiceArgs
- Database object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference - The integration runtime reference.
- 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.
- 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).
- Version string
- Version of the linked service.
- Database interface{}
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server interface{}
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference - The integration runtime reference.
- 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.
- 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).
- Version string
- Version of the linked service.
- database Object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- 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.
- 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).
- version String
- Version of the linked service.
- database any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference - The integration runtime reference.
- 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.
- 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).
- version string
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, 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).
- version str
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonRedshiftLinkedServiceResponse, AmazonRedshiftLinkedServiceResponseArgs
- Database object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- Connect
Via Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Reference Response - The integration runtime reference.
- 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.
- 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).
- Version string
- Version of the linked service.
- Database interface{}
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- Server interface{}
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- Connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- 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.
- 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).
- Version string
- Version of the linked service.
- database Object
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Object
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- 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.
- 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).
- version String
- Version of the linked service.
- database any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the linked service.
- connect
Via IntegrationRuntime Reference Response - The integration runtime reference.
- 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.
- 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).
- version string
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- connect_
via IntegrationRuntime Reference Response - The integration runtime reference.
- description str
- Linked service description.
- encrypted_
credential str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, 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).
- version str
- Version of the linked service.
- database Any
- The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
- server Any
- The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the linked service.
- connect
Via Property Map - The integration runtime reference.
- 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.
- parameters Map<Property Map>
- Parameters for linked service.
- password Property Map | Property Map
- The password of the Amazon Redshift source.
- port Any
- The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
- username Any
- The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
- version String
- Version of the linked service.
AmazonS3CompatibleLinkedService, AmazonS3CompatibleLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
AmazonS3CompatibleLinkedServiceResponse, AmazonS3CompatibleLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
AmazonS3LinkedService, AmazonS3LinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
- version String
- Version of the linked service.
AmazonS3LinkedServiceResponse, AmazonS3LinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version String
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version string
- Version of the linked service.
- 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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.
- version str
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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.
- version String
- Version of the linked service.
AppFiguresLinkedService, AppFiguresLinkedServiceArgs
- 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. 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.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the 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. 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.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the 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. 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.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the 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. 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.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the 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. 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.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the 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. 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.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AppFiguresLinkedServiceResponse, AppFiguresLinkedServiceResponseArgs
- 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. 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.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the 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. 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.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the 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. 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.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the 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. 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.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the 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. 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.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the 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. 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.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AsanaLinkedService, AsanaLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AsanaLinkedServiceResponse, AsanaLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBatchLinkedService, AzureBatchLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for linked service.
- Version string
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification - Parameters for linked service.
- Version string
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification> - Parameters for linked service.
- version String
- Version of the linked service.
- account
Name any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification} - Parameters for linked service.
- version string
- Version of the linked service.
- account_
name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch_
uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked_
service_ 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification] - Parameters for linked service.
- version str
- Version of the linked service.
- account
Name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBatchLinkedServiceResponse, AzureBatchLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for linked service.
- Version string
- Version of the 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- Parameters
map[string]Parameter
Specification Response - Parameters for linked service.
- Version string
- Version of the 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Map<String,Parameter
Specification Response> - Parameters for linked service.
- version String
- Version of the linked service.
- account
Name any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for linked service.
- version string
- Version of the linked service.
- account_
name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch_
uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked_
service_ 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for linked service.
- version str
- Version of the linked service.
- account
Name Any - The Azure Batch account name. Type: string (or Expression with resultType string).
- batch
Uri Any - The Azure Batch URI. Type: string (or Expression with resultType string).
- linked
Service 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- version String
- Version of the linked service.
AzureBlobFSLinkedService, AzureBlobFSLinkedServiceArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
- account
Key any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version string
- Version of the linked service.
- account_
key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version str
- Version of the linked service.
- account
Key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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).
- version String
- Version of the linked service.
AzureBlobFSLinkedServiceResponse, AzureBlobFSLinkedServiceResponseArgs
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- Version string
- Version of the linked service.
- 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version String
- Version of the linked service.
- account
Key any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations 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 string - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version string
- Version of the linked service.
- account_
key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- azure_
cloud_ 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 str - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: 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).
- version str
- Version of the linked service.
- account
Key Any - Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string).
- annotations 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 String - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
- parameters Map<Property Map>
- Parameters for linked service.
- 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).
- version String
- Version of the linked service.
AzureBlobStorageLinkedService, AzureBlobStorageLinkedServiceArgs
- 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 object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- 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 object - 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).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind interface{} - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- 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 interface{} - 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).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- 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 Object - 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).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account
Kind any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations 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.
- 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 any - 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).
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference - The Azure key vault secret reference of accountKey in connection string.
- account_
kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str | 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.
- 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 Any - 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).
- version str
- Version of the linked service.
- account
Key Property Map - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations 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.
- 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 Any - 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).
- version String
- Version of the linked service.
AzureBlobStorageLinkedServiceResponse, AzureBlobStorageLinkedServiceResponseArgs
- 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 object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the linked service.
- 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.
- 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 object - 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).
- Version string
- Version of the linked service.
- Account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- Account
Kind interface{} - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the linked service.
- 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.
- 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 interface{} - 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).
- Version string
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Object - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the linked service.
- 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.
- 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 Object - 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).
- version String
- Version of the linked service.
- account
Key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account
Kind any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations 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.
- 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 any - 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).
- version string
- Version of the linked service.
- account_
key AzureKey Vault Secret Reference Response - The Azure key vault secret reference of accountKey in connection string.
- account_
kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the linked service.
- authentication_
type str - The type used for authentication. Type: string.
- azure_
cloud_ 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.
- 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 Any - 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).
- version str
- Version of the linked service.
- account
Key Property Map - The Azure key vault secret reference of accountKey in connection string.
- account
Kind Any - Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string).
- annotations 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.